@mui/icons-material 9.0.0-beta.1 → 9.0.0
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 +28 -0
- package/README.md +4 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 9.0.0
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v9.0.0-beta.1..master -->
|
|
6
|
+
|
|
7
|
+
_Apr 7, 2026_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 7 contributors who made this release possible.
|
|
10
|
+
|
|
11
|
+
🥳 We're excited to announce the stable release of Material UI v9! This major release focus on accessibility improvements, sx prop performance, and cleanup of deprecated APIs.
|
|
12
|
+
|
|
13
|
+
For more details, check out the [upgrade guide](https://mui.com/material-ui/migration/upgrade-to-v9/).
|
|
14
|
+
|
|
15
|
+
### `@mui/material@9.0.0`
|
|
16
|
+
|
|
17
|
+
- [slider] Use pointer events instead of mouse events (#48164) @mj12albert
|
|
18
|
+
- [switch] Add border to make it visible in high contrast mode (#48180) @silviuaavram
|
|
19
|
+
- [transitions] Performance improvements & misc fixes (#48151) @mj12albert
|
|
20
|
+
- Remove unnecessary overridesResolvers from styled components (#48204) @sai6855
|
|
21
|
+
|
|
22
|
+
### Core
|
|
23
|
+
|
|
24
|
+
- [code-infra] Setup workflow to publish internal packages (#47952) @brijeshb42
|
|
25
|
+
- [core-docs] Add `x-scheduler` to `MuiProductId` type (#48185) @rita-codes
|
|
26
|
+
- [docs-infra] Add scheduler to product switcher (#48208) @rita-codes
|
|
27
|
+
- [internal] Prepare libraries for v9 stable release (#48206) @siriwatknp
|
|
28
|
+
|
|
29
|
+
All contributors of this release in alphabetical order: @brijeshb42, @mj12albert, @noraleonte, @rita-codes, @sai6855, @silviuaavram, @siriwatknp
|
|
30
|
+
|
|
3
31
|
## 9.0.0-beta.1
|
|
4
32
|
|
|
5
33
|
<!-- generated comparing v9.0.0-beta.0..master -->
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- #host-reference -->
|
|
4
4
|
|
|
5
|
-
This package contains Google's [Material Icons](https://fonts.google.com/icons?icon.set=Material+Icons) converted to Material UI [SVG Icon](https://
|
|
5
|
+
This package contains Google's [Material Icons](https://fonts.google.com/icons?icon.set=Material+Icons) converted to Material UI [SVG Icon](https://mui.com/material-ui/icons/#svgicon) components.
|
|
6
6
|
|
|
7
7
|
> Google also offers [Material Symbols](https://fonts.google.com/icons?icon.set=Material+Symbols) as the successor of Material Icons. `@mui/icons-material` only covers Icons at this time, there are no support for Symbols yet.
|
|
8
8
|
|
|
@@ -13,15 +13,15 @@ The Material Icons package depends on Material UI—install both with the follo
|
|
|
13
13
|
<!-- #npm-tag-reference -->
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npm install @mui/icons-material
|
|
16
|
+
npm install @mui/icons-material @mui/material @emotion/styled @emotion/react
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Documentation
|
|
20
20
|
|
|
21
21
|
<!-- #host-reference -->
|
|
22
22
|
|
|
23
|
-
- Learn more about Material UI's [SVG Icon component](https://
|
|
24
|
-
- Browse the available icons on the [Material Icons page](https://
|
|
23
|
+
- Learn more about Material UI's [SVG Icon component](https://mui.com/material-ui/icons/#svgicon).
|
|
24
|
+
- Browse the available icons on the [Material Icons page](https://mui.com/material-ui/material-icons/).
|
|
25
25
|
|
|
26
26
|
## Contributing
|
|
27
27
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/icons-material",
|
|
3
|
-
"version": "9.0.0
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "Material Design icons distributed as SVG React components.",
|
|
6
|
+
"license": "MIT",
|
|
6
7
|
"main": "./src/index.js",
|
|
7
8
|
"keywords": [
|
|
8
9
|
"react",
|
|
@@ -17,7 +18,6 @@
|
|
|
17
18
|
"url": "git+https://github.com/mui/material-ui.git",
|
|
18
19
|
"directory": "packages/mui-icons-material"
|
|
19
20
|
},
|
|
20
|
-
"license": "MIT",
|
|
21
21
|
"bugs": {
|
|
22
22
|
"url": "https://github.com/mui/material-ui/issues"
|
|
23
23
|
},
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
34
34
|
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
35
|
-
"@mui/material": "9.0.0
|
|
35
|
+
"@mui/material": "^9.0.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependenciesMeta": {
|
|
38
38
|
"@types/react": {
|