@pandacss/studio 0.0.0-dev-20240218160739 → 0.0.0-dev-20240218175501
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-20240218175501",
|
|
4
4
|
"description": "The automated token documentation for Panda CSS",
|
|
5
5
|
"main": "dist/studio.js",
|
|
6
6
|
"module": "dist/studio.mjs",
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
"react": "18.2.0",
|
|
49
49
|
"react-dom": "18.2.0",
|
|
50
50
|
"vite": "5.1.3",
|
|
51
|
-
"@pandacss/
|
|
52
|
-
"@pandacss/
|
|
53
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
54
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
55
|
-
"@pandacss/types": "0.0.0-dev-
|
|
56
|
-
"@pandacss/astro-plugin-studio": "0.0.0-dev-
|
|
51
|
+
"@pandacss/logger": "0.0.0-dev-20240218175501",
|
|
52
|
+
"@pandacss/config": "0.0.0-dev-20240218175501",
|
|
53
|
+
"@pandacss/shared": "0.0.0-dev-20240218175501",
|
|
54
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20240218175501",
|
|
55
|
+
"@pandacss/types": "0.0.0-dev-20240218175501",
|
|
56
|
+
"@pandacss/astro-plugin-studio": "0.0.0-dev-20240218175501"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/react": "18.2.55",
|
|
@@ -75,10 +75,6 @@ export interface RecipeDefinition<T extends RecipeVariantRecord = RecipeVariantR
|
|
|
75
75
|
* The styles to apply when a combination of variants is selected.
|
|
76
76
|
*/
|
|
77
77
|
compoundVariants?: Pretty<RecipeCompoundVariant<RecipeCompoundSelection<T>>>[]
|
|
78
|
-
/**
|
|
79
|
-
* Variants to pre-generate, will be include in the final `config.staticCss`
|
|
80
|
-
*/
|
|
81
|
-
staticCss?: RecipeRule[]
|
|
82
78
|
}
|
|
83
79
|
|
|
84
80
|
export type RecipeCreatorFn = <T extends RecipeVariantRecord>(config: RecipeDefinition<T>) => RecipeRuntimeFn<T>
|
|
@@ -99,6 +95,10 @@ interface RecipeConfigMeta {
|
|
|
99
95
|
* @example ['Button', 'Link', /Button$/]
|
|
100
96
|
*/
|
|
101
97
|
jsx?: Array<string | RegExp>
|
|
98
|
+
/**
|
|
99
|
+
* Variants to pre-generate, will be include in the final `config.staticCss`
|
|
100
|
+
*/
|
|
101
|
+
staticCss?: RecipeRule[]
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
export interface RecipeConfig<T extends RecipeVariantRecord = RecipeVariantRecord>
|
|
@@ -153,10 +153,6 @@ export interface SlotRecipeDefinition<
|
|
|
153
153
|
* The styles to apply when a combination of variants is selected.
|
|
154
154
|
*/
|
|
155
155
|
compoundVariants?: Pretty<SlotRecipeCompoundVariant<S, RecipeCompoundSelection<T>>>[]
|
|
156
|
-
/**
|
|
157
|
-
* Variants to pre-generate, will be include in the final `config.staticCss`
|
|
158
|
-
*/
|
|
159
|
-
staticCss?: RecipeRule[]
|
|
160
156
|
}
|
|
161
157
|
|
|
162
158
|
export type SlotRecipeCreatorFn = <S extends string, T extends SlotRecipeVariantRecord<S>>(
|