styled-components 6.4.0-prerelease.4 → 6.4.0-prerelease.5
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/README.md +221 -47
- package/dist/constructors/createTheme.d.ts +1 -1
- 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 +3 -3
- package/dist/styled-components.cjs.js.map +1 -1
- package/dist/styled-components.esm.js +3 -3
- package/dist/styled-components.esm.js.map +1 -1
- package/dist/styled-components.js +2 -2
- 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/native/dist/constructors/createTheme.d.ts +1 -1
- package/native/dist/dist/constructors/createTheme.d.ts +1 -1
- package/package.json +3 -3
|
@@ -56,7 +56,7 @@ interface CreateThemeOptions {
|
|
|
56
56
|
selector?: string;
|
|
57
57
|
}
|
|
58
58
|
/**
|
|
59
|
-
* Create a theme
|
|
59
|
+
* Create a theme backed by CSS custom properties, bridging `ThemeProvider` and CSS variables.
|
|
60
60
|
*
|
|
61
61
|
* Returns an object with the same shape as the input theme, but every leaf value
|
|
62
62
|
* is a `var(--prefix-*, fallback)` CSS string. Use these in styled component
|
|
@@ -56,7 +56,7 @@ interface CreateThemeOptions {
|
|
|
56
56
|
selector?: string;
|
|
57
57
|
}
|
|
58
58
|
/**
|
|
59
|
-
* Create a theme
|
|
59
|
+
* Create a theme backed by CSS custom properties, bridging `ThemeProvider` and CSS variables.
|
|
60
60
|
*
|
|
61
61
|
* Returns an object with the same shape as the input theme, but every leaf value
|
|
62
62
|
* is a `var(--prefix-*, fallback)` CSS string. Use these in styled component
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "styled-components",
|
|
3
|
-
"version": "6.4.0-prerelease.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "6.4.0-prerelease.5",
|
|
4
|
+
"description": "Fast, expressive styling for React.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"size": "bundlewatch",
|
|
30
30
|
"prettier": "prettier src --write",
|
|
31
31
|
"prettier:check": "prettier src --check",
|
|
32
|
-
"prepublishOnly": "
|
|
32
|
+
"prepublishOnly": "pnpm run build"
|
|
33
33
|
},
|
|
34
34
|
"repository": {
|
|
35
35
|
"type": "git",
|