@mui/lab 7.0.0-beta.1 → 7.0.0-beta.2
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 +31 -0
- package/esm/index.js +1 -1
- package/index.js +1 -1
- package/modern/index.js +1 -1
- package/package.json +10 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 7.0.0-alpha.2
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v7.0.0-alpha.1..master -->
|
|
6
|
+
|
|
7
|
+
_Feb 18, 2025_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 9 contributors who made this release possible.
|
|
10
|
+
|
|
11
|
+
### `@mui/material@7.0.0-alpha.2`
|
|
12
|
+
|
|
13
|
+
- [Autocomplete] Remove legacy `aria-owns` attribute for combobox (#45302) @ZeeshanTamboli
|
|
14
|
+
- [Button] Apply id only if loading indicator is present (#45296) @aarongarciah
|
|
15
|
+
- [Hidden] Remove deprecated Hidden component (#45283) @DiegoAndai
|
|
16
|
+
- [InputBase] Deprecate composed classes (#45234) @sai6855
|
|
17
|
+
- [InputLabel] Changed size prop value from `normal` to `medium` (#45235) @perkrlsn
|
|
18
|
+
- Fix `slotProps.transition` types (#45214) @siriwatknp
|
|
19
|
+
|
|
20
|
+
### Docs
|
|
21
|
+
|
|
22
|
+
- Fix broken links to MUI X docs (#45145) @mapache-salvaje
|
|
23
|
+
- Add migration guide for package layout changes (#45222) @Janpot
|
|
24
|
+
- [icons] Fix typo in material-icons.md (#45334) @a-s-russo
|
|
25
|
+
|
|
26
|
+
### Core
|
|
27
|
+
|
|
28
|
+
- Disallow access to esm/modern barrel files (#45332) @Janpot
|
|
29
|
+
- [code-infra] Update `elliptic` (#45311) @Janpot
|
|
30
|
+
- Update release guide to specify package bumping rules (#45294) @DiegoAndai
|
|
31
|
+
|
|
32
|
+
All contributors of this release in alphabetical order: @a-s-russo, @aarongarciah, @DiegoAndai, @Janpot, @mapache-salvaje, @perkrlsn, @sai6855, @siriwatknp, @ZeeshanTamboli
|
|
33
|
+
|
|
3
34
|
## 7.0.0-alpha.1
|
|
4
35
|
|
|
5
36
|
<!-- generated comparing v7.0.0-alpha.0..master -->
|
package/esm/index.js
CHANGED
package/index.js
CHANGED
package/modern/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/lab",
|
|
3
|
-
"version": "7.0.0-beta.
|
|
3
|
+
"version": "7.0.0-beta.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "Laboratory for new MUI modules.",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"url": "https://opencollective.com/mui-org"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@babel/runtime": "^7.26.
|
|
31
|
+
"@babel/runtime": "^7.26.9",
|
|
32
32
|
"clsx": "^2.1.1",
|
|
33
33
|
"prop-types": "^15.8.1",
|
|
34
34
|
"@mui/base": "5.0.0-beta.69",
|
|
35
|
-
"@mui/
|
|
36
|
-
"@mui/
|
|
37
|
-
"@mui/
|
|
35
|
+
"@mui/system": "7.0.0-alpha.2",
|
|
36
|
+
"@mui/utils": "7.0.0-alpha.2",
|
|
37
|
+
"@mui/types": "^7.2.22"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"@emotion/react": "^11.5.0",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
43
43
|
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
44
44
|
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
45
|
-
"@mui/material": "7.0.0-alpha.
|
|
46
|
-
"@mui/material
|
|
45
|
+
"@mui/material-pigment-css": "^7.0.0-alpha.2",
|
|
46
|
+
"@mui/material": "7.0.0-alpha.2"
|
|
47
47
|
},
|
|
48
48
|
"peerDependenciesMeta": {
|
|
49
49
|
"@types/react": {
|
|
@@ -96,7 +96,9 @@
|
|
|
96
96
|
"types": "./modern/*/index.d.ts",
|
|
97
97
|
"default": "./modern/*/index.js"
|
|
98
98
|
}
|
|
99
|
-
}
|
|
99
|
+
},
|
|
100
|
+
"./esm": null,
|
|
101
|
+
"./modern": null
|
|
100
102
|
},
|
|
101
103
|
"types": "./index.d.ts"
|
|
102
104
|
}
|