@pandacss/studio 0.0.0-dev-20231122120702 → 0.0.0-dev-20231122132710

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-20231122120702",
3
+ "version": "0.0.0-dev-20231122132710",
4
4
  "description": "The automated token documentation for Panda CSS",
5
5
  "main": "dist/studio.js",
6
6
  "module": "dist/studio.mjs",
@@ -42,12 +42,12 @@
42
42
  "react": "18.2.0",
43
43
  "react-dom": "18.2.0",
44
44
  "vite": "4.4.11",
45
- "@pandacss/config": "0.0.0-dev-20231122120702",
46
- "@pandacss/logger": "0.0.0-dev-20231122120702",
47
- "@pandacss/node": "0.0.0-dev-20231122120702",
48
- "@pandacss/shared": "0.0.0-dev-20231122120702",
49
- "@pandacss/token-dictionary": "0.0.0-dev-20231122120702",
50
- "@pandacss/types": "0.0.0-dev-20231122120702"
45
+ "@pandacss/config": "0.0.0-dev-20231122132710",
46
+ "@pandacss/logger": "0.0.0-dev-20231122132710",
47
+ "@pandacss/node": "0.0.0-dev-20231122132710",
48
+ "@pandacss/shared": "0.0.0-dev-20231122132710",
49
+ "@pandacss/token-dictionary": "0.0.0-dev-20231122132710",
50
+ "@pandacss/types": "0.0.0-dev-20231122132710"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/react": "18.2.37",
@@ -8,7 +8,7 @@ export type RecipeVariantRecord = Record<any, Record<any, SystemStyleObject>>
8
8
  export type RecipeSelection<T extends RecipeVariantRecord> = keyof any extends keyof T
9
9
  ? {}
10
10
  : {
11
- [K in keyof T]?: StringToBoolean<keyof T[K]>
11
+ [K in keyof T]?: StringToBoolean<keyof T[K]> | undefined
12
12
  }
13
13
 
14
14
  export type RecipeVariantFn<T extends RecipeVariantRecord> = (props?: RecipeSelection<T>) => string
@@ -39,7 +39,7 @@ export interface RecipeRuntimeFn<T extends RecipeVariantRecord> extends RecipeVa
39
39
  type OneOrMore<T> = T | Array<T>
40
40
 
41
41
  export type RecipeCompoundSelection<T> = {
42
- [K in keyof T]?: OneOrMore<StringToBoolean<keyof T[K]>>
42
+ [K in keyof T]?: OneOrMore<StringToBoolean<keyof T[K]>> | undefined
43
43
  }
44
44
 
45
45
  export type RecipeCompoundVariant<T> = T & {