@mui/icons-material 6.4.8 → 6.4.9
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/README.md +6 -6
- package/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 6.4.9
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v6.4.8..v6.x -->
|
|
6
|
+
|
|
7
|
+
_Mar 25, 2025_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 7 contributors who made this release possible.
|
|
10
|
+
|
|
11
|
+
### `@mui/material@6.4.9`
|
|
12
|
+
|
|
13
|
+
- [Autocomplete] Fix when `onHighlightChange` is called (@ZeeshanTamboli) (#45635) @ZeeshanTamboli
|
|
14
|
+
- [StepLabel] Add missing root slot (#45607) @sai6855
|
|
15
|
+
- [Switch] Add slots and slotProps (#45628) @siriwatknp
|
|
16
|
+
- [TextField] Add `root` slot (#45616) @sai6855
|
|
17
|
+
- [Tabs] Fix modifier keys + Left/Right Arrow key from being consumed by tab navigation (#45620) @mushfiqbh
|
|
18
|
+
|
|
19
|
+
### `@mui/codemon@6.4.9`
|
|
20
|
+
|
|
21
|
+
- Add missing deprecations in deprecations-all file (#45508) @sai6855
|
|
22
|
+
|
|
23
|
+
### Docs
|
|
24
|
+
|
|
25
|
+
- [docs] Fix grammatical errors in support.md (#45636) @letianpailove
|
|
26
|
+
- [docs] Restore utility component docs from MUI Base to Material UI (#45240) @mapache-salvaje
|
|
27
|
+
|
|
28
|
+
### Core
|
|
29
|
+
|
|
30
|
+
- [core] Prepare v6 branch for v7 stable release (#45668) @DiegoAndai
|
|
31
|
+
|
|
32
|
+
All contributors of this release in alphabetical order: @DiegoAndai, @letianpailove, @mapache-salvaje, @mushfiqbh, @sai6855, @siriwatknp, @ZeeshanTamboli
|
|
33
|
+
|
|
3
34
|
## 6.4.8
|
|
4
35
|
|
|
5
36
|
<!-- generated comparing v6.4.7..v6.x -->
|
package/README.md
CHANGED
|
@@ -8,20 +8,20 @@ This package contains Google's [Material Icons](https://fonts.google.com/icons?i
|
|
|
8
8
|
|
|
9
9
|
The Material Icons package depends on Material UI—install both with the following command:
|
|
10
10
|
|
|
11
|
-
<!-- #
|
|
11
|
+
<!-- #npm-tag-reference -->
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npm install @mui/icons-material @mui/material @emotion/styled @emotion/react
|
|
14
|
+
npm install @mui/icons-material@^6.0.0 @mui/material@^6.0.0 @emotion/styled @emotion/react
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
If you wish to use the latest version, remove the `@^6.0.0` suffix.
|
|
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://v6.mui.com/material-ui/icons/#svgicon).
|
|
24
|
+
- Browse the available icons on the [Material Icons page](https://v6.mui.com/material-ui/material-icons/).
|
|
25
25
|
|
|
26
26
|
## Contributing
|
|
27
27
|
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/icons-material",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.9",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "Material Design icons distributed as SVG React components.",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
35
35
|
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
36
|
-
"@mui/material": "^6.4.
|
|
36
|
+
"@mui/material": "^6.4.9"
|
|
37
37
|
},
|
|
38
38
|
"peerDependenciesMeta": {
|
|
39
39
|
"@types/react": {
|