@mui/styled-engine 5.10.4 → 5.10.6
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 +121 -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,126 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 5.10.6
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v5.10.5..master -->
|
|
6
|
+
|
|
7
|
+
_Sep 19, 2022_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 11 contributors who made this release possible.
|
|
10
|
+
This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
|
|
11
|
+
|
|
12
|
+
### `@mui/material@5.10.6`
|
|
13
|
+
|
|
14
|
+
- [TextField] Fix conflict with `Bootstrap` even when label is not defined (#34343) @ZeeshanTamboli
|
|
15
|
+
|
|
16
|
+
### `@mui/joy@5.0.0-alpha.46`
|
|
17
|
+
|
|
18
|
+
#### Breaking changes
|
|
19
|
+
|
|
20
|
+
- [button][joy] Replace `start/endIcon` prop with `start/endDecorator` (#34288) @hbjORbj
|
|
21
|
+
|
|
22
|
+
**BREAKING CHANGE**: replace `start/endIcon` with `start/endDecorator`.
|
|
23
|
+
|
|
24
|
+
```jsx
|
|
25
|
+
// before
|
|
26
|
+
<Button startIcon={...} endIcon={...} />
|
|
27
|
+
|
|
28
|
+
// after
|
|
29
|
+
<Button startDecorator={...} endDecorator={...} />
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
#### Changes
|
|
33
|
+
|
|
34
|
+
- [Joy] Adjust the `Input` and `Textarea` styles (#34281) @siriwatknp
|
|
35
|
+
- [menu][joy] Set disablePortal default to false (#34283) @tomasz-sodzawiczny
|
|
36
|
+
|
|
37
|
+
### `@mui/base@5.0.0-alpha.98`
|
|
38
|
+
|
|
39
|
+
#### Breaking changes
|
|
40
|
+
|
|
41
|
+
- [Select][base] Add event parameter to the onChange callback (#34158) @michaldudak
|
|
42
|
+
|
|
43
|
+
The SelectUnstyled and MultiSelectUnstyled `onChange` callbacks did not have event as the first parameter, leading to inconsistency with other components and native HTML elements.
|
|
44
|
+
This PR adds the event parameter as the first one and moves the newly selected value to the second position. Because of this, it's a breaking change.
|
|
45
|
+
This also affects Select from Joy UI.
|
|
46
|
+
|
|
47
|
+
```jsx
|
|
48
|
+
// before
|
|
49
|
+
<SelectUnstyled onChange={(newValue) => { /* ... */ }} />
|
|
50
|
+
|
|
51
|
+
// after
|
|
52
|
+
<SelectUnstyled onChange={(event, newValue) => { /* ... */ }} />
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Docs
|
|
56
|
+
|
|
57
|
+
- [blog] The Date Pickers gets a stable v5 release (#34152) @alexfauquette
|
|
58
|
+
- [blog] Improve image handling (#34222) @oliviertassinari
|
|
59
|
+
- [blog] Correct 2021 survey data interpretation (#34291) @samuelsycamore
|
|
60
|
+
- [docs] Remove expired AospExtended showcase @oliviertassinari
|
|
61
|
+
- [docs] Link the OpenSSF Best Practices card (#34331) @oliviertassinari
|
|
62
|
+
- [docs] Fix 301 link to external projects @oliviertassinari
|
|
63
|
+
- [docs] Move 12 component names to Title Case (#34188) @oliviertassinari
|
|
64
|
+
- [docs] Fix broken links (#34320) @alexfauquette
|
|
65
|
+
- [docs] Add notification for MUI Base announcement post (#34295) @samuelsycamore
|
|
66
|
+
- [website] Fix MUI X subscribe email border style (#34330) @oliviertassinari
|
|
67
|
+
- [website] Improve security header @oliviertassinari
|
|
68
|
+
|
|
69
|
+
### Core
|
|
70
|
+
|
|
71
|
+
- [core] Lock file maintenance (#34161) @renovate[bot]
|
|
72
|
+
- [core] Issue template: move reproduction steps to the top (#34279) @Janpot
|
|
73
|
+
- [core] Create shared Next.js baseline config (#34259) @oliviertassinari
|
|
74
|
+
- [core] In `typescript-to-proptypes`, respect the value pass to the generic (#34311) @flaviendelangle
|
|
75
|
+
|
|
76
|
+
All contributors of this release in alphabetical order: @alexfauquette, @flaviendelangle, @hbjORbj, @Janpot, @michaldudak, @oliviertassinari, @renovate[bot], @samuelsycamore, @siriwatknp, @tomasz-sodzawiczny, @ZeeshanTamboli
|
|
77
|
+
|
|
78
|
+
## 5.10.5
|
|
79
|
+
|
|
80
|
+
<!-- generated comparing v5.10.4..master -->
|
|
81
|
+
|
|
82
|
+
_Sep 12, 2022_
|
|
83
|
+
|
|
84
|
+
A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
|
|
85
|
+
|
|
86
|
+
- 🚀 [Blog post](https://mui.com/blog/introducing-mui-base/) for announcing the release of the MUI Base package is out thanks to @michaldudak.
|
|
87
|
+
- 🚀 Added [`Alert`](https://mui.com/joy-ui/react-alert/), [`Modal`](https://mui.com/joy-ui/react-modal/), [`ListSubheader`](https://mui.com/joy-ui/react-list-subheader/), [`FormControl`](https://mui.com/joy-ui/react-form-control/), [`CircularProgress`](https://mui.com/joy-ui/react-circular-progress/) components to Joy UI (#33859) @hbjORbj @siriwatknp
|
|
88
|
+
- And more 🐛 bug fixes and 📚 documentation improvements.
|
|
89
|
+
|
|
90
|
+
### `@mui/material@5.10.5`
|
|
91
|
+
|
|
92
|
+
- ​<!-- 05 -->[ListItemText] Fix variant mapping in `primaryTypography` (#33880) @iamxukai
|
|
93
|
+
- ​<!-- 03 -->[Timeline] Add left and right aligned timeline demos in docs (#34156) @ZeeshanTamboli
|
|
94
|
+
|
|
95
|
+
### `@mui/joy@5.0.0-alpha.45`
|
|
96
|
+
|
|
97
|
+
- ​<!-- 20 -->[Joy UI] Add `CircularProgress` component (#33869) @hbjORbj
|
|
98
|
+
- ​<!-- 19 -->[Joy UI] Add `FormControl` component (#34187) @siriwatknp
|
|
99
|
+
- ​<!-- 18 -->[Joy UI] Add `ListSubheader` component (#34191) @siriwatknp
|
|
100
|
+
- ​<!-- 17 -->[Joy UI] Add `Modal` component (#34043) @siriwatknp
|
|
101
|
+
- ​<!-- 10 -->[Joy] Fix list value of false or 0 (zero) text is incorrectly grey (#34255) @kushagra010
|
|
102
|
+
- ​<!-- 09 -->[Joy] Adjust typography decorator margin (#34257) @siriwatknp
|
|
103
|
+
- ​<!-- 08 -->[Joy] Miscellaneous fixes (#34193) @siriwatknp
|
|
104
|
+
- ​<!-- 07 -->[Radio][joy] Integrate with form control (#34277) @siriwatknp
|
|
105
|
+
- ​<!-- 06 -->[Joy][textarea] Pass `textarea` props from `componentsProps` (#34223) @HexM7
|
|
106
|
+
|
|
107
|
+
### Docs
|
|
108
|
+
|
|
109
|
+
- ​<!-- 16 -->[blog] Introducing MUI Base (#33778) @michaldudak
|
|
110
|
+
- ​<!-- 13 -->[docs] Fix spelling error (#34209) @ChrystianDeMatos
|
|
111
|
+
- ​<!-- 12 -->[docs] Improve link to the security policy (#34219) @oliviertassinari
|
|
112
|
+
- ​<!-- 11 -->[docs] Fix typo in Joy UI's `Usage` docs (#34200) @zillion504
|
|
113
|
+
- ​<!-- 02 -->[website] Add Lukas to the about page (#34284) @LukasTy
|
|
114
|
+
- ​<!-- 01 -->[website] Update diamond sponsor URL (#34256) @oliviertassinari
|
|
115
|
+
|
|
116
|
+
### Core
|
|
117
|
+
|
|
118
|
+
- ​<!-- 04 -->[test] Replace argos-cli with @argos-ci/core (#34178) @michaldudak
|
|
119
|
+
- ​<!-- 15 -->[core] Create a script to generate codeowners (#34175) @michaldudak
|
|
120
|
+
- ​<!-- 14 -->[core] Add RFC GH issue template (#33871) @bytasv
|
|
121
|
+
|
|
122
|
+
All contributors of this release in alphabetical order: @bytasv, @ChrystianDeMatos, @hbjORbj, @HexM7, @iamxukai, @kushagra010, @LukasTy, @michaldudak, @oliviertassinari, @siriwatknp, @ZeeshanTamboli, @zillion504
|
|
123
|
+
|
|
3
124
|
## 5.10.4
|
|
4
125
|
|
|
5
126
|
<!-- generated comparing v5.10.3..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/styled-engine",
|
|
3
|
-
"version": "5.10.
|
|
3
|
+
"version": "5.10.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "styled() API wrapper package for emotion.",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"url": "https://opencollective.com/mui"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@babel/runtime": "^7.
|
|
29
|
+
"@babel/runtime": "^7.19.0",
|
|
30
30
|
"@emotion/cache": "^11.10.3",
|
|
31
31
|
"csstype": "^3.1.0",
|
|
32
32
|
"prop-types": "^15.8.1"
|