@mui/icons-material 5.15.21 → 5.16.1
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 +63 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,68 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## v5.16.1
|
|
4
|
+
|
|
5
|
+
_Jul 11, 2024_
|
|
6
|
+
|
|
7
|
+
A big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
|
|
8
|
+
|
|
9
|
+
- ⚛️ All packages, including Material UI, are now compatible with React 18.3.1
|
|
10
|
+
|
|
11
|
+
### `@mui/material@5.16.1`
|
|
12
|
+
|
|
13
|
+
- [AppBar] Fix inherit color is inconsistent between ThemeProvider and CssVarsProvider (#42713) @ZeeshanTamboli
|
|
14
|
+
|
|
15
|
+
### `@mui/joy@5.0.0-beta.48`
|
|
16
|
+
|
|
17
|
+
- [Autocomplete] Fix React spread key warning (#42856) @aarongarciah
|
|
18
|
+
|
|
19
|
+
### Docs
|
|
20
|
+
|
|
21
|
+
- [material-ui] Fix React 18.3 key spread warnings in Autocomplete demos (#42854) @aarongarciah
|
|
22
|
+
- [material-ui] Fix type error in virtualized table demo (#42852) @aarongarciah
|
|
23
|
+
- Fix typos (@omahs) (#42888) @omahs
|
|
24
|
+
- Fix 301 @oliviertassinari
|
|
25
|
+
|
|
26
|
+
### Core
|
|
27
|
+
|
|
28
|
+
- [core] Bump React to 18.3.1 (#42846) @aarongarciah
|
|
29
|
+
- [core] Remove react-test-renderer (#42853) @aarongarciah
|
|
30
|
+
- [core] Replace enzyme in describeConformance (#42847) @aarongarciah
|
|
31
|
+
- [test] Remove enzyme (#42850) @aarongarciah
|
|
32
|
+
- [test] Remove createMount test util (#42849) @aarongarciah
|
|
33
|
+
- [base-ui] Fix React spread key warning in test (#42855) @aarongarciah
|
|
34
|
+
- [styles][withStyles] Expect React defaultProps warning in test (#42752) (#42851) @aarongarciah
|
|
35
|
+
|
|
36
|
+
All contributors of this release in alphabetical order: @aarongarciah, @oliviertassinari, @omahs, @ZeeshanTamboli
|
|
37
|
+
|
|
38
|
+
## v5.16.0
|
|
39
|
+
|
|
40
|
+
<!-- generated comparing v5.15.21..master -->
|
|
41
|
+
|
|
42
|
+
_Jul 5, 2024_
|
|
43
|
+
|
|
44
|
+
A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
|
|
45
|
+
|
|
46
|
+
- 🚀 Added `InitColorSchemeScript` for Next.js App Router (#42829) @siriwatknp
|
|
47
|
+
|
|
48
|
+
### `@mui/material@5.16.0`
|
|
49
|
+
|
|
50
|
+
- [Alert] Add ability to override slot props (@alexey-kozlenkov) (#42808) @alexey-kozlenkov
|
|
51
|
+
- Add `InitColorSchemeScript` for Next.js App Router (#42829) @siriwatknp
|
|
52
|
+
- Add `DefaultPropsProvider` (#42820) @siriwatknp
|
|
53
|
+
- Support `CssVarsTheme` in `responsiveFontSizes` return type (@jxdp) (#42806) @jxdp
|
|
54
|
+
- Remove warning from `getInitColorSchemeScript` (#42838) @siriwatknp
|
|
55
|
+
|
|
56
|
+
### Docs
|
|
57
|
+
|
|
58
|
+
- [docs] Fix 301 MDN redirections @oliviertassinari
|
|
59
|
+
|
|
60
|
+
### Core
|
|
61
|
+
|
|
62
|
+
- [mui-utils][test] Remove usages of deprecated react-dom APIs (@aarongarciah) (#42813) @aarongarciah
|
|
63
|
+
|
|
64
|
+
All contributors of this release in alphabetical order: @aarongarciah, @alexey-kozlenkov, @jxdp, @oliviertassinari, @siriwatknp
|
|
65
|
+
|
|
3
66
|
## v5.15.21
|
|
4
67
|
|
|
5
68
|
<!-- generated comparing v5.15.20..master -->
|
package/index.js
CHANGED