@pandacss/types 0.0.0-dev-20230503230609 → 0.0.0-dev-20230504100614

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,3 +1,4 @@
1
+ import type { ConditionalValue } from './conditions'
1
2
  import type { PropertiesFallback } from './csstype'
2
3
  import type { PropertyValue } from './prop-type'
3
4
 
@@ -11,7 +12,7 @@ type Number = number & {}
11
12
  type CssProperties = PropertiesFallback<String | Number>
12
13
 
13
14
  export type CssVarProperties = {
14
- [key in `--${string}`]?: string | number
15
+ [key in `--${string}`]?: ConditionalValue<string | number>
15
16
  }
16
17
 
17
18
  export type SystemProperties = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20230503230609",
3
+ "version": "0.0.0-dev-20230504100614",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",
@@ -16,7 +16,7 @@
16
16
  "csstype": "3.1.2"
17
17
  },
18
18
  "dependencies": {
19
- "@pandacss/extractor": "0.0.0-dev-20230503230609"
19
+ "@pandacss/extractor": "0.0.0-dev-20230504100614"
20
20
  },
21
21
  "scripts": {
22
22
  "build": "tsx scripts/build.ts",