@mui/icons-material 5.15.4 → 5.15.5
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 +98 -0
- package/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,103 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## v5.15.5
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v5.15.4..master -->
|
|
6
|
+
|
|
7
|
+
_Jan 17, 2024_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:
|
|
10
|
+
|
|
11
|
+
- Base UI's CSS class prefix is now `base-` (#40205) @michaldudak
|
|
12
|
+
- Bug fixes, and a lot of improvements to code and docs infra
|
|
13
|
+
|
|
14
|
+
### `@mui/material@5.15.5`
|
|
15
|
+
|
|
16
|
+
- ​<!-- 42 -->[Accordion] Deprecate \*Props props and classes for v6 (#40418) @DiegoAndai
|
|
17
|
+
- ​<!-- 41 -->[Alert] Update TypeScript types to allow color override types to be added to `iconMapping` and `severity` props (#40551) @2metres
|
|
18
|
+
- ​<!-- 27 -->[Dialog] Remove deprecated onBackdropClick from Dialog tests (#40505) @sai6855
|
|
19
|
+
- ​<!-- 26 -->[Divider] Deprecate props and classes for v6 (#40563) @sai6855
|
|
20
|
+
|
|
21
|
+
### `@mui/material-next@6.0.0-alpha.118`
|
|
22
|
+
|
|
23
|
+
- ​<!-- 36 -->[ButtonGroup] Apply MD3 style to `ButtonGroup` (#40124) @lhilgert9
|
|
24
|
+
|
|
25
|
+
### `@mui/base@5.0.0-beta.32`
|
|
26
|
+
|
|
27
|
+
#### Breaking changes
|
|
28
|
+
|
|
29
|
+
- ​<!-- 40 -->Change the CSS class prefix to `base-` (#40205) @michaldudak
|
|
30
|
+
|
|
31
|
+
The class prefix of Base UI components have been changed from `Mui-` to `base-`. This only affects codebases that uses class names verbatim, i.e. not exposed by JS objects such as `buttonClasses`, but as plain strings or in CSS stylesheets (`.MuiButton.root`)
|
|
32
|
+
|
|
33
|
+
To adapt your code to the new pattern:
|
|
34
|
+
|
|
35
|
+
- replace all occurrences of the regex `.Mui([A-Z][A-Za-z]*)-` with `.base-$1-` (so `MuiButton-root` becomes `base-Button-root`, etc.),
|
|
36
|
+
- replace all occurrences of the regex `.Mui-([a-z]*)` with `.base--$1` (so `Mui-disabled` becomes `base--disabled`, etc.).
|
|
37
|
+
|
|
38
|
+
#### Changes
|
|
39
|
+
|
|
40
|
+
- ​<!-- 39 -->[Select] Fix screen-reader CSS to avoid body scrollbar (#40599) @brijeshb42
|
|
41
|
+
- ​<!-- 38 -->[Switch] Add border-box to demos (#40638) @zanivan
|
|
42
|
+
|
|
43
|
+
### `@mui/joy@5.0.0-beta.23`
|
|
44
|
+
|
|
45
|
+
- ​<!-- 11 -->[ModalDialog] Fix ModalDialog layout prop override (#40512) @maakcode
|
|
46
|
+
- ​<!-- 10 -->[RadioGroup] Allow zero number as a value (#40344) @aacevski
|
|
47
|
+
|
|
48
|
+
### `@mui/codemod@5.15.5`
|
|
49
|
+
|
|
50
|
+
- ​<!-- 31 -->Allow `json` files to be transformed (#40536) @ZeeshanTamboli
|
|
51
|
+
|
|
52
|
+
### `@mui/lab@5.0.0-alpha.161`
|
|
53
|
+
|
|
54
|
+
- ​<!-- 09 -->Update `@mui/material` peer dependency version (#40528) @ZeeshanTamboli
|
|
55
|
+
|
|
56
|
+
### `@mui/material-nextjs@5.15.5`
|
|
57
|
+
|
|
58
|
+
- ​<!-- 08 -->Fix release script (#40519) @petrovmiroslav
|
|
59
|
+
- ​<!-- 07 -->Support Nonces in the App Router Provider (#40269) @josh-feldman
|
|
60
|
+
- ​<!-- 06 -->Polish @mui/material-nextjs (#40473) @oliviertassinari
|
|
61
|
+
|
|
62
|
+
### `@mui/system@5.15.5`
|
|
63
|
+
|
|
64
|
+
- ​<!-- 05 -->Fix import path for @mui/system in vite apps (#40490) @brijeshb42
|
|
65
|
+
- ​<!-- 02 -->Fix css vars generation and simplify the code (#40530) @siriwatknp
|
|
66
|
+
- ​<!-- 01 -->Identify zero runtime styled path (#40555) @brijeshb42
|
|
67
|
+
|
|
68
|
+
### Docs
|
|
69
|
+
|
|
70
|
+
- ​<!-- 35 -->[joy-ui][Card] Fix text alignment in horizontal aligned card demo (#40562) @ZeeshanTamboli
|
|
71
|
+
- ​<!-- 25 -->Improve instructions about peer dependencies (#40621) @danilo-leal
|
|
72
|
+
- ​<!-- 24 -->Solve page description length @oliviertassinari
|
|
73
|
+
- ​<!-- 23 -->Fix MUI Treasury links (#40561) @siriwatknp
|
|
74
|
+
- ​<!-- 17 -->[material-ui] Update <ListItem button/> to ListItemButton in demos (#40564) @sai6855
|
|
75
|
+
- ​<!-- 16 -->[material-ui] Revise the Snackbar page (#39298) @danilo-leal
|
|
76
|
+
- ​<!-- 15 -->[material-ui] Sharpen Material 3 copy on demo pages (#40546) @samuelsycamore
|
|
77
|
+
- ​<!-- 14 -->[material-ui] Fix typo on Next.js integration guide (#40538) @zanivan
|
|
78
|
+
- ​<!-- 13 -->[material-ui][Snackbar] Remove unused `State` interface from Consecutive Snackbars demo (#40410)
|
|
79
|
+
@zinoroman
|
|
80
|
+
- ​<!-- 12 -->[website] Resolve broken links reported by `docs:link-check` (#40547) @samuelsycamore
|
|
81
|
+
|
|
82
|
+
### Core
|
|
83
|
+
|
|
84
|
+
- ​<!-- 37 -->[blog] Fix 404 link to MUI Treasury @oliviertassinari
|
|
85
|
+
- ​<!-- 34 -->[code-infra] Add `run` command to deploy docs (#40513) @siriwatknp
|
|
86
|
+
- ​<!-- 32 -->[core] Update the lockfile (#40628) @michaldudak
|
|
87
|
+
- ​<!-- 31 -->[core] Remove dead code and follow standard @oliviertassinari
|
|
88
|
+
- ​<!-- 30 -->[core] Simplify server detection (#40471) @oliviertassinari
|
|
89
|
+
- ​<!-- 29 -->[core] Sync playwright cache between MUI X and Material UI (#40475) @oliviertassinari
|
|
90
|
+
- ​<!-- 28 -->[dependencies] Bump tough-cookie (#40437) @michaldudak
|
|
91
|
+
- ​<!-- 22 -->[docs-infra] Enforce brand name rules (#40525) @oliviertassinari
|
|
92
|
+
- ​<!-- 21 -->[docs-infra] Minimize ad layout shift on mobile (#40582) @oliviertassinari
|
|
93
|
+
- ​<!-- 20 -->[docs-infra] Improve API page deprecation info (#40440) @DiegoAndai
|
|
94
|
+
- ​<!-- 19 -->[docs-infra] Remove old tocs banners (#40537) @oliviertassinari
|
|
95
|
+
- ​<!-- 18 -->[docs-infra] Remove dead code aria-label sponsors (#40526) @oliviertassinari
|
|
96
|
+
- ​<!-- 04 -->[utils] Centralize clamp implementation in utils (#40267) @Kamino0
|
|
97
|
+
- ​<!-- 03 -->[website] Polish the Base UI page demos (#40504) @danilo-leal
|
|
98
|
+
|
|
99
|
+
All contributors of this release in alphabetical order: @2metres, @aacevski, @brijeshb42, @danilo-leal, @DiegoAndai, @josh-feldman, @Kamino0, @lhilgert9, @maakcode, @michaldudak, @oliviertassinari, @petrovmiroslav, @sai6855, @samuelsycamore, @siriwatknp, @zanivan, @ZeeshanTamboli, @zinoroman
|
|
100
|
+
|
|
3
101
|
## 5.15.4
|
|
4
102
|
|
|
5
103
|
<!-- generated comparing v5.15.3..master -->
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/icons-material",
|
|
3
|
-
"version": "5.15.
|
|
3
|
+
"version": "5.15.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "Material Design icons distributed as SVG React components.",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"url": "https://opencollective.com/mui-org"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@babel/runtime": "^7.23.
|
|
31
|
+
"@babel/runtime": "^7.23.8"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@mui/material": "^5.0.0",
|