@mui/icons-material 6.1.8 → 6.1.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 +48 -2
- package/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 6.1.9
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v6.1.8..master -->
|
|
6
|
+
|
|
7
|
+
_Nov 27, 2024_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 8 contributors who made this release possible.
|
|
10
|
+
|
|
11
|
+
### `@mui/material@6.1.9`
|
|
12
|
+
|
|
13
|
+
- [Select] Omit `placeholder` from props (#44502) @Juneezee
|
|
14
|
+
- [Grid2] Add container class to `Grid2Classes` (#44562) @sai6855
|
|
15
|
+
|
|
16
|
+
### `@mui/system@6.1.9`
|
|
17
|
+
|
|
18
|
+
- Add ThemeProvider `noSsr` to prevent double rendering (#44451) @siriwatknp
|
|
19
|
+
|
|
20
|
+
### `@mui/codemod@6.1.9`
|
|
21
|
+
|
|
22
|
+
- [codemod] Fix handling of computed `paragraph` props (#44195) @joshkel
|
|
23
|
+
|
|
24
|
+
### `@mui/material-pigment-css@6.1.9`
|
|
25
|
+
|
|
26
|
+
- Make @pigment-css/react as peer dependency (#44498) @brijeshb42
|
|
27
|
+
|
|
28
|
+
### Docs
|
|
29
|
+
|
|
30
|
+
- [material-ui] Add missing required dependencies in dashboard template README (#44476) @mesqueeb
|
|
31
|
+
- [material-ui] Add missing Roboto import to Next.js integration docs (#44462) @StaceyD22
|
|
32
|
+
- [material-ui][Dialog] Fix padding in SimpleDialog demo (#44467) @oliviertassinari
|
|
33
|
+
- Fix template page issues (#44466) @oliviertassinari
|
|
34
|
+
- [examples] Add dark mode example for Material UI + Pigment CSS (#44480) @mnajdova
|
|
35
|
+
|
|
36
|
+
### Core
|
|
37
|
+
|
|
38
|
+
- Remove TODO line in the changelog (#44484) @mnajdova
|
|
39
|
+
- Polish image display (418e888) @oliviertassinari
|
|
40
|
+
- [core-infra] Add no-relative-packages (#44489) @oliviertassinari
|
|
41
|
+
- [docs-infra] Support CSS variables API info (#44559) @mnajdova
|
|
42
|
+
- [docs-infra] Fix display when ad-block triggers (#44567) @oliviertassinari
|
|
43
|
+
- [docs-infra] Improve locator finding using visible option (#44541) @siriwatknp
|
|
44
|
+
- [docs-infra] Correctly flatten the pages tree (#44514) @oliviertassinari
|
|
45
|
+
- [docs-infra] Fix Sponsor design regression (#44515) @oliviertassinari
|
|
46
|
+
- [test] Remove React.ReactElement<any> from describeConformance.tsx (#44318) @sai6855
|
|
47
|
+
- [test] Do not enforce the presence of `ownerState.className` in `describeConformance` (#44479) @flaviendelangle
|
|
48
|
+
|
|
49
|
+
All contributors of this release in alphabetical order: @brijeshb42, @flaviendelangle, @joshkel, @Juneezee, @mesqueeb, @mnajdova, @oliviertassinari, @sai6855, @siriwatknp, @StaceyD22
|
|
50
|
+
|
|
3
51
|
## v6.1.8
|
|
4
52
|
|
|
5
53
|
<!-- generated comparing v6.1.7..master -->
|
|
@@ -8,8 +56,6 @@ _Nov 20, 2024_
|
|
|
8
56
|
|
|
9
57
|
A big thanks to the 10 contributors who made this release possible.
|
|
10
58
|
|
|
11
|
-
TODO INSERT HIGHLIGHTS
|
|
12
|
-
|
|
13
59
|
### `@mui/material@6.1.8`
|
|
14
60
|
|
|
15
61
|
- [Autocomplete] Use `ul` element for the listbox (#44422) @DiegoAndai
|
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.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.1.
|
|
36
|
+
"@mui/material": "^6.1.9"
|
|
37
37
|
},
|
|
38
38
|
"peerDependenciesMeta": {
|
|
39
39
|
"@types/react": {
|