@mui/styled-engine 5.10.5 → 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 CHANGED
@@ -1,5 +1,80 @@
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
+
3
78
  ## 5.10.5
4
79
 
5
80
  <!-- generated comparing v5.10.4..master -->
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.10.5
1
+ /** @license MUI v5.10.6
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/legacy/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.10.5
1
+ /** @license MUI v5.10.6
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/modern/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.10.5
1
+ /** @license MUI v5.10.6
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.10.5
1
+ /** @license MUI v5.10.6
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/styled-engine",
3
- "version": "5.10.5",
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.18.9",
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"