@pandacss/studio 0.0.0-dev-20230830225324 → 0.0.0-dev-20230901162735

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-20230830225324",
3
+ "version": "0.0.0-dev-20230901162735",
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.9",
36
- "@pandacss/types": "0.0.0-dev-20230830225324",
37
- "@pandacss/config": "0.0.0-dev-20230830225324",
38
- "@pandacss/shared": "0.0.0-dev-20230830225324",
39
- "@pandacss/token-dictionary": "0.0.0-dev-20230830225324",
40
- "@pandacss/logger": "0.0.0-dev-20230830225324",
41
- "@pandacss/node": "0.0.0-dev-20230830225324"
36
+ "@pandacss/types": "0.0.0-dev-20230901162735",
37
+ "@pandacss/config": "0.0.0-dev-20230901162735",
38
+ "@pandacss/shared": "0.0.0-dev-20230901162735",
39
+ "@pandacss/token-dictionary": "0.0.0-dev-20230901162735",
40
+ "@pandacss/logger": "0.0.0-dev-20230901162735",
41
+ "@pandacss/node": "0.0.0-dev-20230901162735"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/react": "18.2.18",
45
45
  "@types/react-dom": "18.2.7",
46
46
  "@vitejs/plugin-react": "4.0.4",
47
47
  "execa": "7.2.0",
48
- "@pandacss/dev": "0.0.0-dev-20230830225324"
48
+ "@pandacss/dev": "0.0.0-dev-20230901162735"
49
49
  },
50
50
  "scripts": {
51
51
  "codegen": "panda",
@@ -100,7 +100,6 @@ export type SlotRecipeVariantFn<S extends string, T extends RecipeVariantRecord>
100
100
  ) => SlotRecord<S, string>
101
101
 
102
102
  export type SlotRecipeRuntimeFn<S extends string, T extends SlotRecipeVariantRecord<S>> = SlotRecipeVariantFn<S, T> & {
103
- raw: (props?: RecipeSelection<T>) => Record<S, SystemStyleObject>
104
103
  variantKeys: (keyof T)[]
105
104
  variantMap: RecipeVariantMap<T>
106
105
  splitVariantProps<Props extends RecipeSelection<T>>(props: Props): [RecipeSelection<T>, Pretty<Omit<Props, keyof T>>]