@webstudio-is/sdk 0.182.0 → 0.189.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/__generated__/normalize.css.js +9 -26
- package/lib/index.js +26 -14
- package/lib/types/instances-utils.d.ts +1 -0
- package/lib/types/resource-loader.d.ts +12 -2
- package/lib/types/resource-loader.test.d.ts +1 -0
- package/lib/types/schema/styles.d.ts +736 -1502
- package/lib/types/schema/webstudio.d.ts +124 -396
- package/lib/types/url-pattern.d.ts +1 -1
- package/package.json +7 -6
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const isPathnamePattern: (pathname: string) => boolean;
|
|
2
|
-
export declare const matchPathnameParams: (pathname: string) =>
|
|
2
|
+
export declare const matchPathnameParams: (pathname: string) => RegExpStringIterator<RegExpExecArray>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webstudio-is/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.189.0",
|
|
4
4
|
"description": "Webstudio project data schema",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -27,12 +27,13 @@
|
|
|
27
27
|
],
|
|
28
28
|
"sideEffects": false,
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"acorn": "^8.
|
|
31
|
-
"acorn-walk": "^8.3.
|
|
32
|
-
"
|
|
30
|
+
"acorn": "^8.12.1",
|
|
31
|
+
"acorn-walk": "^8.3.4",
|
|
32
|
+
"reserved-identifiers": "^1.0.0",
|
|
33
|
+
"type-fest": "^4.26.1",
|
|
33
34
|
"zod": "^3.22.4",
|
|
34
|
-
"@webstudio-is/css-engine": "0.
|
|
35
|
-
"@webstudio-is/fonts": "0.
|
|
35
|
+
"@webstudio-is/css-engine": "0.189.0",
|
|
36
|
+
"@webstudio-is/fonts": "0.189.0"
|
|
36
37
|
},
|
|
37
38
|
"devDependencies": {
|
|
38
39
|
"@jest/globals": "^29.7.0",
|