@pandacss/types 0.0.0-dev-20240227110217 → 0.0.0-dev-20240227214335

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.
@@ -10,5 +10,5 @@ export interface PropertyTypes {}
10
10
  export type PropertyValue<K extends string> = K extends keyof PropertyTypes
11
11
  ? ConditionalValue<PropertyTypes[K]>
12
12
  : K extends keyof CssProperties
13
- ? ConditionalValue<CssProperties[K]>
14
- : never
13
+ ? ConditionalValue<CssProperties[K]>
14
+ : never
package/dist/shared.d.ts CHANGED
@@ -26,12 +26,12 @@ type Paths<T, Prefix extends string = '', Depth extends number = 0> = {
26
26
  [K in keyof T]: Depth extends 0
27
27
  ? never
28
28
  : T[K] extends object
29
- ? K extends string
30
- ? `${Prefix}${K}` | Paths<T[K], `${Prefix}${K}.`, Depth extends 1 ? 0 : Subtract<Depth, 1>>
31
- : never
32
- : K extends string | number
33
- ? `${Prefix}${K}`
34
- : never
29
+ ? K extends string
30
+ ? `${Prefix}${K}` | Paths<T[K], `${Prefix}${K}.`, Depth extends 1 ? 0 : Subtract<Depth, 1>>
31
+ : never
32
+ : K extends string | number
33
+ ? `${Prefix}${K}`
34
+ : never
35
35
  }[keyof T]
36
36
 
37
37
  export type PathIn<T, Key extends keyof T> = Key extends string ? Paths<T[Key], `${Key}.`, 1> : never
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20240227110217",
3
+ "version": "0.0.0-dev-20240227214335",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",
@@ -30,7 +30,7 @@
30
30
  "microdiff": "1.3.2",
31
31
  "ncp": "2.0.0",
32
32
  "pkg-types": "1.0.3",
33
- "@pandacss/extractor": "0.0.0-dev-20240227110217"
33
+ "@pandacss/extractor": "0.0.0-dev-20240227214335"
34
34
  },
35
35
  "scripts": {
36
36
  "dev": "tsx scripts/watch.ts",