@mui/private-theming 5.14.9 → 5.14.10
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 +55 -0
- package/index.js +1 -1
- package/legacy/index.js +1 -1
- package/modern/index.js +1 -1
- package/node/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,60 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 5.14.10
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v5.14.9..master -->
|
|
6
|
+
|
|
7
|
+
_Sep 18, 2023_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 16 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
|
|
10
|
+
|
|
11
|
+
### `@mui/material@5.14.10`
|
|
12
|
+
|
|
13
|
+
- ​<!-- 20 -->[Chip] Add cursor CSS property reset (#38984) @DiegoAndai
|
|
14
|
+
|
|
15
|
+
### `@mui/utils@5.14.10`
|
|
16
|
+
|
|
17
|
+
- ​<!-- 05 -->[utils] Move @types/prop-types back to dependencies (#39030) @Methuselah96
|
|
18
|
+
|
|
19
|
+
### `@mui/base@5.0.0-beta.16`
|
|
20
|
+
|
|
21
|
+
- ​<!-- 24 -->[NumberInput][base-ui] Warn when changing control mode with `useControlled` (#38757) @sai6855
|
|
22
|
+
- ​<!-- 23 -->[Select][base-ui] Fix Select button layout shift, add placeholder prop (#38796) @mj12albert
|
|
23
|
+
- ​<!-- 22 -->[useList][base-ui] Accept arbitrary external props and forward to root (#38848) @mj12albert
|
|
24
|
+
- ​<!-- 25 -->[Autocomplete][base-ui] Added ref to getInputProps return value (#38919) @DarhkVoyd
|
|
25
|
+
|
|
26
|
+
### `@mui/joy@5.0.0-beta.7`
|
|
27
|
+
|
|
28
|
+
- ​<!-- 26 -->[AccordionGroup][joy-ui] Fix console warning when using custom color (#38950) @sai6855
|
|
29
|
+
- ​<!-- 07 -->[GlobalStyles][joy-ui] Ensure compatibility with RSC (#38955) @mateuseap
|
|
30
|
+
|
|
31
|
+
### Docs
|
|
32
|
+
|
|
33
|
+
- ​<!-- 21 -->[docs][base] Add Tailwind CSS + plain CSS demo on the NumberInput page (#38928) @alisasanib
|
|
34
|
+
- ​<!-- 13 -->[docs][Dialog] Add non-modal dialog docs & demo (#38684) @mnajdova
|
|
35
|
+
- ​<!-- 12 -->[docs] Fix number input wrong demo @oliviertassinari
|
|
36
|
+
- ​<!-- 11 -->[docs] Exclude joy-ui LinearProgressCountup from visual regression (#38969) @siriwatknp
|
|
37
|
+
- ​<!-- 09 -->[docs][joy-ui] Revise the Overview page (#38842) @danilo-leal
|
|
38
|
+
- ​<!-- 08 -->[docs][material-ui][Pagination] Add `TablePagination` to the API components list (#38486) @MonstraG
|
|
39
|
+
|
|
40
|
+
### Core
|
|
41
|
+
|
|
42
|
+
- ​<!-- 19 -->[core] Add more context about useEventCallback @oliviertassinari
|
|
43
|
+
- ​<!-- 18 -->[core] Allow deeper import of @mui/utils (#38806) @oliviertassinari
|
|
44
|
+
- ​<!-- 17 -->[core] Remove react-dom from @mui/utils peerDependencies (#38974) @michaldudak
|
|
45
|
+
- ​<!-- 16 -->[core] Remove react from styled-engine dependencies (#38971) @michaldudak
|
|
46
|
+
- ​<!-- 15 -->[core] Fix image loading bug on Safari @oliviertassinari
|
|
47
|
+
- ​<!-- 14 -->[core] Fix bundle size upload to S3 job (#38956) @Janpot
|
|
48
|
+
- ​<!-- 20 -->[core] Move eslint to peer dependencies of eslint-plugin-material-ui (#39033) @michaldudak
|
|
49
|
+
- ​<!-- 10 -->[docs-infra] Display markdown lists correctly in docs for props description (#38973) @ZeeshanTamboli
|
|
50
|
+
- ​<!-- 04 -->[website] Improve lighthouse score (#39011) @oliviertassinari
|
|
51
|
+
- ​<!-- 03 -->[website] Fix lighthouse issues @oliviertassinari
|
|
52
|
+
- ​<!-- 02 -->[website] Create the `InfoCard` component (#38987) @danilo-leal
|
|
53
|
+
- ​<!-- 01 -->[website] Small tweaks for performance @oliviertassinari
|
|
54
|
+
- ​<!-- 06 -->[zero][next] Setup nextjs plugin package (#38852) @brijeshb42
|
|
55
|
+
|
|
56
|
+
All contributors of this release in alphabetical order: @alisasanib, @brijeshb42, @danilo-leal, @DarhkVoyd, @DiegoAndai, @Janpot, @mateuseap, @Methuselah96, @michaldudak, @mj12albert, @mnajdova, @MonstraG, @oliviertassinari, @sai6855, @siriwatknp, @ZeeshanTamboli
|
|
57
|
+
|
|
3
58
|
## 5.14.9
|
|
4
59
|
|
|
5
60
|
<!-- generated comparing v5.14.8..master -->
|
package/index.js
CHANGED
package/legacy/index.js
CHANGED
package/modern/index.js
CHANGED
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/private-theming",
|
|
3
|
-
"version": "5.14.
|
|
3
|
+
"version": "5.14.10",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "Private - The React theme context to be shared between `@mui/styles` and `@mui/material`.",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@babel/runtime": "^7.22.15",
|
|
30
|
-
"@mui/utils": "^5.14.
|
|
30
|
+
"@mui/utils": "^5.14.10",
|
|
31
31
|
"prop-types": "^15.8.1"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|