@pandacss/studio 0.0.0-dev-20240315002504 → 0.0.0-dev-20240315003802

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-20240315002504",
3
+ "version": "0.0.0-dev-20240315003802",
4
4
  "description": "The automated token documentation for Panda CSS",
5
5
  "main": "dist/studio.js",
6
6
  "module": "dist/studio.mjs",
@@ -48,12 +48,12 @@
48
48
  "react": "18.2.0",
49
49
  "react-dom": "18.2.0",
50
50
  "vite": "5.1.3",
51
- "@pandacss/config": "0.0.0-dev-20240315002504",
52
- "@pandacss/logger": "0.0.0-dev-20240315002504",
53
- "@pandacss/shared": "0.0.0-dev-20240315002504",
54
- "@pandacss/token-dictionary": "0.0.0-dev-20240315002504",
55
- "@pandacss/types": "0.0.0-dev-20240315002504",
56
- "@pandacss/astro-plugin-studio": "0.0.0-dev-20240315002504"
51
+ "@pandacss/config": "0.0.0-dev-20240315003802",
52
+ "@pandacss/logger": "0.0.0-dev-20240315003802",
53
+ "@pandacss/shared": "0.0.0-dev-20240315003802",
54
+ "@pandacss/token-dictionary": "0.0.0-dev-20240315003802",
55
+ "@pandacss/types": "0.0.0-dev-20240315003802",
56
+ "@pandacss/astro-plugin-studio": "0.0.0-dev-20240315003802"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@types/react": "18.2.55",
@@ -312,6 +312,8 @@ interface PropertyValueTypes {
312
312
  scrollPaddingX: Shorthand<"scrollPaddingInline">;
313
313
  }
314
314
 
315
+
316
+
315
317
  type StrictableProps =
316
318
  | 'alignContent'
317
319
  | 'alignItems'
@@ -3,10 +3,14 @@ import type { ConditionalValue } from './conditions';
3
3
  import type { PropertyValue } from './prop-type';
4
4
  import type { Token } from '../tokens/index';
5
5
 
6
- export type CssVarProperties = {
7
- [key in `--${string}`]?: ConditionalValue<Token | (string & {}) | (number & {})>
6
+ type CssVarValue = ConditionalValue<Token | (string & {}) | (number & {})>
7
+
8
+ type GenericCssVarProperties = {
9
+ [key in `--${string & {}}`]?: CssVarValue
8
10
  }
9
11
 
12
+ export type CssVarProperties = GenericCssVarProperties
13
+
10
14
  export interface SystemProperties {
11
15
  WebkitAppearance?: PropertyValue<'WebkitAppearance'>
12
16
  WebkitBorderBefore?: PropertyValue<'WebkitBorderBefore'>