-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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: Jose C Quintas Jr <[email protected]> Co-authored-by: Lukas Tyla <[email protected]> Co-authored-by: Flavien DELANGLE <[email protected]> Co-authored-by: Andrew Cherniavskii <[email protected]>
- Loading branch information
1 parent
77c190e
commit eefc4a8
Showing
15 changed files
with
139 additions
and
32 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,112 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## 7.12.0 | ||
|
||
_Aug 1, 2024_ | ||
|
||
### 💵 Our commercial offering is evolving | ||
|
||
The [Pro plan](https://mui.com/x/introduction/licensing/#pro-plan) is receiving two new packages: | ||
|
||
- `@mui/x-tree-view-pro` (available today!) | ||
- `@mui/x-charts-pro` (available in the coming weeks) | ||
|
||
As always, every feature released as part of the MIT plan will remain free and MIT licensed forever. | ||
|
||
This expansion of the Pro plan comes with some adjustments to our pricing strategy. Learn more about those in the [Upcoming changes to MUI X pricing in 2024](https://mui.com/blog/mui-x-sep-2024-price-update/) blog post. | ||
|
||
### Highlights | ||
|
||
We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨: | ||
|
||
- 🎁 Introduce [item reordering using drag and drop](https://mui.com/x/react-tree-view/rich-tree-view/ordering/) on the `RichTreeViewPro` component | ||
|
||
<img width="384" src="https://github.com/user-attachments/assets/78bd83c5-7ce4-4ed7-acf9-be70b2dbce54" alt="Item reordering using drag and drop" /> | ||
|
||
- 📦 Support Common JS bundle out of the box on `@mui/x-charts` by adding vendored D3 dependencies. | ||
|
||
- This modifies how the package imports D3.js. It will impact you if you use `d3` packages installed by `@mui/x-charts` and don't have them in your `package.json`. You shouldn't be affected otherwise. | ||
- For more context, the initial issue is caused by D3 only exporting ESM. | ||
|
||
![image](https://github.com/user-attachments/assets/d705b4de-0c93-420e-a416-528e7a044c1d) | ||
|
||
- The solution up until now was to export charts with only ESM. But some frameworks are confused by this configuration. | ||
|
||
![image](https://github.com/user-attachments/assets/18a09703-9dd4-4226-a33d-167af059219c) | ||
|
||
- So in order to fix this, we are providing a CJS version of D3. | ||
|
||
![image](https://github.com/user-attachments/assets/56387fe6-85d8-4750-bb9d-9866d5be68fa) | ||
|
||
- 🌍 Improve Turkish (tr-TR) locale on the Data Grid | ||
- 🌍 Improve Finnish (fi-FI) locale on the Date and Time Pickers | ||
- 🐞 Bugfixes | ||
- 📚 Documentation improvements | ||
|
||
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /--> | ||
|
||
### Data Grid | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [DataGrid] Fix crash when updating columns immediately after scrolling (#13781) @cherniavskii | ||
- [DataGrid] Fix `role=presentation` a11y issue (#13891) @romgrk | ||
- [DataGrid] Fix top corner pixels & outline radius (#13943) @romgrk | ||
- [DataGrid] Refactor: remove useless copy (#14039) @romgrk | ||
- [l10n] Improve Turkish (tr-TR) locale (#13996) @bagcivan | ||
|
||
#### `@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 and Time Pickers | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [l10n] Improve Finnish (fi-FI) locale (#14054) @frozenzia | ||
|
||
#### `@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] Fix incorrect `axisId` prop being allowed in xAxis/yAxis config. Use `id` instead. (#13986) @JCQuintas | ||
- [charts] Use vendor to have Common JS bundle working out of the box (#13608) @alexfauquette | ||
- [charts] Divide the `SeriesProvider` to use in filtering (#14026) @JCQuintas | ||
|
||
### Tree View | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [TreeView] Add new prop `onItemClick` on the Tree View components (#14018) @flaviendelangle | ||
- [TreeView] Add new utility function `isEventTargetInDescendants` (#13982) @flaviendelangle | ||
- [TreeView] Support item reordering using drag and drop (#12213) @flaviendelangle | ||
|
||
### Docs | ||
|
||
- [docs] Add Pickers `minDate` and `maxDate` `default` description (#14024) @LukasTy | ||
- [docs] Fix 404 (#13989) @alexfauquette | ||
- [docs] Fix Vale errors (#14025) @oliviertassinari | ||
- [docs] Update on `renderCell` & autogenerated rows (#13879) @romgrk | ||
|
||
### Core | ||
|
||
- [core] Fix event naming convention @oliviertassinari | ||
- [core] Replace @mui/base with @mui/utils + @mui/material (#13823) @mnajdova | ||
- [core] Test `charts` performance with codspeed (#13952) @JCQuintas | ||
- [infra] Consolidate issue cleanup and support labeling action (#14031) @michelengelen | ||
- [infra] Revert `vale` action `paths` filtering (#14038) @LukasTy | ||
- [test] Fix adapters code coverage (#13969) @alexfauquette | ||
- [test] Fix mocha config to run charts tests (#14041) @alexfauquette | ||
|
||
## 7.11.1 | ||
|
||
_Jul 25, 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "7.11.1", | ||
"version": "7.12.0", | ||
"private": true, | ||
"scripts": { | ||
"preinstall": "npx only-allow pnpm", | ||
|
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
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