@pandacss/studio 0.0.0-dev-20231019221036 → 0.0.0-dev-20231020171339

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-20231019221036",
3
+ "version": "0.0.0-dev-20231020171339",
4
4
  "description": "The automated token documentation for Panda CSS",
5
5
  "main": "dist/studio.js",
6
6
  "module": "dist/studio.mjs",
@@ -33,12 +33,12 @@
33
33
  "react": "18.2.0",
34
34
  "react-dom": "18.2.0",
35
35
  "vite": "4.4.11",
36
- "@pandacss/config": "0.0.0-dev-20231019221036",
37
- "@pandacss/logger": "0.0.0-dev-20231019221036",
38
- "@pandacss/node": "0.0.0-dev-20231019221036",
39
- "@pandacss/shared": "0.0.0-dev-20231019221036",
40
- "@pandacss/token-dictionary": "0.0.0-dev-20231019221036",
41
- "@pandacss/types": "0.0.0-dev-20231019221036"
36
+ "@pandacss/config": "0.0.0-dev-20231020171339",
37
+ "@pandacss/logger": "0.0.0-dev-20231020171339",
38
+ "@pandacss/node": "0.0.0-dev-20231020171339",
39
+ "@pandacss/shared": "0.0.0-dev-20231020171339",
40
+ "@pandacss/token-dictionary": "0.0.0-dev-20231020171339",
41
+ "@pandacss/types": "0.0.0-dev-20231020171339"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/react": "18.2.22",
@@ -37,4 +37,6 @@ type JsxElements = { [K in keyof JSX.IntrinsicElements]: PandaComponent<K, {}> }
37
37
 
38
38
  export type Panda = JsxFactory & JsxElements
39
39
 
40
- export type HTMLPandaProps<T extends ElementType> = JsxHTMLProps<ComponentProps<T>, JsxStyleProps>
40
+ export type HTMLPandaProps<T extends ElementType> = JsxHTMLProps<ComponentProps<T>, JsxStyleProps>
41
+
42
+ export type PandaVariantProps<T extends PandaComponent<any, any>> = T extends PandaComponent<any, infer Props> ? Props : never