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

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-20231115170809",
3
+ "version": "0.0.0-dev-20231121120209",
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-20231115170809",
46
- "@pandacss/logger": "0.0.0-dev-20231115170809",
47
- "@pandacss/node": "0.0.0-dev-20231115170809",
48
- "@pandacss/shared": "0.0.0-dev-20231115170809",
49
- "@pandacss/token-dictionary": "0.0.0-dev-20231115170809",
50
- "@pandacss/types": "0.0.0-dev-20231115170809"
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"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/react": "18.2.37",
@@ -302,6 +302,7 @@ interface PropertyValueTypes {
302
302
  y: Shorthand<"translateY">;
303
303
  }
304
304
 
305
+
305
306
  export type PropertyValue<T extends string> = T extends keyof PropertyTypes
306
307
  ? ConditionalValue<PropertyTypes[T] | CssValue<T> | (string & {})>
307
308
  : T extends keyof CssProperties