-
-
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: Bilal Shafi <[email protected]> Co-authored-by: Flavien DELANGLE <[email protected]> Co-authored-by: Andrew Cherniavskii <[email protected]>
- Loading branch information
1 parent
51898b3
commit 723ed37
Showing
9 changed files
with
117 additions
and
13 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,110 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## 6.16.2 | ||
|
||
_Oct 12, 2023_ | ||
|
||
We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨: | ||
|
||
- 📊 Chart's legend text management has been reworked and contains breaking changes (#10138) @alexfauquette | ||
- 📝 Add [Bulk editing](https://mui.com/x/react-data-grid/recipes-editing/#bulk-editing) demo (#10333) @cherniavskii | ||
- 🚀 Column grouping now works smoothly with column pinning (#10518) @MBilalShafi | ||
- 🌍 Improve Arabic (ar-SD) and Spanish (es-ES) locales | ||
- 🐞 Bugfixes | ||
- 📚 Documentation improvements | ||
|
||
### Data Grid | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [DataGrid] Fix `LazyLoading` demo crash (#10621) @MBilalShafi | ||
- [DataGrid] Fix cells overlapping the scrollbar in iOS Safari (#10633) @cherniavskii | ||
- [DataGrid] Fix `getRowId is not defined` error (#10613) @romgrk | ||
- [DataGrid] Get quick filter to work OOTB with `date` and `dateTime` fields (#10636) @MBilalShafi | ||
- [DataGrid] Make cursor for selectable cells to be `default` unless editable (#9997) @gitstart | ||
- [DataGrid] Remove unnecessary syntax in JSDoc (#10567) @Lev-Shapiro | ||
- [DataGrid] Update row hover behavior to match native hover (#10623) @cherniavskii | ||
- [l10n] Improve Arabic (ar-SD) locale (#10625) @alabenyahia | ||
|
||
#### `@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] Improve column grouping and column pinning friendship (#10518) @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]` | ||
|
||
- [DateTimePicker] Add support for `DigitalClock` view renderer (#10624) @LukasTy | ||
- [fields] Bootstrap the multi-HTML input component (#10638) @flaviendelangle | ||
- [pickers] Fix timezone `UTC` false positive (#10586) @alexfauquette | ||
- [l10n] Improve Spanish (es-ES) locale (#10588) @eduardodallmann | ||
|
||
#### `@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]` | ||
|
||
#### Breaking changes | ||
|
||
The charts have a new text display mechanism. | ||
It adds line break support and avoids overlapping text in the legend. | ||
This comes with some breaking changes. | ||
|
||
- The DOM structure is modified. An intermediary `<tspan />` element has been added. This can impact how your style is applied. | ||
```diff | ||
- <text>The label</text> | ||
+ <text><tspan>The label</tspan></text> | ||
``` | ||
|
||
- The top margin has been reduced from 100 to 50 to benefit from the denser legend. | ||
|
||
- To accurately compute the text size and then place it, styling should be provided as a JS object. For example, to set the legend font size, you should do: | ||
```jsx | ||
<PieChart | ||
{/** ... */} | ||
slotProps={{ | ||
legend: { | ||
labelStyle: { | ||
fontSize: 16, | ||
}, | ||
}, | ||
}} | ||
/> | ||
``` | ||
Support for other text elements (axis labels and tick labels) will be implemented in follow-up PR. | ||
|
||
#### Changes | ||
|
||
- [charts] Fix typo between internal/external variable (#10640) @alexfauquette | ||
- [charts] Improve the management of the text (#10138) @alexfauquette | ||
|
||
### Docs | ||
|
||
- [docs] Add bulk editing demo (#10333) @cherniavskii | ||
- [docs] Add reference links to DateRangePicker components (#10629) @michelengelen | ||
- [docs] Add reference links to DateTimePicker components (#10628) @michelengelen | ||
- [docs] Add reference links to picker field components (#10631) @michelengelen | ||
- [docs] Added reference links to TimePicker components (#10627) @michelengelen | ||
- [docs] Avoid Pickers playground error due to empty views (#10654) @LukasTy | ||
- [docs] Fix DataGrid[Pro/Premium] reference links (#10620) @michelengelen | ||
|
||
### Core | ||
|
||
- [core] Bump monorepo (#10619) @alexfauquette | ||
- [core] Update `no-response` workflow (#10491) @MBilalShafi | ||
- [core] Update the issue templates to reflect the new support workflow (#10651) @MBilalShafi | ||
- [test] Fix `testEval` not invoking test assertions (#10587) @cherniavskii | ||
- [test] Fix dev mode warning (#10610) @oliviertassinari | ||
- [test] Set UUID chance seed in visual tests (#10609) @oliviertassinari | ||
|
||
## 6.16.1 | ||
|
||
_Oct 6, 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "6.16.1", | ||
"version": "6.16.2", | ||
"private": true, | ||
"scripts": { | ||
"start": "yarn && yarn docs:dev", | ||
|
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