@mui/private-theming 6.0.0-alpha.13 → 6.0.0-alpha.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +52 -0
- package/index.js +1 -1
- package/modern/index.js +1 -1
- package/node/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## v6.0.0-alpha.14
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v6.0.0-alpha.13..next -->
|
|
6
|
+
|
|
7
|
+
_Jul 3, 2024_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
|
|
10
|
+
|
|
11
|
+
- ✨ Updated Grid v2 to match PigmentGrid (#42742) @DiegoAndai
|
|
12
|
+
|
|
13
|
+
### `@mui/material@v6.0.0-alpha.14`
|
|
14
|
+
|
|
15
|
+
#### BREAKING CHANGES
|
|
16
|
+
|
|
17
|
+
- [Grid] Update Grid props to match PigmentGrid (#42742) @DiegoAndai
|
|
18
|
+
|
|
19
|
+
Use the codemod below to migrate the props:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx @mui/codemod@next v6.0.0/grid-v2-props /path/to/folder
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
#### Changes
|
|
26
|
+
|
|
27
|
+
- [Alert] Add ability to override slot props (#42787) @alexey-kozlenkov
|
|
28
|
+
- [Dialog] Revert incorrect textAlign style removal (#42778) @DiegoAndai
|
|
29
|
+
- [theme] Support `CssVarsTheme` in `responsiveFontSizes` return type (#42786) @jxdp
|
|
30
|
+
|
|
31
|
+
### Docs
|
|
32
|
+
|
|
33
|
+
- [material-ui] Add some writing tweaks to v6 migration page (#42623) @danilo-leal
|
|
34
|
+
- [material-ui] Fix issues reported by react-compiler in docs folder (#42830) @sai6855
|
|
35
|
+
- [material-ui] Add some writing tweaks to v6 migration page (#42623) @danilo-leal
|
|
36
|
+
- [base-ui] Fix wrong description for `UseTabParameters.onChange` (#42749) @ohgree
|
|
37
|
+
- Fix 301 MDN redirections @oliviertassinari
|
|
38
|
+
|
|
39
|
+
### Core
|
|
40
|
+
|
|
41
|
+
- [core] Bump React to 18.3.1 (#42047) @renovate[bot]
|
|
42
|
+
- [core] Revert lint for `useThemeProps` (#42817) @siriwatknp
|
|
43
|
+
- [core] Remove useIsFocusVisible util (#42467) @DiegoAndai
|
|
44
|
+
- [core] Remove react-test-renderer (#42784) @aarongarciah
|
|
45
|
+
- [core][mui-utils] Remove remaining IE11 references (#42777) @DiegoAndai
|
|
46
|
+
- [code-infra] Move `HighlightedCode` test into `@mui/docs` package (#42835) @LukasTy
|
|
47
|
+
- [code-infra] Cleanup `@mui/docs` usage and legacy re-exports (#42833) @LukasTy
|
|
48
|
+
- [docs-infra] Fix React Compiler ESLint issues in website components (#42566) @aarongarciah
|
|
49
|
+
- [docs-infra] Add batch of design polish (#42823) @danilo-leal
|
|
50
|
+
- [test][mui-utils] Remove usages of deprecated react-dom APIs (#42780) @aarongarciah
|
|
51
|
+
- [test][joy-ui][Autocomplete] Fix spread key error in test (#42775) @aarongarciah
|
|
52
|
+
|
|
53
|
+
All contributors of this release in alphabetical order: @aarongarciah, @alexey-kozlenkov, @danilo-leal, @DiegoAndai, @Janpot, @jxdp, @LukasTy, @ohgree, @oliviertassinari, @renovate[bot], @sai6855, @siriwatknp
|
|
54
|
+
|
|
3
55
|
## v6.0.0-alpha.13
|
|
4
56
|
|
|
5
57
|
<!-- generated comparing v6.0.0-alpha.12..next -->
|
package/index.js
CHANGED
package/modern/index.js
CHANGED
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/private-theming",
|
|
3
|
-
"version": "6.0.0-alpha.
|
|
3
|
+
"version": "6.0.0-alpha.14",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "Private - The React theme context to be shared between `@mui/styles` and `@mui/material`.",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@babel/runtime": "^7.24.7",
|
|
30
30
|
"prop-types": "^15.8.1",
|
|
31
|
-
"@mui/utils": "6.0.0-alpha.
|
|
31
|
+
"@mui/utils": "6.0.0-alpha.14"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@types/react": "^17.0.0 || ^18.0.0",
|