@pandacss/types 0.0.0-dev-20230109083220 → 0.0.0-dev-20230109095544

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/shared.d.ts +5 -1
  2. package/package.json +1 -1
package/dist/shared.d.ts CHANGED
@@ -14,7 +14,11 @@ export type AnyFunction<T = any> = (...args: T[]) => any
14
14
 
15
15
  export type StringKeyOf<T> = Extract<keyof T, string>
16
16
 
17
- export type Extendable<T> = T & { extend?: T }
17
+ type DeepPartial<T> = {
18
+ [P in keyof T]+?: DeepPartial<T[P]>
19
+ }
20
+
21
+ export type Extendable<T> = T | { extend?: T | DeepPartial<T> }
18
22
 
19
23
  type Nullable<T> = T | null | undefined
20
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20230109083220",
3
+ "version": "0.0.0-dev-20230109095544",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",