@mui/icons-material 6.1.9 → 6.1.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/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 6.1.10
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v6.1.9..master -->
|
|
6
|
+
|
|
7
|
+
_Dec 3, 2024_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 10 contributors who made this release possible.
|
|
10
|
+
|
|
11
|
+
### `@mui/material@6.1.10`
|
|
12
|
+
|
|
13
|
+
- [Avatar] Fix `slotProps.img` not spread to hook (#44536) @siriwatknp
|
|
14
|
+
- [FilledInput] Use `slotProps` instead of `componentsProps` (#44552) @siriwatknp
|
|
15
|
+
- [Grid2] Fix theme scoping error (#44599) @siriwatknp
|
|
16
|
+
- [Grid2] Add container styles from styleOverrides (#44598) @sai6855
|
|
17
|
+
- Skip `tonalOffset` from setting color channel (#44585) @siriwatknp
|
|
18
|
+
- Remove few more React.ReactElement<any> types (#44290) @sai6855
|
|
19
|
+
- [Tabs] Fix `ScrollbarSize` ref being overriden (#44593) @DiegoAndai
|
|
20
|
+
- [Select][TextField] Fix screen reader from saying `&ZeroWidthSpace` (#44631) @arishoham
|
|
21
|
+
|
|
22
|
+
### `@mui/system@6.1.10`
|
|
23
|
+
|
|
24
|
+
- [ThemeProvider] Optimize `theme` changes when enabling CSS theme variables (#44588) @siriwatknp
|
|
25
|
+
|
|
26
|
+
### Docs
|
|
27
|
+
|
|
28
|
+
- Notification for the MUI X v8 alpha zero announcement blog post (#44629) @joserodolfofreitas
|
|
29
|
+
- Bump React Router to ^7.0.1 (#44531) @oliviertassinari
|
|
30
|
+
- [material-ui] Replace testid with id in migration guide (#44636) @sai6855
|
|
31
|
+
- [material-ui][TextField] Update usage of `InputLabelProps` in docs (#44634) @sai6855
|
|
32
|
+
- [material-ui][ListItem] Add missing diffs in migration guide (#44638) @sai6855
|
|
33
|
+
- [examples] Use Next.js 14 on examples (#44486) @DiegoAndai
|
|
34
|
+
- Update links and sidebar nav for Base UI components in Material UI (#44581) @samuelsycamore
|
|
35
|
+
|
|
36
|
+
### Core
|
|
37
|
+
|
|
38
|
+
- Remove `getSlotOwnerState` from `useSlot` util (#44403) @ZeeshanTamboli
|
|
39
|
+
- Extract useRippleHandler outside of ButtonBase (#44591) @albarv340
|
|
40
|
+
- Update eslint config (#44586) @MBilalShafi
|
|
41
|
+
- [core-infra] Remove useless fragments (#44516) @oliviertassinari
|
|
42
|
+
- [docs-infra] Fix Banner CLS (#44632) @oliviertassinari
|
|
43
|
+
- [docs-infra] Change CSS vars generation to be extracted from Enum (#44587) @mnajdova
|
|
44
|
+
- [docs-infra] Automatically hide Black Friday banner (#44630) @oliviertassinari
|
|
45
|
+
- [docs-infra] Fix TOC RTL padding regression (#44535) @oliviertassinari
|
|
46
|
+
- [test-utils] Remove leftover React.ReactElement<any> from describeConformance.tsx (#44639) @sai6855
|
|
47
|
+
|
|
48
|
+
All contributors of this release in alphabetical order: @albarv340, @arishoham, @DiegoAndai, @joserodolfofreitas, @MBilalShafi, @mnajdova, @oliviertassinari, @renovate[bot], @sai6855, @samuelsycamore, @siriwatknp, @ZeeshanTamboli
|
|
49
|
+
|
|
3
50
|
## 6.1.9
|
|
4
51
|
|
|
5
52
|
<!-- generated comparing v6.1.8..master -->
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/icons-material",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.10",
|
|
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.1.
|
|
36
|
+
"@mui/material": "^6.1.10"
|
|
37
37
|
},
|
|
38
38
|
"peerDependenciesMeta": {
|
|
39
39
|
"@types/react": {
|