Skip to content

Commit 878a538

Browse files
KenanYusufflaviendelanglearminmehLukasTy
authored
v8.0.0-alpha.5 (#15937)
Signed-off-by: Kenan Yusuf <[email protected]> Co-authored-by: Flavien DELANGLE <[email protected]> Co-authored-by: Armin Mehinovic <[email protected]> Co-authored-by: Lukas Tyla <[email protected]>
1 parent 1eaf1d8 commit 878a538

File tree

15 files changed

+117
-14
lines changed

15 files changed

+117
-14
lines changed

Diff for: CHANGELOG.md

+103
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,108 @@
55
All notable changes to this project will be documented in this file.
66
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
77

8+
## 8.0.0-alpha.5
9+
10+
_Dec 19, 2024_
11+
12+
We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
13+
14+
- 🌍 Improve Korean (ko-KR) locale on the Data Grid
15+
- 🐞 Bugfixes
16+
17+
Special thanks go out to the community contributors who have helped make this release possible:
18+
@good-jinu, @k-rajat19.
19+
Following are all team members who have contributed to this release:
20+
@alexfauquette, @cherniavskii, @flaviendelangle, @KenanYusuf, @LukasTy, @MBilalShafi, @romgrk.
21+
22+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
23+
24+
### Data Grid
25+
26+
#### Breaking changes
27+
28+
- Passing additional props (like `data-*`, `aria-*`) directly on the Data Grid component is no longer supported. To pass the props, use `slotProps`.
29+
30+
- For `.root` element, use `slotProps.root`.
31+
- For `.main` element (the one with `role="grid"`), use `slotProps.main`.
32+
33+
- `detailPanelExpandedRowIds` and `onDetailPanelExpandedRowIdsChange` props use a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array:
34+
35+
```diff
36+
-detailPanelExpandedRowIds?: GridRowId[];
37+
+detailPanelExpandedRowIds?: Set<GridRowId>;
38+
39+
-onDetailPanelExpandedRowIdsChange?: (ids: GridRowId[], details: GridCallbackDetails) => void;
40+
+onDetailPanelExpandedRowIdsChange?: (ids: Set<GridRowId>, details: GridCallbackDetails) => void;
41+
```
42+
43+
- `apiRef.current.getExpandedDetailPanels` and `apiRef.current.setExpandedDetailPanels` methods receive and return a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array.
44+
- `gridDetailPanelExpandedRowIdsSelector` returns a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array.
45+
- `gridDetailPanelExpandedRowsHeightCacheSelector` was removed.
46+
47+
#### `@mui/[email protected]`
48+
49+
- [DataGrid] Consider `columnGroupHeaderHeight` prop in `getTotalHeaderHeight` method (#15915) @k-rajat19
50+
- [DataGrid] Fix autosizing with virtualized columns (#15116) @k-rajat19
51+
- [DataGrid] Move `<Badge />` to leaf import (#15879) @romgrk
52+
- [DataGrid] Move `<ListItemText />` and `<ListItemIcon />` to leaf import (#15869) @romgrk
53+
- [DataGrid] Remove the Joy UI demo (#15913) @romgrk
54+
- [DataGrid] Update quick filter input variant (#15909) @KenanYusuf
55+
- [DataGrid] Use `slotProps` to forward props to `.main` and `.root` elements (#15870) @MBilalShafi
56+
- [l10n] Improve Korean(ko-KR) locale (#15878) @good-jinu
57+
58+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
59+
60+
Same changes as in `@mui/[email protected]`, plus:
61+
62+
- [DataGridPro] Use `Set` for `detailPanelExpandedRowIds` (#15835) @cherniavskii
63+
64+
#### `@mui/[email protected]` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
65+
66+
Same changes as in `@mui/[email protected]`.
67+
68+
### Date and Time Pickers
69+
70+
#### Breaking changes
71+
72+
- The `<PickersMonth />` component has been moved inside the Month Calendar component — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#month-calendar).
73+
74+
- The `<PickersYear />` component has been moved inside the Year Calendar component — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#year-calendar).
75+
76+
#### `@mui/[email protected]`
77+
78+
- [pickers] Add verification to disable skipped hours in spring forward DST (#15849) @flaviendelangle
79+
- [pickers] Remove `PickersMonth` and `PickersYear` from the theme and remove the `div` wrapping each button (#15806) @flaviendelangle
80+
- [pickers] Use the new `ownerState` object on the `<PickersTextField />` component (#15863) @flaviendelangle
81+
82+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
83+
84+
Same changes as in `@mui/[email protected]`.
85+
86+
### Charts
87+
88+
#### `@mui/[email protected]`
89+
90+
- [charts] Fix `<ScatterChart />` value type if `null` (#15917) @alexfauquette
91+
92+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
93+
94+
Same changes as in `@mui/[email protected]`.
95+
96+
### Tree View
97+
98+
#### `@mui/[email protected]`
99+
100+
No changes since `@mui/[email protected]`.
101+
102+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
103+
104+
Same changes as in `@mui/[email protected]`.
105+
106+
### Core
107+
108+
- [code-infra] Remove `@mui/material-nextjs` dependency (#15925) @LukasTy
109+
8110
## 8.0.0-alpha.4
9111

10112
_Dec 13, 2024_
@@ -39,6 +141,7 @@ Following are all team members who have contributed to this release:
39141
-const output = useGridSelector(apiRef, selector, equals)
40142
+const output = useGridSelector(apiRef, selector, arguments, equals)
41143
```
144+
42145
- The default variant for text fields and selects in the filter panel has been changed to `outlined`.
43146
- The "row spanning" feature is now stable.
44147
```diff

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "8.0.0-alpha.4",
2+
"version": "8.0.0-alpha.5",
33
"private": true,
44
"scripts": {
55
"preinstall": "npx only-allow pnpm",

Diff for: packages/x-charts-pro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-charts-pro",
3-
"version": "8.0.0-alpha.4",
3+
"version": "8.0.0-alpha.5",
44
"description": "The Pro plan edition of the Charts components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-charts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-charts",
3-
"version": "8.0.0-alpha.4",
3+
"version": "8.0.0-alpha.5",
44
"description": "The community edition of the Charts components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.js",

Diff for: packages/x-codemod/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-codemod",
3-
"version": "8.0.0-alpha.4",
3+
"version": "8.0.0-alpha.5",
44
"bin": "./codemod.js",
55
"private": false,
66
"author": "MUI Team",

Diff for: packages/x-data-grid-generator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-data-grid-generator",
3-
"version": "8.0.0-alpha.4",
3+
"version": "8.0.0-alpha.5",
44
"description": "Generate fake data for demo purposes only.",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-data-grid-premium/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-data-grid-premium",
3-
"version": "8.0.0-alpha.4",
3+
"version": "8.0.0-alpha.5",
44
"description": "The Premium plan edition of the Data Grid Components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-data-grid-pro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-data-grid-pro",
3-
"version": "8.0.0-alpha.4",
3+
"version": "8.0.0-alpha.5",
44
"description": "The Pro plan edition of the Data Grid components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-data-grid/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-data-grid",
3-
"version": "8.0.0-alpha.4",
3+
"version": "8.0.0-alpha.5",
44
"description": "The Community plan edition of the Data Grid components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-date-pickers-pro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-date-pickers-pro",
3-
"version": "8.0.0-alpha.4",
3+
"version": "8.0.0-alpha.5",
44
"description": "The Pro plan edition of the Date and Time Picker components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-date-pickers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-date-pickers",
3-
"version": "8.0.0-alpha.4",
3+
"version": "8.0.0-alpha.5",
44
"description": "The community edition of the Date and Time Picker components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-internals/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-internals",
3-
"version": "8.0.0-alpha.2",
3+
"version": "8.0.0-alpha.5",
44
"description": "Utility functions for the MUI X packages (internal use only).",
55
"author": "MUI Team",
66
"license": "MIT",

Diff for: packages/x-license/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-license",
3-
"version": "8.0.0-alpha.4",
3+
"version": "8.0.0-alpha.5",
44
"description": "MUI X License verification",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-tree-view-pro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-tree-view-pro",
3-
"version": "8.0.0-alpha.4",
3+
"version": "8.0.0-alpha.5",
44
"description": "The Pro plan edition of the Tree View components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-tree-view/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-tree-view",
3-
"version": "8.0.0-alpha.4",
3+
"version": "8.0.0-alpha.5",
44
"description": "The community edition of the Tree View components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

0 commit comments

Comments
 (0)