@pandacss/types 0.0.0-dev-20230126175306 → 0.0.0-dev-20230128071733

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.
Files changed (2) hide show
  1. package/dist/tokens.d.ts +1 -6
  2. package/package.json +1 -1
package/dist/tokens.d.ts CHANGED
@@ -60,12 +60,7 @@ type Gradient = {
60
60
  }>
61
61
  }
62
62
 
63
- type Asset =
64
- | {
65
- type: 'url' | 'data'
66
- value: string
67
- }
68
- | { type: 'svg'; path: string }
63
+ type Asset = { type: 'url' | 'svg'; value: string }
69
64
 
70
65
  export type TokenDataTypes = {
71
66
  zIndex: number
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20230126175306",
3
+ "version": "0.0.0-dev-20230128071733",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",