@mui/icons-material 7.3.9 → 7.3.10
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 +47 -0
- package/README.md +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 7.3.10
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v7.3.9..v7.x -->
|
|
6
|
+
|
|
7
|
+
_Apr 8, 2026_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 15 contributors who made this release possible. A few highlights ✨:
|
|
10
|
+
|
|
11
|
+
- 📖 Added the Menubar component page to the docs.
|
|
12
|
+
|
|
13
|
+
### `@mui/material@7.3.10`
|
|
14
|
+
|
|
15
|
+
- [alert][dialog] Accessibility improvements (#48161) @silviuaavram
|
|
16
|
+
- [autocomplete] Add `root` slot (#47916) @GerardasB
|
|
17
|
+
- [autocomplete] Fix helper text focusing input when clicked (#48162) @mj12albert
|
|
18
|
+
- [autocomplete] Fix popup reopening on window focus regain with openOnFocus (#47914) @aman44444
|
|
19
|
+
- [autocomplete] Optimize selected option lookup (#48027) @anchmelev
|
|
20
|
+
- [autocomplete] Support full slots for clearIndicator and popupIndicator (#47913) @silviuaavram
|
|
21
|
+
- [button-base] Fix native button detection (#47994) @mj12albert
|
|
22
|
+
- [input] Fix high contrast cutoff on first character (#48160) @silviuaavram
|
|
23
|
+
- [list item text][card header] Revert cleanup of duplicated CSS rules (#47938) @sai6855
|
|
24
|
+
- [popper] Add missing classes export (#48033) @mj12albert
|
|
25
|
+
- [select] Fix focus visible always set on menu item (#48022) @silviuaavram
|
|
26
|
+
- [slider] Accept readonly array for the value prop (#47961) @pcorpet
|
|
27
|
+
- [switch] Add border to make it visible in high contrast mode (#48210) @silviuaavram
|
|
28
|
+
- [theme] Do not create channel tokens for custom colors when `nativeColor` is used (#48144) @ZeeshanTamboli
|
|
29
|
+
- [transitions] Performance improvements & misc fixes (#48217) @mj12albert
|
|
30
|
+
|
|
31
|
+
### Docs
|
|
32
|
+
|
|
33
|
+
- [codemod] Add v7 migration docs for deprecated Autocomplete APIs and Autocomplete codemod (#47954) @ZeeshanTamboli
|
|
34
|
+
- [menubar] Add Menubar component page (#47942) @siriwatknp
|
|
35
|
+
- [progress] Label all demo components (#48168) @mj12albert
|
|
36
|
+
- [system] Update `styled` API docs for easier understanding (#47969) @olivier-lxo
|
|
37
|
+
- Fix the dark mode footer row shadow for the Data Grid on the advanced components page (#48152) @arminmeh
|
|
38
|
+
- Fix MUI X redirects (#47917) @cherniavskii
|
|
39
|
+
- Use direct palette vars in Tailwind v4 snippet (#47955) @Ahmad-Alaziz
|
|
40
|
+
|
|
41
|
+
### Core
|
|
42
|
+
|
|
43
|
+
- [blog] Blogpost for upcoming price changes for MUI X (#47820) @DanailH
|
|
44
|
+
- [blog] Update the 2026 price changes blogpost (#47944) @DanailH
|
|
45
|
+
- [code-infra] Add pkg-pr-new as dev dependency (#48023) @silviuaavram
|
|
46
|
+
- [docs-infra] Update Release Instructions and Search Index v7 (#48109) @dav-is
|
|
47
|
+
|
|
48
|
+
All contributors of this release in alphabetical order: @Ahmad-Alaziz, @aman44444, @anchmelev, @arminmeh, @cherniavskii, @DanailH, @dav-is, @GerardasB, @mj12albert, @olivier-lxo, @pcorpet, @sai6855, @silviuaavram, @siriwatknp, @ZeeshanTamboli
|
|
49
|
+
|
|
3
50
|
## 7.3.9
|
|
4
51
|
|
|
5
52
|
<!-- generated comparing v7.3.8..v7.x -->
|
package/README.md
CHANGED
|
@@ -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@^7.0.0 @mui/material@^7.0.0 @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://v7.mui.com/material-ui/icons/#svgicon).
|
|
24
|
+
- Browse the available icons on the [Material Icons page](https://v7.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": "7.3.
|
|
3
|
+
"version": "7.3.10",
|
|
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": "^7.3.
|
|
35
|
+
"@mui/material": "^7.3.10"
|
|
36
36
|
},
|
|
37
37
|
"peerDependenciesMeta": {
|
|
38
38
|
"@types/react": {
|