@pandacss/studio 0.0.0-dev-20230713091113 → 0.0.0-dev-20230713163819
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/studio",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20230713163819",
|
|
4
4
|
"description": "The automated token documentation for Panda CSS",
|
|
5
5
|
"main": "dist/studio.js",
|
|
6
6
|
"module": "dist/studio.mjs",
|
|
@@ -33,19 +33,19 @@
|
|
|
33
33
|
"react": "18.2.0",
|
|
34
34
|
"react-dom": "18.2.0",
|
|
35
35
|
"vite": "4.4.2",
|
|
36
|
-
"@pandacss/types": "0.0.0-dev-
|
|
37
|
-
"@pandacss/config": "0.0.0-dev-
|
|
38
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
39
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
40
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
41
|
-
"@pandacss/node": "0.0.0-dev-
|
|
36
|
+
"@pandacss/types": "0.0.0-dev-20230713163819",
|
|
37
|
+
"@pandacss/config": "0.0.0-dev-20230713163819",
|
|
38
|
+
"@pandacss/shared": "0.0.0-dev-20230713163819",
|
|
39
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20230713163819",
|
|
40
|
+
"@pandacss/logger": "0.0.0-dev-20230713163819",
|
|
41
|
+
"@pandacss/node": "0.0.0-dev-20230713163819"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/react": "18.2.14",
|
|
45
45
|
"@types/react-dom": "18.2.6",
|
|
46
46
|
"@vitejs/plugin-react": "4.0.3",
|
|
47
47
|
"execa": "7.1.1",
|
|
48
|
-
"@pandacss/dev": "0.0.0-dev-
|
|
48
|
+
"@pandacss/dev": "0.0.0-dev-20230713163819"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"codegen": "panda",
|
|
@@ -27,9 +27,7 @@ export type RecipeRuntimeFn<T extends RecipeVariantRecord> = RecipeVariantFn<T>
|
|
|
27
27
|
variantMap: RecipeVariantMap<T>
|
|
28
28
|
resolve: (props: RecipeSelection<T>) => SystemStyleObject
|
|
29
29
|
config: RecipeConfig<T>
|
|
30
|
-
splitVariantProps<Props extends RecipeSelection<T>>(
|
|
31
|
-
props: Props,
|
|
32
|
-
): [RecipeSelection<T>, Pretty<Omit<Props, keyof RecipeVariantRecord>>]
|
|
30
|
+
splitVariantProps<Props extends RecipeSelection<T>>(props: Props): [RecipeSelection<T>, Pretty<Omit<Props, keyof T>>]
|
|
33
31
|
}
|
|
34
32
|
|
|
35
33
|
export type RecipeCompoundSelection<T extends RecipeVariantRecord> = {
|