@pandacss/studio 0.0.0-dev-20231121120209 → 0.0.0-dev-20231121130830

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-20231121120209",
3
+ "version": "0.0.0-dev-20231121130830",
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-20231121120209",
46
- "@pandacss/logger": "0.0.0-dev-20231121120209",
47
- "@pandacss/node": "0.0.0-dev-20231121120209",
48
- "@pandacss/shared": "0.0.0-dev-20231121120209",
49
- "@pandacss/token-dictionary": "0.0.0-dev-20231121120209",
50
- "@pandacss/types": "0.0.0-dev-20231121120209"
45
+ "@pandacss/config": "0.0.0-dev-20231121130830",
46
+ "@pandacss/logger": "0.0.0-dev-20231121130830",
47
+ "@pandacss/node": "0.0.0-dev-20231121130830",
48
+ "@pandacss/shared": "0.0.0-dev-20231121130830",
49
+ "@pandacss/token-dictionary": "0.0.0-dev-20231121130830",
50
+ "@pandacss/types": "0.0.0-dev-20231121130830"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/react": "18.2.37",
@@ -60,9 +60,11 @@ export interface ExtendableGlobalStyleObject {
60
60
  extend?: GlobalStyleObject | undefined
61
61
  }
62
62
 
63
- export type CompositionStyleObject<Property extends string> = Nested<{
64
- [K in Property]?: K extends keyof SystemStyleObject ? SystemStyleObject[K] : unknown
65
- }>
63
+ type FilterStyleObject<P extends string> = {
64
+ [K in P]?: K extends keyof SystemStyleObject ? SystemStyleObject[K] : unknown
65
+ }
66
+
67
+ export type CompositionStyleObject<Property extends string> = Nested<FilterStyleObject<Property> & CssVarProperties>
66
68
 
67
69
  /* -----------------------------------------------------------------------------
68
70
  * Jsx style props