@mui/styled-engine 5.12.3 → 5.14.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 +1089 -22
- package/GlobalStyles/GlobalStyles.js +2 -0
- package/GlobalStyles/index.js +2 -0
- package/StyledEngineProvider/StyledEngineProvider.js +2 -0
- package/StyledEngineProvider/index.js +2 -0
- package/index.js +3 -1
- package/legacy/GlobalStyles/GlobalStyles.js +2 -0
- package/legacy/GlobalStyles/index.js +2 -0
- package/legacy/StyledEngineProvider/StyledEngineProvider.js +2 -0
- package/legacy/StyledEngineProvider/index.js +2 -0
- package/legacy/index.js +3 -1
- package/modern/GlobalStyles/GlobalStyles.js +2 -0
- package/modern/GlobalStyles/index.js +2 -0
- package/modern/StyledEngineProvider/StyledEngineProvider.js +2 -0
- package/modern/StyledEngineProvider/index.js +2 -0
- package/modern/index.js +3 -1
- package/node/GlobalStyles/GlobalStyles.js +1 -0
- package/node/GlobalStyles/index.js +1 -0
- package/node/StyledEngineProvider/StyledEngineProvider.js +1 -0
- package/node/StyledEngineProvider/index.js +1 -0
- package/node/index.js +3 -3
- package/package.json +3 -3
package/GlobalStyles/index.js
CHANGED
package/index.js
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/styled-engine v5.
|
|
2
|
+
* @mui/styled-engine v5.14.6
|
|
3
3
|
*
|
|
4
4
|
* @license MIT
|
|
5
5
|
* This source code is licensed under the MIT license found in the
|
|
6
6
|
* LICENSE file in the root directory of this source tree.
|
|
7
7
|
*/
|
|
8
|
+
'use client';
|
|
9
|
+
|
|
8
10
|
/* eslint-disable no-underscore-dangle */
|
|
9
11
|
import emStyled from '@emotion/styled';
|
|
10
12
|
export default function styled(tag, options) {
|
package/legacy/index.js
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/styled-engine v5.
|
|
2
|
+
* @mui/styled-engine v5.14.6
|
|
3
3
|
*
|
|
4
4
|
* @license MIT
|
|
5
5
|
* This source code is licensed under the MIT license found in the
|
|
6
6
|
* LICENSE file in the root directory of this source tree.
|
|
7
7
|
*/
|
|
8
|
+
'use client';
|
|
9
|
+
|
|
8
10
|
/* eslint-disable no-underscore-dangle */
|
|
9
11
|
import emStyled from '@emotion/styled';
|
|
10
12
|
export default function styled(tag, options) {
|
package/modern/index.js
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/styled-engine v5.
|
|
2
|
+
* @mui/styled-engine v5.14.6
|
|
3
3
|
*
|
|
4
4
|
* @license MIT
|
|
5
5
|
* This source code is licensed under the MIT license found in the
|
|
6
6
|
* LICENSE file in the root directory of this source tree.
|
|
7
7
|
*/
|
|
8
|
+
'use client';
|
|
9
|
+
|
|
8
10
|
/* eslint-disable no-underscore-dangle */
|
|
9
11
|
import emStyled from '@emotion/styled';
|
|
10
12
|
export default function styled(tag, options) {
|
package/node/index.js
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/styled-engine v5.
|
|
2
|
+
* @mui/styled-engine v5.14.6
|
|
3
3
|
*
|
|
4
4
|
* @license MIT
|
|
5
5
|
* This source code is licensed under the MIT license found in the
|
|
6
6
|
* LICENSE file in the root directory of this source tree.
|
|
7
7
|
*/
|
|
8
8
|
"use strict";
|
|
9
|
+
'use client';
|
|
9
10
|
|
|
11
|
+
/* eslint-disable no-underscore-dangle */
|
|
10
12
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
11
13
|
Object.defineProperty(exports, "__esModule", {
|
|
12
14
|
value: true
|
|
@@ -47,8 +49,6 @@ var _styled = _interopRequireDefault(require("@emotion/styled"));
|
|
|
47
49
|
var _react = require("@emotion/react");
|
|
48
50
|
var _StyledEngineProvider = _interopRequireDefault(require("./StyledEngineProvider"));
|
|
49
51
|
var _GlobalStyles = _interopRequireDefault(require("./GlobalStyles"));
|
|
50
|
-
/* eslint-disable no-underscore-dangle */
|
|
51
|
-
|
|
52
52
|
function styled(tag, options) {
|
|
53
53
|
const stylesFactory = (0, _styled.default)(tag, options);
|
|
54
54
|
if (process.env.NODE_ENV !== 'production') {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/styled-engine",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.14.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "styled() API wrapper package for emotion.",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"url": "https://opencollective.com/mui"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@babel/runtime": "^7.
|
|
30
|
-
"@emotion/cache": "^11.
|
|
29
|
+
"@babel/runtime": "^7.22.10",
|
|
30
|
+
"@emotion/cache": "^11.11.0",
|
|
31
31
|
"csstype": "^3.1.2",
|
|
32
32
|
"prop-types": "^15.8.1"
|
|
33
33
|
},
|