@webstudio-is/react-sdk 0.213.0 → 0.215.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.
Files changed (2) hide show
  1. package/package.json +8 -8
  2. package/placeholder.d.ts +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webstudio-is/react-sdk",
3
- "version": "0.213.0",
3
+ "version": "0.215.0",
4
4
  "description": "Webstudio JavaScript / TypeScript API",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",
@@ -14,8 +14,8 @@
14
14
  "type-fest": "^4.37.0",
15
15
  "vitest": "^3.0.8",
16
16
  "zod": "^3.24.2",
17
- "@webstudio-is/tsconfig": "1.0.7",
18
- "@webstudio-is/template": "0.213.0"
17
+ "@webstudio-is/template": "0.215.0",
18
+ "@webstudio-is/tsconfig": "1.0.7"
19
19
  },
20
20
  "peerDependencies": {
21
21
  "react": "18.3.0-canary-14898b6a9-20240318",
@@ -26,11 +26,11 @@
26
26
  "change-case": "^5.4.4",
27
27
  "html-tags": "^4.0.0",
28
28
  "nanoid": "^5.0.9",
29
- "@webstudio-is/css-engine": "0.213.0",
30
- "@webstudio-is/icons": "^0.213.0",
31
- "@webstudio-is/fonts": "0.213.0",
32
- "@webstudio-is/image": "0.213.0",
33
- "@webstudio-is/sdk": "0.213.0"
29
+ "@webstudio-is/css-engine": "0.215.0",
30
+ "@webstudio-is/image": "0.215.0",
31
+ "@webstudio-is/fonts": "0.215.0",
32
+ "@webstudio-is/icons": "^0.215.0",
33
+ "@webstudio-is/sdk": "0.215.0"
34
34
  },
35
35
  "exports": {
36
36
  ".": {
package/placeholder.d.ts CHANGED
@@ -7,6 +7,10 @@ declare module "__CONSTANTS__" {
7
7
  declare module "__CLIENT__" {
8
8
  import type { ResourceRequest, System } from "@webstudio-is/sdk";
9
9
 
10
+ export const projectId: string;
11
+
12
+ export const lastPublished: string;
13
+
10
14
  export const siteName: string;
11
15
 
12
16
  export const favIconAsset: string | undefined;
@@ -43,8 +47,6 @@ declare module "__SERVER__" {
43
47
  type Params = Record<string, string | undefined>;
44
48
  export const getRemixParams: ({ ...params }: Params) => Params;
45
49
 
46
- export const projectId: string;
47
-
48
50
  export const contactEmail: undefined | string;
49
51
  }
50
52