styled-components 6.1.7 → 6.1.9-react-18-streaming-prototype
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/dist/constructors/constructWithOptions.d.ts +21 -11
- package/dist/constructors/styled.d.ts +134 -134
- package/dist/hoc/withTheme.d.ts +1 -1
- package/dist/native/index.d.ts +25 -25
- package/dist/styled-components.browser.cjs.js +1 -1
- package/dist/styled-components.browser.cjs.js.map +1 -1
- package/dist/styled-components.browser.esm.js +1 -1
- package/dist/styled-components.browser.esm.js.map +1 -1
- package/dist/styled-components.cjs.js +1 -1
- package/dist/styled-components.cjs.js.map +1 -1
- package/dist/styled-components.esm.js +1 -1
- package/dist/styled-components.esm.js.map +1 -1
- package/dist/styled-components.js +2 -1
- package/dist/styled-components.js.map +1 -1
- package/dist/styled-components.min.js +1 -1
- package/dist/styled-components.min.js.map +1 -1
- package/dist/test/utils.d.ts +135 -134
- package/dist/types.d.ts +21 -1
- package/native/dist/constructors/styled.d.ts +1 -0
- package/native/dist/dist/constructors/constructWithOptions.d.ts +21 -11
- package/native/dist/dist/constructors/styled.d.ts +134 -134
- package/native/dist/dist/hoc/withTheme.d.ts +1 -1
- package/native/dist/dist/native/index.d.ts +25 -25
- package/native/dist/dist/test/utils.d.ts +135 -134
- package/native/dist/dist/types.d.ts +21 -1
- package/native/dist/styled-components.native.cjs.js +1 -1
- package/native/dist/styled-components.native.cjs.js.map +1 -1
- package/native/dist/styled-components.native.esm.js +1 -1
- package/native/dist/styled-components.native.esm.js.map +1 -1
- package/native/dist/test/types.d.ts +9 -0
- package/native/dist/test/utils.d.ts +1 -0
- package/package.json +11 -48
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "styled-components",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.9-react-18-streaming-prototype",
|
|
4
4
|
"description": "CSS for the <Component> Age. Style components your way with speed, strong typing, and flexibility.",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/styled-components.cjs.js",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"homepage": "https://styled-components.com",
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@emotion/is-prop-valid": "1.2.1",
|
|
55
|
-
"@emotion/unitless": "0.8.
|
|
55
|
+
"@emotion/unitless": "0.8.1",
|
|
56
56
|
"@types/stylis": "4.2.0",
|
|
57
57
|
"css-to-react-native": "3.2.0",
|
|
58
58
|
"csstype": "3.1.2",
|
|
@@ -62,56 +62,19 @@
|
|
|
62
62
|
"tslib": "2.5.0"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"@types/stylis": "^4.2.0",
|
|
68
|
-
"css-to-react-native": "^3.2.0",
|
|
69
|
-
"csstype": "^3.1.2",
|
|
70
|
-
"postcss": "^8.0.0",
|
|
71
|
-
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
72
|
-
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
73
|
-
"shallowequal": "^1.1.0",
|
|
74
|
-
"tslib": "^2.5.0"
|
|
75
|
-
},
|
|
76
|
-
"peerDependenciesMeta": {
|
|
77
|
-
"@emotion/is-prop-valid": {
|
|
78
|
-
"optional": true
|
|
79
|
-
},
|
|
80
|
-
"@emotion/unitless": {
|
|
81
|
-
"optional": true
|
|
82
|
-
},
|
|
83
|
-
"@types/stylis": {
|
|
84
|
-
"optional": true
|
|
85
|
-
},
|
|
86
|
-
"css-to-react-native": {
|
|
87
|
-
"optional": true
|
|
88
|
-
},
|
|
89
|
-
"csstype": {
|
|
90
|
-
"optional": true
|
|
91
|
-
},
|
|
92
|
-
"postcss": {
|
|
93
|
-
"optional": true
|
|
94
|
-
},
|
|
95
|
-
"react-dom": {
|
|
96
|
-
"optional": true
|
|
97
|
-
},
|
|
98
|
-
"shallowequal": {
|
|
99
|
-
"optional": true
|
|
100
|
-
},
|
|
101
|
-
"tslib": {
|
|
102
|
-
"optional": true
|
|
103
|
-
}
|
|
65
|
+
"react": ">= 16.8.0",
|
|
66
|
+
"react-dom": ">= 16.8.0"
|
|
104
67
|
},
|
|
105
68
|
"devDependencies": {
|
|
106
|
-
"@babel/core": "7.
|
|
107
|
-
"@babel/helper-module-imports": "7.
|
|
108
|
-
"@babel/plugin-external-helpers": "7.
|
|
69
|
+
"@babel/core": "7.24.5",
|
|
70
|
+
"@babel/helper-module-imports": "7.24.3",
|
|
71
|
+
"@babel/plugin-external-helpers": "7.24.1",
|
|
109
72
|
"@babel/plugin-proposal-class-properties": "7.18.6",
|
|
110
73
|
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
|
|
111
|
-
"@babel/plugin-transform-flow-strip-types": "7.
|
|
112
|
-
"@babel/preset-env": "7.
|
|
113
|
-
"@babel/preset-react": "7.
|
|
114
|
-
"@babel/preset-typescript": "7.
|
|
74
|
+
"@babel/plugin-transform-flow-strip-types": "7.24.1",
|
|
75
|
+
"@babel/preset-env": "7.24.5",
|
|
76
|
+
"@babel/preset-react": "7.24.1",
|
|
77
|
+
"@babel/preset-typescript": "7.24.1",
|
|
115
78
|
"@rollup/plugin-typescript": "11.1.1",
|
|
116
79
|
"@types/enzyme": "3.10.13",
|
|
117
80
|
"@types/jest": "29.5.2",
|