@webstudio-is/css-engine 0.29.0 → 0.31.0
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 +4 -2
- package/package.json +4 -4
- package/src/core/style-sheet.ts +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
## CSS Engine
|
|
2
2
|
|
|
3
|
-
This package is designed to render effectively CSS in the format produced by
|
|
4
|
-
It is using CSS variables for all dynamic parts and can
|
|
3
|
+
This package is designed to render effectively CSS in the format produced by
|
|
4
|
+
Webstudio Builder. It is using CSS variables for all dynamic parts and can
|
|
5
|
+
render at runtime as for usage on Live Canvas in the Builder as well as for
|
|
6
|
+
extracting a fully static style sheet for production.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webstudio-is/css-engine",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.31.0",
|
|
4
4
|
"description": "CSS Renderer for Webstudio",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"hyphenate-style-name": "^1.0.4",
|
|
10
10
|
"react": "^17.0.2",
|
|
11
11
|
"react-dom": "^17.0.2",
|
|
12
|
-
"@webstudio-is/fonts": "^0.
|
|
12
|
+
"@webstudio-is/fonts": "^0.31.0"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@jest/globals": "^29.3.1",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"@types/react": "^17.0.24",
|
|
21
21
|
"@types/react-dom": "^17.0.9",
|
|
22
22
|
"jest": "^29.3.1",
|
|
23
|
-
"typescript": "4.
|
|
24
|
-
"@webstudio-is/css-data": "^0.
|
|
23
|
+
"typescript": "4.9.5",
|
|
24
|
+
"@webstudio-is/css-data": "^0.31.0",
|
|
25
25
|
"@webstudio-is/jest-config": "^1.0.2",
|
|
26
26
|
"@webstudio-is/scripts": "^0.0.0",
|
|
27
27
|
"@webstudio-is/storybook-config": "^0.0.0",
|
package/src/core/style-sheet.ts
CHANGED