@pandacss/studio 0.0.0-dev-20240310025819 → 0.0.0-dev-20240310153511

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-20240310025819",
3
+ "version": "0.0.0-dev-20240310153511",
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-20240310025819",
52
- "@pandacss/logger": "0.0.0-dev-20240310025819",
53
- "@pandacss/shared": "0.0.0-dev-20240310025819",
54
- "@pandacss/token-dictionary": "0.0.0-dev-20240310025819",
55
- "@pandacss/types": "0.0.0-dev-20240310025819",
56
- "@pandacss/astro-plugin-studio": "0.0.0-dev-20240310025819"
51
+ "@pandacss/config": "0.0.0-dev-20240310153511",
52
+ "@pandacss/logger": "0.0.0-dev-20240310153511",
53
+ "@pandacss/shared": "0.0.0-dev-20240310153511",
54
+ "@pandacss/types": "0.0.0-dev-20240310153511",
55
+ "@pandacss/token-dictionary": "0.0.0-dev-20240310153511",
56
+ "@pandacss/astro-plugin-studio": "0.0.0-dev-20240310153511"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@types/react": "18.2.55",
@@ -325,17 +325,6 @@ type StrictableProps =
325
325
  | 'backgroundAttachment'
326
326
  | 'backgroundClip'
327
327
  | 'borderCollapse'
328
- | 'border'
329
- | 'borderBlock'
330
- | 'borderBlockEnd'
331
- | 'borderBlockStart'
332
- | 'borderBottom'
333
- | 'borderInline'
334
- | 'borderInlineEnd'
335
- | 'borderInlineStart'
336
- | 'borderLeft'
337
- | 'borderRight'
338
- | 'borderTop'
339
328
  | 'borderBlockEndStyle'
340
329
  | 'borderBlockStartStyle'
341
330
  | 'borderBlockStyle'
@@ -387,7 +376,8 @@ type StrictableProps =
387
376
  | 'wordBreak'
388
377
  | 'writingMode'
389
378
 
390
- type WithEscapeHatch<T> = T | `[${string}]`
379
+ type WithColorOpacityModifier<T> = T extends string ? `${T}/${string}` : T
380
+ type WithEscapeHatch<T> = T | `[${string}]` | `${T}/{string}` | WithColorOpacityModifier<T>
391
381
 
392
382
  type FilterVagueString<Key, Value> = Value extends boolean
393
383
  ? Value