@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.
Files changed (3) hide show
  1. package/CHANGELOG.md +98 -0
  2. package/index.js +1 -1
  3. 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
+ - &#8203;<!-- 42 -->[Accordion] Deprecate \*Props props and classes for v6 (#40418) @DiegoAndai
17
+ - &#8203;<!-- 41 -->[Alert] Update TypeScript types to allow color override types to be added to `iconMapping` and `severity` props (#40551) @2metres
18
+ - &#8203;<!-- 27 -->[Dialog] Remove deprecated onBackdropClick from Dialog tests (#40505) @sai6855
19
+ - &#8203;<!-- 26 -->[Divider] Deprecate props and classes for v6 (#40563) @sai6855
20
+
21
+ ### `@mui/material-next@6.0.0-alpha.118`
22
+
23
+ - &#8203;<!-- 36 -->[ButtonGroup] Apply MD3 style to `ButtonGroup` (#40124) @lhilgert9
24
+
25
+ ### `@mui/base@5.0.0-beta.32`
26
+
27
+ #### Breaking changes
28
+
29
+ - &#8203;<!-- 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
+ - &#8203;<!-- 39 -->[Select] Fix screen-reader CSS to avoid body scrollbar (#40599) @brijeshb42
41
+ - &#8203;<!-- 38 -->[Switch] Add border-box to demos (#40638) @zanivan
42
+
43
+ ### `@mui/joy@5.0.0-beta.23`
44
+
45
+ - &#8203;<!-- 11 -->[ModalDialog] Fix ModalDialog layout prop override (#40512) @maakcode
46
+ - &#8203;<!-- 10 -->[RadioGroup] Allow zero number as a value (#40344) @aacevski
47
+
48
+ ### `@mui/codemod@5.15.5`
49
+
50
+ - &#8203;<!-- 31 -->Allow `json` files to be transformed (#40536) @ZeeshanTamboli
51
+
52
+ ### `@mui/lab@5.0.0-alpha.161`
53
+
54
+ - &#8203;<!-- 09 -->Update `@mui/material` peer dependency version (#40528) @ZeeshanTamboli
55
+
56
+ ### `@mui/material-nextjs@5.15.5`
57
+
58
+ - &#8203;<!-- 08 -->Fix release script (#40519) @petrovmiroslav
59
+ - &#8203;<!-- 07 -->Support Nonces in the App Router Provider (#40269) @josh-feldman
60
+ - &#8203;<!-- 06 -->Polish @mui/material-nextjs (#40473) @oliviertassinari
61
+
62
+ ### `@mui/system@5.15.5`
63
+
64
+ - &#8203;<!-- 05 -->Fix import path for @mui/system in vite apps (#40490) @brijeshb42
65
+ - &#8203;<!-- 02 -->Fix css vars generation and simplify the code (#40530) @siriwatknp
66
+ - &#8203;<!-- 01 -->Identify zero runtime styled path (#40555) @brijeshb42
67
+
68
+ ### Docs
69
+
70
+ - &#8203;<!-- 35 -->[joy-ui][Card] Fix text alignment in horizontal aligned card demo (#40562) @ZeeshanTamboli
71
+ - &#8203;<!-- 25 -->Improve instructions about peer dependencies (#40621) @danilo-leal
72
+ - &#8203;<!-- 24 -->Solve page description length @oliviertassinari
73
+ - &#8203;<!-- 23 -->Fix MUI Treasury links (#40561) @siriwatknp
74
+ - &#8203;<!-- 17 -->[material-ui] Update <ListItem button/> to ListItemButton in demos (#40564) @sai6855
75
+ - &#8203;<!-- 16 -->[material-ui] Revise the Snackbar page (#39298) @danilo-leal
76
+ - &#8203;<!-- 15 -->[material-ui] Sharpen Material 3 copy on demo pages (#40546) @samuelsycamore
77
+ - &#8203;<!-- 14 -->[material-ui] Fix typo on Next.js integration guide (#40538) @zanivan
78
+ - &#8203;<!-- 13 -->[material-ui][Snackbar] Remove unused `State` interface from Consecutive Snackbars demo (#40410)
79
+ @zinoroman
80
+ - &#8203;<!-- 12 -->[website] Resolve broken links reported by `docs:link-check` (#40547) @samuelsycamore
81
+
82
+ ### Core
83
+
84
+ - &#8203;<!-- 37 -->[blog] Fix 404 link to MUI Treasury @oliviertassinari
85
+ - &#8203;<!-- 34 -->[code-infra] Add `run` command to deploy docs (#40513) @siriwatknp
86
+ - &#8203;<!-- 32 -->[core] Update the lockfile (#40628) @michaldudak
87
+ - &#8203;<!-- 31 -->[core] Remove dead code and follow standard @oliviertassinari
88
+ - &#8203;<!-- 30 -->[core] Simplify server detection (#40471) @oliviertassinari
89
+ - &#8203;<!-- 29 -->[core] Sync playwright cache between MUI X and Material UI (#40475) @oliviertassinari
90
+ - &#8203;<!-- 28 -->[dependencies] Bump tough-cookie (#40437) @michaldudak
91
+ - &#8203;<!-- 22 -->[docs-infra] Enforce brand name rules (#40525) @oliviertassinari
92
+ - &#8203;<!-- 21 -->[docs-infra] Minimize ad layout shift on mobile (#40582) @oliviertassinari
93
+ - &#8203;<!-- 20 -->[docs-infra] Improve API page deprecation info (#40440) @DiegoAndai
94
+ - &#8203;<!-- 19 -->[docs-infra] Remove old tocs banners (#40537) @oliviertassinari
95
+ - &#8203;<!-- 18 -->[docs-infra] Remove dead code aria-label sponsors (#40526) @oliviertassinari
96
+ - &#8203;<!-- 04 -->[utils] Centralize clamp implementation in utils (#40267) @Kamino0
97
+ - &#8203;<!-- 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
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/icons-material v5.15.4
2
+ * @mui/icons-material v5.15.5
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/icons-material",
3
- "version": "5.15.4",
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.7"
31
+ "@babel/runtime": "^7.23.8"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "@mui/material": "^5.0.0",