-
-
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.
Merge branch 'master' into row-reorder-filter
- Loading branch information
Showing
35 changed files
with
430 additions
and
62 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 |
---|---|---|
|
@@ -5,6 +5,133 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## 8.0.0-alpha.4 | ||
|
||
_Dec 13, 2024_ | ||
|
||
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨: | ||
|
||
- 🌍 Improve Romanian locale on the Data Grid and Pickers | ||
- 📚 Documentation improvements | ||
- 🐞 Bugfixes | ||
|
||
Special thanks go out to the community contributors who have helped make this release possible: | ||
@k-rajat19, @nusr, @rares985, @zivl. | ||
Following are all team members who have contributed to this release: | ||
@alexfauquette, @arminmeh, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi. | ||
|
||
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /--> | ||
|
||
### Data Grid | ||
|
||
#### Breaking changes | ||
|
||
- The selectors signature has been updated due to the support of arguments in the selectors. Pass `undefined` as `arguments` if the selector doesn't use any arguments. | ||
|
||
```diff | ||
-mySelector(state, instanceId) | ||
+mySelector(state, arguments, instanceId) | ||
``` | ||
|
||
- The `useGridSelector` signature has been updated due to the introduction of arguments parameter in the selectors. Pass `undefined` as `arguments` if the selector doesn't use any arguments. | ||
|
||
```diff | ||
-const output = useGridSelector(apiRef, selector, equals) | ||
+const output = useGridSelector(apiRef, selector, arguments, equals) | ||
``` | ||
- The default variant for text fields and selects in the filter panel has been changed to `outlined`. | ||
- The "row spanning" feature is now stable. | ||
```diff | ||
<DataGrid | ||
- unstable_rowSpanning | ||
+ rowSpanning | ||
/> | ||
``` | ||
- Selected row is now deselected when clicked again. | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [DataGrid] Deselect selected row on click (#15509) @k-rajat19 | ||
- [DataGrid] Fix "No rows" displaying when all rows are pinned (#15335) @nusr | ||
- [DataGrid] Make row spanning feature stable (#15742) @MBilalShafi | ||
- [DataGrid] Round dimensions to avoid subpixel rendering error (#15850) @KenanYusuf | ||
- [DataGrid] Toggle menu on click in `<GridActionsCell />` (#15867) @k-rajat19 | ||
- [DataGrid] Trigger row spanning computation on rows update (#15858) @MBilalShafi | ||
- [DataGrid] Update filter panel input variant (#15807) @KenanYusuf | ||
- [DataGrid] Use `columnsManagement` slot (#15817) @k-rajat19 | ||
- [DataGrid] Use new selector signature (#15200) @MBilalShafi | ||
- [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985 | ||
|
||
#### `@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 row reordering work with pagination (#15355) @k-rajat19 | ||
|
||
#### `@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]`, plus: | ||
|
||
- [DataGridPremium] Fix group column ignoring `valueOptions` for `singleSelect` column type (#15739) @arminmeh | ||
|
||
### Date and Time Pickers | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985 | ||
- [pickers] Clean `usePicker` logic (#15763) @flaviendelangle | ||
- [pickers] Rename layout `ownerState` property from `isRtl` to `layoutDirection` (#15803) @flaviendelangle | ||
- [pickers] Use the new `ownerState` in `useClearableField` (#15776) @flaviendelangle | ||
- [pickers] Use the new `ownerState` in the toolbar components (#15777) @flaviendelangle | ||
- [pickers] Use the new `ownerState` object for the clock components and the desktop / mobile wrappers (#15669) @flaviendelangle | ||
|
||
#### `@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 | ||
|
||
#### Breaking changes | ||
|
||
- The default styling of the charts tooltip has been updated. | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [charts] Fix hydration missmatch (#15647) @alexfauquette | ||
- [charts] Fix internal spelling typo (#15805) @zivl | ||
- [charts] Fix scatter dataset with missing data (#15802) @alexfauquette | ||
- [charts] HTML Labels (#15813) @JCQuintas | ||
- [charts] Only access store values by using hooks (#15764) @alexfauquette | ||
- [charts] Update Tooltip style (#15630) @alexfauquette | ||
|
||
#### `@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]`. | ||
|
||
### Tree View | ||
|
||
#### `@mui/[email protected]` | ||
|
||
No changes, releasing to keep the versions in sync. | ||
|
||
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') | ||
|
||
Releasing to benefit from license package fix (#15814). | ||
|
||
### Docs | ||
|
||
- [docs] Clean Joy and Browser custom field demos (#15707) @flaviendelangle | ||
- [docs] Fix outdated link to handbook (#15855) @oliviertassinari | ||
- [docs] Improve Pickers accessible DOM migration section description (#15596) @LukasTy | ||
- [docs] Use `updateRows` method for list view demos (#15732) @KenanYusuf | ||
- [docs] Use date library version from package dev dependencies for sandboxes (#15762) @LukasTy | ||
|
||
### Core | ||
|
||
- [code-infra] Add Charts sandbox generation (#15830) @JCQuintas | ||
- [code-infra] Remove redundant `@type/react-test-renderer` dep (#15766) @LukasTy | ||
- [license] Use `console.log` for the error message on Codesandbox to avoid rendering error (#15814) @arminmeh | ||
|
||
## 8.0.0-alpha.3 | ||
|
||
_Dec 5, 2024_ | ||
|
@@ -567,6 +694,153 @@ Same changes as in `@mui/[email protected]`. | |
- [release] v8 preparation (#15054) @michelengelen | ||
- [test] Fix advanced list view regression test snapshot (#15260) @KenanYusuf | ||
|
||
## 7.23.2 | ||
|
||
_Dec 12, 2024_ | ||
|
||
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨: | ||
|
||
- 🌍 Improve Romanian and Turkish locales on the Data Grid | ||
- 🌍 Improve Romanian locale on the Pickers | ||
- 📚 Documentation improvements | ||
- 🐞 Bugfixes | ||
|
||
Special thanks go out to the community contributors who have helped make this release possible: | ||
@ihsanberkozcan, @k-rajat19, @lhilgert9, @nusr, @rares985. | ||
|
||
Following are all team members who have contributed to this release: | ||
@alexfauquette, @arminmeh, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy. | ||
|
||
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /--> | ||
|
||
### Data Grid | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [DataGrid] Fix "No rows" displaying when all rows are pinned (#15851) @nusr | ||
- [DataGrid] Use `columnsManagement` slot (#15821) @k-rajat19 | ||
- [l10n] Improve Romanian (ro-RO) locale (#15751) @rares985 | ||
- [l10n] Improve Turkish (tr-TR) locale (#15748) @ihsanberkozcan | ||
|
||
#### `@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 Row reordering work with pagination (#15782) @k-rajat19 | ||
|
||
#### `@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]`, plus: | ||
|
||
- [DataGridPremium] Fix group column ignoring `valueOptions` for `singleSelect` column type (#15754) @arminmeh | ||
|
||
### Date and Time Pickers | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [l10n] Improve Romanian (ro-RO) locale (#15751) @rares985 | ||
|
||
#### `@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 key generation for the ChartsGrid (#15864) @alexfauquette | ||
- [charts] Fix scatter dataset with missing data (#15804) @alexfauquette | ||
|
||
#### `@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]` | ||
|
||
No changes, releasing to keep the versions in sync. | ||
|
||
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') | ||
|
||
Releasing to benefit from license package fix (#15818). | ||
|
||
### Docs | ||
|
||
- [docs] Fix typo in charts axis documentation (#15746) @JCQuintas | ||
- [docs] Improve Pickers accessible DOM structure description (#15752) @LukasTy | ||
- [docs] Use `updateRows` method for list view demos (#15824) @KenanYusuf | ||
- [docs] Use date library version from package dev dependencies for sandboxes (#15767) @LukasTy | ||
|
||
### Core | ||
|
||
- [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15747) @flaviendelangle | ||
- [license] Use `console.log` for the error message on Codesandbox to avoid rendering error (#15818) @arminmeh | ||
|
||
## 7.23.1 | ||
|
||
_Dec 5, 2024_ | ||
|
||
We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: | ||
|
||
- 🌍 Improve German locale on the Data Grid component | ||
- 🐞 Bugfixes | ||
|
||
Special thanks go out to the community contributors who have helped make this release possible: | ||
@lhilgert9. | ||
|
||
Following are all team members who have contributed to this release: | ||
@arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy and @MBilalShafi. | ||
|
||
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /--> | ||
|
||
### Data Grid | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [DataGrid] Make column autosizing work with flex columns (#15712) @cherniavskii | ||
- [l10n] Improve German (de-DE) locale (#15641) @lhilgert9 | ||
|
||
#### `@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] Cleanup pinned rows on removal (#15702) @cherniavskii | ||
|
||
#### `@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]` | ||
|
||
- [TimePicker] Prevent mouse events after `touchend` event (#15430) @arthurbalduini | ||
|
||
#### `@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] Improve SVG `pattern` and `gradient` support (#15724) @JCQuintas | ||
|
||
#### `@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 Pickers theme augmentation example (#15675) @LukasTy | ||
- [docs] Remove duplicated warning (#15715) @cherniavskii | ||
- [test] Force hover in headless Chrome (#15711) @cherniavskii | ||
- [docs-infra] Bump `@mui/internal-markdown` to support nested demo imports (#15738) @alexfauquette | ||
- [docs] Improve SEO titles for the Data Grid (#15695) @MBilalShafi | ||
|
||
### Core | ||
|
||
- [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15747) @flaviendelangle | ||
|
||
## 7.23.0 | ||
|
||
_Nov 29, 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
Oops, something went wrong.