@mui/styled-engine 5.11.8 → 5.11.9

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,78 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 5.11.9
4
+
5
+ <!-- generated comparing v5.11.8..master -->
6
+
7
+ _Feb 14, 2023_
8
+
9
+ A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
10
+
11
+ - 🐛 @rangoo94, @sai6855, and @michaldudak fixed a couple of bugs in the Autocomplete component (#36116, #35640, #36076, #36088)
12
+ - many other 🐛 bug fixes and 📚 documentation improvements
13
+
14
+ ### `@mui/material@5.11.9`
15
+
16
+ - [AppBar] Fix joinVars() not handling undefined (#36128) @donaldnevermore
17
+ - [Autocomplete] Fix tag removal regression (#36116) @michaldudak
18
+ - [Autocomplete] Correct padding of filled Autocomplete (#35640) @michaldudak
19
+ - [Grid][Stack] classNames prefixed with Mui (#36167) @sai6855
20
+
21
+ ### `@mui/styled-engine@5.11.9`
22
+
23
+ - [StyledEngineProvider] Fix issue with cache not being defined (#36162) @mnajdova
24
+
25
+ ### `@mui/joy@5.0.0-alpha.67`
26
+
27
+ - [Joy] Add order dashboard template (#36081) @siriwatknp
28
+ - [Joy] Remove classes prop from the components that have it (#36159) @hbjORbj
29
+ - [Joy] Miscellaneous fixes (#36163) @siriwatknp
30
+
31
+ ### `@mui/base@5.0.0-alpha.118`
32
+
33
+ - [base] Override the types of `slotProps` per slot (#35964) @hbjORbj
34
+ - [Select][base] Prevent unnecessary rerendering of Select options (#35946) @michaldudak
35
+ - [Select][base] Update the generated docs (#36183) @michaldudak
36
+ - [useAutocomplete] Pass only valid values for the getOptionLabel prop (#36088) @rangoo94
37
+ - [useAutocomplete] Fix `useAutocomplete` disabled prop not disabling the input (#36076) @sai6855
38
+ - [useInput] Add return value interface (#36036) @Shorifpatwary
39
+ - [UseTabPanel] Add explicit return type (#36053) @Shorifpatwary
40
+ - [useTabsList] Add explicit return type (#36048) @sai6855
41
+ - [Tab] Add explicit return type to useTab (#36046) @sai6855
42
+
43
+ ### `@mui/material-next@6.0.0-alpha.75`
44
+
45
+ - [Material You] Use `md` as a CSS var prefix (#36177) @siriwatknp
46
+
47
+ ### Docs
48
+
49
+ - [docs] Fix the prop type regression on the API pages (#36168) @mnajdova
50
+ - [docs] Fix virtualized table column resizing (#36066) @petyosi
51
+ - [docs] Fix react-spring demos (#36023) @oliviertassinari
52
+ - [docs] Fix classname mismatch on Joy docs (#36127) @siriwatknp
53
+ - [docs] Fix typo in the released version of @mui/styled-engine (#36121) @m4theushw
54
+ - [docs] Fix demos showing TypeScript instead of JavaScript (#35850) @mj12albert
55
+ - [docs] Update release instructions (#36113) @mj12albert
56
+ - [docs] Rename `v6-alpha` to `v6-next` in navigation (#36102) @LukasTy
57
+ - [docs] Revise Joy UI "Input" page (#35970) @LadyBluenotes
58
+ - [docs] Revise Joy UI "Typography" page (#35868) @LadyBluenotes
59
+
60
+ ### Examples
61
+
62
+ - [examples][vitejs] Load Roboto font (#35678) @oliv37
63
+
64
+ ### Core
65
+
66
+ - [blog] Fix the look and feel of the media description (#36069) @oliviertassinari
67
+ - [core] Add default preview url (#36118) @siriwatknp
68
+ - [core] Migrate all the internals exported by `tests/utils/index.js` to TypeScript (#35382) @flaviendelangle
69
+ - [core] Convert the waterfall module to an internal package (#35323) @michaldudak
70
+ - [website] Fix homepage MD theme demo (#36027) @oliviertassinari
71
+ - [website] Revise the Lead Designer role job ad (#35912) @danilo-leal
72
+ - [POC] Add deploy preview to PR body (#35995) @siriwatknp
73
+
74
+ All contributors of this release in alphabetical order: @danilo-leal, @donaldnevermore, @flaviendelangle, @hbjORbj, @LadyBluenotes, @LukasTy, @m4theushw, @michaldudak, @mj12albert, @mnajdova, @oliv37, @oliviertassinari, @petyosi, @rangoo94, @sai6855, @Shorifpatwary, @siriwatknp
75
+
3
76
  ## 5.11.8
4
77
 
5
78
  <!-- generated comparing v5.11.7..master -->
@@ -25,7 +98,7 @@ A big thanks to the 14 contributors who made this release possible. Here are som
25
98
 
26
99
  - &#8203;<!-- 05 -->[System] Fix nested grid v2 (#35994) @siriwatknp
27
100
 
28
- ### `@mui/styled-engine@5.11.1`
101
+ ### `@mui/styled-engine@5.11.8`
29
102
 
30
103
  - &#8203;<!-- 06 -->[styled-engine] Create cache only if `document` is available (#36001) @m4theushw
31
104
 
@@ -18,7 +18,7 @@ export default function StyledEngineProvider(props) {
18
18
  injectFirst,
19
19
  children
20
20
  } = props;
21
- return injectFirst ? /*#__PURE__*/_jsx(CacheProvider, {
21
+ return injectFirst && cache ? /*#__PURE__*/_jsx(CacheProvider, {
22
22
  value: cache,
23
23
  children: children
24
24
  }) : children;
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/styled-engine v5.11.8
2
+ * @mui/styled-engine v5.11.9
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -17,7 +17,7 @@ if ((typeof document === "undefined" ? "undefined" : _typeof(document)) === 'obj
17
17
  export default function StyledEngineProvider(props) {
18
18
  var injectFirst = props.injectFirst,
19
19
  children = props.children;
20
- return injectFirst ? /*#__PURE__*/_jsx(CacheProvider, {
20
+ return injectFirst && cache ? /*#__PURE__*/_jsx(CacheProvider, {
21
21
  value: cache,
22
22
  children: children
23
23
  }) : children;
package/legacy/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/styled-engine v5.11.8
2
+ * @mui/styled-engine v5.11.9
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -18,7 +18,7 @@ export default function StyledEngineProvider(props) {
18
18
  injectFirst,
19
19
  children
20
20
  } = props;
21
- return injectFirst ? /*#__PURE__*/_jsx(CacheProvider, {
21
+ return injectFirst && cache ? /*#__PURE__*/_jsx(CacheProvider, {
22
22
  value: cache,
23
23
  children: children
24
24
  }) : children;
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/styled-engine v5.11.8
2
+ * @mui/styled-engine v5.11.9
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -26,7 +26,7 @@ function StyledEngineProvider(props) {
26
26
  injectFirst,
27
27
  children
28
28
  } = props;
29
- return injectFirst ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_react2.CacheProvider, {
29
+ return injectFirst && cache ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_react2.CacheProvider, {
30
30
  value: cache,
31
31
  children: children
32
32
  }) : children;
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/styled-engine v5.11.8
2
+ * @mui/styled-engine v5.11.9
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/styled-engine",
3
- "version": "5.11.8",
3
+ "version": "5.11.9",
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.20.7",
29
+ "@babel/runtime": "^7.20.13",
30
30
  "@emotion/cache": "^11.10.5",
31
31
  "csstype": "^3.1.1",
32
32
  "prop-types": "^15.8.1"