@mui/icons-material 7.3.8 → 9.0.0-alpha.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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 9.0.0-alpha.0
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v7.3.8..master -->
|
|
6
|
+
|
|
7
|
+
_Feb 17, 2026_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 3 contributors who made this release possible.
|
|
10
|
+
|
|
11
|
+
### @mui/material@9.0.0-alpha.0
|
|
12
|
+
|
|
13
|
+
- [theme] Generate `color-mix` value on top of default generated Material UI CSS variables (#47767) @ZeeshanTamboli
|
|
14
|
+
|
|
15
|
+
### Docs
|
|
16
|
+
|
|
17
|
+
- [docs] Make tooltips describe their visible text triggers (#47658) @silviuaavram
|
|
18
|
+
- [docs][theme] Fix `nativeColor` docs (#47759) @ZeeshanTamboli
|
|
19
|
+
|
|
20
|
+
### Core
|
|
21
|
+
|
|
22
|
+
- [blog] A pattern for opt-in type-only breaking changes in minor versions (#47622) @bernardobelchior
|
|
23
|
+
- [internal] Prepare libraries for first v9 alpha release (#47756) @silviuaavram
|
|
24
|
+
|
|
25
|
+
All contributors of this release in alphabetical order: @bernardobelchior, @silviuaavram, @ZeeshanTamboli
|
|
26
|
+
|
|
27
|
+
## v8
|
|
28
|
+
|
|
29
|
+
This version is skipped to align the release version with MUI X v9.
|
|
30
|
+
|
|
3
31
|
## 7.3.8
|
|
4
32
|
|
|
5
33
|
<!-- generated comparing v7.3.7..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://mui.com/material-ui/icons/#svgicon) components.
|
|
5
|
+
This package contains Google's [Material Icons](https://fonts.google.com/icons?icon.set=Material+Icons) converted to Material UI [SVG Icon](https://next.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 @mui/material @emotion/styled @emotion/react
|
|
16
|
+
npm install @mui/icons-material@next @mui/material@next @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://mui.com/material-ui/icons/#svgicon).
|
|
24
|
-
- Browse the available icons on the [Material Icons page](https://mui.com/material-ui/material-icons/).
|
|
23
|
+
- Learn more about Material UI's [SVG Icon component](https://next.mui.com/material-ui/icons/#svgicon).
|
|
24
|
+
- Browse the available icons on the [Material Icons page](https://next.mui.com/material-ui/material-icons/).
|
|
25
25
|
|
|
26
26
|
## Contributing
|
|
27
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/icons-material",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0-alpha.0",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "Material Design icons distributed as SVG React components.",
|
|
6
6
|
"main": "index.js",
|
|
@@ -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": "
|
|
35
|
+
"@mui/material": "9.0.0-alpha.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependenciesMeta": {
|
|
38
38
|
"@types/react": {
|