@mui/private-theming 6.0.0-alpha.12 → 6.0.0-alpha.13
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 +39 -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,44 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## v6.0.0-alpha.13
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v6.0.0-alpha.12..next -->
|
|
6
|
+
|
|
7
|
+
_Jun 27, 2024_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
|
|
10
|
+
|
|
11
|
+
- 🚀 Added layout components for Pigment CSS integration (#42693) @siriwatknp
|
|
12
|
+
|
|
13
|
+
### `@mui/material@6.0.0-alpha.13`
|
|
14
|
+
|
|
15
|
+
- [Autocomplete] Fix more React 18.3 key spread warnings in demos (#42639) @wbt
|
|
16
|
+
- [Container][Grid][Stack][Hidden] Export Pigment CSS layout components (#42693) @siriwatknp
|
|
17
|
+
- [Text Field] when click password visibility button, text caret position change to very front. (#42595) @appleSimple
|
|
18
|
+
- [Modal] migrate useSlotProps to useSLot (#42150) @sai6855
|
|
19
|
+
|
|
20
|
+
### `@mui/styles@6.0.0-alpha.13`
|
|
21
|
+
|
|
22
|
+
- [withStyles] Expect React defaultProps warning in test (#42752) @aarongarciah
|
|
23
|
+
|
|
24
|
+
### Docs
|
|
25
|
+
|
|
26
|
+
- Fix link in CONTRIBUTING.md (#42755) @Janpot
|
|
27
|
+
- Add documentation on migrating JSS's alternative, array-based syntax to syntax supported by Emotion (#42053) @cjl750
|
|
28
|
+
- Fix type error in virtualized table demo (#42757) @aarongarciah
|
|
29
|
+
- Add first batch of v6 migration (#42242) @siriwatknp
|
|
30
|
+
- Fix quotes on font-family dedeclaration in the Landing Page template theme (#42748) @joetats
|
|
31
|
+
|
|
32
|
+
### Core
|
|
33
|
+
|
|
34
|
+
- [code-infra] Refactor eslint `import/no-cycle` rule (#42705) @LukasTy
|
|
35
|
+
- [core] Target direct version for prerelease (#42768) @siriwatknp
|
|
36
|
+
- [test] Remove enzyme (#42706) @aarongarciah
|
|
37
|
+
- [test] Remove createMount test util (#42703) @aarongarciah
|
|
38
|
+
- [website] Add Ale to team (#42764) @alelthomas
|
|
39
|
+
|
|
40
|
+
All contributors of this release in alphabetical order: @aarongarciah, @alelthomas, @appleSimple, @cjl750, @Janpot, @joetats, @LukasTy, @sai6855, @siriwatknp, @wbt
|
|
41
|
+
|
|
3
42
|
## v6.0.0-alpha.12
|
|
4
43
|
|
|
5
44
|
<!-- generated comparing v6.0.0-alpha.11..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.13",
|
|
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": "
|
|
31
|
+
"@mui/utils": "6.0.0-alpha.13"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@types/react": "^17.0.0 || ^18.0.0",
|