webstudio 0.236.0 → 0.237.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/lib/cli.js
CHANGED
|
@@ -2113,6 +2113,7 @@ var durationUnitValueSchema = z.union([
|
|
|
2113
2113
|
value: z.string()
|
|
2114
2114
|
})
|
|
2115
2115
|
]);
|
|
2116
|
+
var iterationsUnitValueSchema = z.union([z.number(), z.literal("infinite")]);
|
|
2116
2117
|
var insetUnitValueSchema = z.union([
|
|
2117
2118
|
rangeUnitValueSchema,
|
|
2118
2119
|
z.object({
|
|
@@ -2134,7 +2135,9 @@ var keyframeEffectOptionsSchema = z.object({
|
|
|
2134
2135
|
z.literal("both")
|
|
2135
2136
|
]).optional(),
|
|
2136
2137
|
// FillMode
|
|
2137
|
-
duration: durationUnitValueSchema.optional()
|
|
2138
|
+
duration: durationUnitValueSchema.optional(),
|
|
2139
|
+
delay: durationUnitValueSchema.optional(),
|
|
2140
|
+
iterations: iterationsUnitValueSchema.optional()
|
|
2138
2141
|
});
|
|
2139
2142
|
var scrollNamedRangeSchema = z.union([
|
|
2140
2143
|
z.literal("start"),
|
|
@@ -8792,7 +8795,7 @@ const getDeploymentInstructions = (deployTarget) => {
|
|
|
8792
8795
|
}
|
|
8793
8796
|
};
|
|
8794
8797
|
const name = "webstudio";
|
|
8795
|
-
const version = "0.
|
|
8798
|
+
const version = "0.237.0";
|
|
8796
8799
|
const description = "Webstudio CLI";
|
|
8797
8800
|
const author = "Webstudio <github@webstudio.is>";
|
|
8798
8801
|
const homepage = "https://webstudio.is";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webstudio",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.237.0",
|
|
4
4
|
"description": "Webstudio CLI",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -70,16 +70,16 @@
|
|
|
70
70
|
"vite": "^6.3.4",
|
|
71
71
|
"vitest": "^3.1.2",
|
|
72
72
|
"wrangler": "^3.63.2",
|
|
73
|
-
"@webstudio-is/
|
|
74
|
-
"@webstudio-is/
|
|
75
|
-
"@webstudio-is/
|
|
76
|
-
"@webstudio-is/sdk": "0.
|
|
77
|
-
"@webstudio-is/sdk-components-animation": "0.
|
|
78
|
-
"@webstudio-is/
|
|
79
|
-
"@webstudio-is/sdk-components-react": "0.
|
|
80
|
-
"@webstudio-is/sdk-components-react-radix": "0.
|
|
81
|
-
"@webstudio-is/sdk-components-react-
|
|
82
|
-
"@webstudio-is/sdk-components-react-
|
|
73
|
+
"@webstudio-is/css-engine": "0.237.0",
|
|
74
|
+
"@webstudio-is/http-client": "0.237.0",
|
|
75
|
+
"@webstudio-is/image": "0.237.0",
|
|
76
|
+
"@webstudio-is/react-sdk": "0.237.0",
|
|
77
|
+
"@webstudio-is/sdk-components-animation": "0.237.0",
|
|
78
|
+
"@webstudio-is/sdk": "0.237.0",
|
|
79
|
+
"@webstudio-is/sdk-components-react": "0.237.0",
|
|
80
|
+
"@webstudio-is/sdk-components-react-radix": "0.237.0",
|
|
81
|
+
"@webstudio-is/sdk-components-react-remix": "0.237.0",
|
|
82
|
+
"@webstudio-is/sdk-components-react-router": "0.237.0",
|
|
83
83
|
"@webstudio-is/tsconfig": "1.0.7"
|
|
84
84
|
},
|
|
85
85
|
"scripts": {
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"@remix-run/node": "2.16.5",
|
|
12
12
|
"@remix-run/react": "2.16.5",
|
|
13
13
|
"@remix-run/server-runtime": "2.16.5",
|
|
14
|
-
"@webstudio-is/image": "0.
|
|
15
|
-
"@webstudio-is/react-sdk": "0.
|
|
16
|
-
"@webstudio-is/sdk": "0.
|
|
17
|
-
"@webstudio-is/sdk-components-react": "0.
|
|
18
|
-
"@webstudio-is/sdk-components-animation": "0.
|
|
19
|
-
"@webstudio-is/sdk-components-react-radix": "0.
|
|
20
|
-
"@webstudio-is/sdk-components-react-remix": "0.
|
|
14
|
+
"@webstudio-is/image": "0.237.0",
|
|
15
|
+
"@webstudio-is/react-sdk": "0.237.0",
|
|
16
|
+
"@webstudio-is/sdk": "0.237.0",
|
|
17
|
+
"@webstudio-is/sdk-components-react": "0.237.0",
|
|
18
|
+
"@webstudio-is/sdk-components-animation": "0.237.0",
|
|
19
|
+
"@webstudio-is/sdk-components-react-radix": "0.237.0",
|
|
20
|
+
"@webstudio-is/sdk-components-react-remix": "0.237.0",
|
|
21
21
|
"isbot": "^5.1.25",
|
|
22
22
|
"react": "18.3.0-canary-14898b6a9-20240318",
|
|
23
23
|
"react-dom": "18.3.0-canary-14898b6a9-20240318"
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@react-router/dev": "^7.5.3",
|
|
12
12
|
"@react-router/fs-routes": "^7.5.3",
|
|
13
|
-
"@webstudio-is/image": "0.
|
|
14
|
-
"@webstudio-is/react-sdk": "0.
|
|
15
|
-
"@webstudio-is/sdk": "0.
|
|
16
|
-
"@webstudio-is/sdk-components-animation": "0.
|
|
17
|
-
"@webstudio-is/sdk-components-react-radix": "0.
|
|
18
|
-
"@webstudio-is/sdk-components-react-router": "0.
|
|
19
|
-
"@webstudio-is/sdk-components-react": "0.
|
|
13
|
+
"@webstudio-is/image": "0.237.0",
|
|
14
|
+
"@webstudio-is/react-sdk": "0.237.0",
|
|
15
|
+
"@webstudio-is/sdk": "0.237.0",
|
|
16
|
+
"@webstudio-is/sdk-components-animation": "0.237.0",
|
|
17
|
+
"@webstudio-is/sdk-components-react-radix": "0.237.0",
|
|
18
|
+
"@webstudio-is/sdk-components-react-router": "0.237.0",
|
|
19
|
+
"@webstudio-is/sdk-components-react": "0.237.0",
|
|
20
20
|
"isbot": "^5.1.25",
|
|
21
21
|
"react": "18.3.0-canary-14898b6a9-20240318",
|
|
22
22
|
"react-dom": "18.3.0-canary-14898b6a9-20240318",
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"typecheck": "tsc"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@webstudio-is/image": "0.
|
|
12
|
-
"@webstudio-is/react-sdk": "0.
|
|
13
|
-
"@webstudio-is/sdk": "0.
|
|
14
|
-
"@webstudio-is/sdk-components-react": "0.
|
|
15
|
-
"@webstudio-is/sdk-components-animation": "0.
|
|
16
|
-
"@webstudio-is/sdk-components-react-radix": "0.
|
|
11
|
+
"@webstudio-is/image": "0.237.0",
|
|
12
|
+
"@webstudio-is/react-sdk": "0.237.0",
|
|
13
|
+
"@webstudio-is/sdk": "0.237.0",
|
|
14
|
+
"@webstudio-is/sdk-components-react": "0.237.0",
|
|
15
|
+
"@webstudio-is/sdk-components-animation": "0.237.0",
|
|
16
|
+
"@webstudio-is/sdk-components-react-radix": "0.237.0",
|
|
17
17
|
"react": "18.3.0-canary-14898b6a9-20240318",
|
|
18
18
|
"react-dom": "18.3.0-canary-14898b6a9-20240318",
|
|
19
19
|
"vike": "^0.4.229"
|