@pandacss/types 0.18.2 → 0.18.3

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.
@@ -1,5 +1,9 @@
1
1
  import type { CompositionStyleObject } from './system-types'
2
- import type { Token } from './tokens'
2
+
3
+ interface Token<T> {
4
+ value: T
5
+ description?: string
6
+ }
3
7
 
4
8
  interface Recursive<T> {
5
9
  [key: string]: Recursive<T> | T
package/dist/recipe.d.ts CHANGED
@@ -1,6 +1,4 @@
1
- import type { SystemStyleObject, DistributiveOmit } from './system-types'
2
-
3
- type Pretty<T> = { [K in keyof T]: T[K] } & {}
1
+ import type { SystemStyleObject, DistributiveOmit, Pretty } from './system-types'
4
2
 
5
3
  type StringToBoolean<T> = T extends 'true' | 'false' ? boolean : T
6
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.18.2",
3
+ "version": "0.18.3",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",
@@ -24,7 +24,7 @@
24
24
  "hookable": "5.5.3",
25
25
  "ncp": "^2.0.0",
26
26
  "pkg-types": "1.0.3",
27
- "@pandacss/extractor": "0.18.2"
27
+ "@pandacss/extractor": "0.18.3"
28
28
  },
29
29
  "scripts": {
30
30
  "dev": "tsx scripts/watch.ts",