@webstudio-is/sdk-components-react-radix 0.202.0 → 0.204.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/types/shared/proxy.d.ts +3 -5
- package/package.json +14 -14
|
@@ -6,12 +6,10 @@ export declare const radix: Record<string, {
|
|
|
6
6
|
"ws:style"?: import("@webstudio-is/template").TemplateStyleDecl[];
|
|
7
7
|
"ws:show"?: boolean | {
|
|
8
8
|
chunks: string[];
|
|
9
|
-
variables: Array<import("@webstudio-is/template").Variable | import("@webstudio-is/template").Parameter>;
|
|
10
|
-
serialize(variableIds: string[]): string;
|
|
9
|
+
variables: Array<import("@webstudio-is/template").Variable | import("@webstudio-is/template").Parameter | import("@webstudio-is/template").ResourceValue>;
|
|
11
10
|
};
|
|
12
|
-
children?: import("react").ReactNode |
|
|
11
|
+
children?: import("react").ReactNode | {
|
|
13
12
|
chunks: string[];
|
|
14
|
-
variables: Array<import("@webstudio-is/template").Variable | import("@webstudio-is/template").Parameter>;
|
|
15
|
-
serialize(variableIds: string[]): string;
|
|
13
|
+
variables: Array<import("@webstudio-is/template").Variable | import("@webstudio-is/template").Parameter | import("@webstudio-is/template").ResourceValue>;
|
|
16
14
|
} | import("@webstudio-is/template").PlaceholderValue;
|
|
17
15
|
}) => import("react").ReactNode)>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webstudio-is/sdk-components-react-radix",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.204.0",
|
|
4
4
|
"description": "Webstudio wrapper for radix library",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -47,33 +47,33 @@
|
|
|
47
47
|
"@radix-ui/react-accordion": "^1.2.2",
|
|
48
48
|
"@radix-ui/react-checkbox": "^1.1.3",
|
|
49
49
|
"@radix-ui/react-collapsible": "^1.1.2",
|
|
50
|
-
"@radix-ui/react-dialog": "^1.1.
|
|
50
|
+
"@radix-ui/react-dialog": "^1.1.5",
|
|
51
51
|
"@radix-ui/react-label": "^2.1.1",
|
|
52
|
-
"@radix-ui/react-navigation-menu": "^1.2.
|
|
53
|
-
"@radix-ui/react-popover": "^1.1.
|
|
52
|
+
"@radix-ui/react-navigation-menu": "^1.2.4",
|
|
53
|
+
"@radix-ui/react-popover": "^1.1.5",
|
|
54
54
|
"@radix-ui/react-radio-group": "^1.2.2",
|
|
55
|
-
"@radix-ui/react-select": "^2.1.
|
|
55
|
+
"@radix-ui/react-select": "^2.1.5",
|
|
56
56
|
"@radix-ui/react-switch": "^1.1.2",
|
|
57
57
|
"@radix-ui/react-tabs": "^1.1.2",
|
|
58
|
-
"@radix-ui/react-tooltip": "^1.1.
|
|
58
|
+
"@radix-ui/react-tooltip": "^1.1.7",
|
|
59
59
|
"@radix-ui/react-use-controllable-state": "^1.1.0",
|
|
60
60
|
"await-interaction-response": "^0.0.2",
|
|
61
|
-
"@webstudio-is/css-engine": "0.
|
|
62
|
-
"@webstudio-is/react-sdk": "0.
|
|
63
|
-
"@webstudio-is/sdk": "0.
|
|
64
|
-
"@webstudio-is/icons": "0.
|
|
61
|
+
"@webstudio-is/css-engine": "0.204.0",
|
|
62
|
+
"@webstudio-is/react-sdk": "0.204.0",
|
|
63
|
+
"@webstudio-is/sdk": "0.204.0",
|
|
64
|
+
"@webstudio-is/icons": "0.204.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@types/react": "^18.2.70",
|
|
68
68
|
"@types/react-dom": "^18.2.25",
|
|
69
69
|
"react": "18.3.0-canary-14898b6a9-20240318",
|
|
70
70
|
"react-dom": "18.3.0-canary-14898b6a9-20240318",
|
|
71
|
-
"@webstudio-is/generate-arg-types": "0.0.0",
|
|
72
71
|
"@webstudio-is/css-data": "0.0.0",
|
|
73
|
-
"@webstudio-is/
|
|
74
|
-
"@webstudio-is/template": "0.202.0",
|
|
72
|
+
"@webstudio-is/generate-arg-types": "0.0.0",
|
|
75
73
|
"@webstudio-is/sdk-cli": "^0.94.0",
|
|
76
|
-
"@webstudio-is/
|
|
74
|
+
"@webstudio-is/sdk-components-react": "0.204.0",
|
|
75
|
+
"@webstudio-is/tsconfig": "1.0.7",
|
|
76
|
+
"@webstudio-is/template": "0.204.0"
|
|
77
77
|
},
|
|
78
78
|
"scripts": {
|
|
79
79
|
"build": "vite build --config ../../vite.sdk-components.config.ts",
|