@mui/icons-material 6.1.10 → 6.2.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 +37 -2
- package/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,47 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 6.2.0
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v6.1.10..master -->
|
|
6
|
+
|
|
7
|
+
_Dec 10, 2024_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
|
|
10
|
+
|
|
11
|
+
- Material UI is now compatible with React 19 (#44672) @DiegoAndai
|
|
12
|
+
- Fixed incorrect `aria-orientation` for vertical sliders. <kbd>ArrowRight</kbd> now increases the value and <kbd>ArrowLeft</kbd> decreases the value in vertical sliders; they were reversed in prior versions. (#44537) @mj12albert
|
|
13
|
+
|
|
14
|
+
### `@mui/material@6.2.0`
|
|
15
|
+
|
|
16
|
+
- [Box] Add missing `component` to `BoxProps` type (#44643) @DiegoAndai
|
|
17
|
+
- [Grid] Fix spacing when using css variables (#44663) @DiegoAndai
|
|
18
|
+
- [ListItemText] Add `slots` and `slotProps` (#44571) @sai6855
|
|
19
|
+
|
|
20
|
+
### Docs
|
|
21
|
+
|
|
22
|
+
- Add Toolpad Core template link (#44415) @bharatkashyap
|
|
23
|
+
|
|
24
|
+
### Core
|
|
25
|
+
|
|
26
|
+
- [docs-infra] Allow custom annotations (#44707) @vladmoroz
|
|
27
|
+
- [Box] Fix `component` prop test (#44651) @DiegoAndai
|
|
28
|
+
- React 19 useRef cleanup (#44704) @DiegoAndai
|
|
29
|
+
- Remove obselete lerna options (#44676) @ZeeshanTamboli
|
|
30
|
+
- Fix Regular Expression Denial of Service (ReDoS) vulnerabilities (#44627) @SuperMaxine
|
|
31
|
+
- Fix number of contributors (#44650) @aarongarciah
|
|
32
|
+
- [docs-infra] Add support for data attributes in the API generation (#44709) @mnajdova
|
|
33
|
+
- [docs-infra] Fix RTL dark mode (#41803) @alexfauquette
|
|
34
|
+
- [Grid] Remove deeply nested imports (#43605) @Janpot
|
|
35
|
+
|
|
36
|
+
All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @bharatkashyap, @DiegoAndai, @Janpot, @mj12albert, @mnajdova, @sai6855, @SuperMaxine, @vladmoroz, @ZeeshanTamboli
|
|
37
|
+
|
|
3
38
|
## 6.1.10
|
|
4
39
|
|
|
5
40
|
<!-- generated comparing v6.1.9..master -->
|
|
6
41
|
|
|
7
42
|
_Dec 3, 2024_
|
|
8
43
|
|
|
9
|
-
A big thanks to the
|
|
44
|
+
A big thanks to the 11 contributors who made this release possible.
|
|
10
45
|
|
|
11
46
|
### `@mui/material@6.1.10`
|
|
12
47
|
|
|
@@ -45,7 +80,7 @@ A big thanks to the 10 contributors who made this release possible.
|
|
|
45
80
|
- [docs-infra] Fix TOC RTL padding regression (#44535) @oliviertassinari
|
|
46
81
|
- [test-utils] Remove leftover React.ReactElement<any> from describeConformance.tsx (#44639) @sai6855
|
|
47
82
|
|
|
48
|
-
All contributors of this release in alphabetical order: @albarv340, @arishoham, @DiegoAndai, @joserodolfofreitas, @MBilalShafi, @mnajdova, @oliviertassinari, @
|
|
83
|
+
All contributors of this release in alphabetical order: @albarv340, @arishoham, @DiegoAndai, @joserodolfofreitas, @MBilalShafi, @mnajdova, @oliviertassinari, @sai6855, @samuelsycamore, @siriwatknp, @ZeeshanTamboli
|
|
49
84
|
|
|
50
85
|
## 6.1.9
|
|
51
86
|
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/icons-material",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.2.0",
|
|
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.
|
|
36
|
+
"@mui/material": "^6.2.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependenciesMeta": {
|
|
39
39
|
"@types/react": {
|