@blueking/bkui-form 0.0.42-beta.5 → 0.0.42-beta.6

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,8 +10,12 @@ export declare function intersection(arr1: any, arr2: any): any;
10
10
  export declare function gcd(a: any, b: any): any;
11
11
  export declare function scm(a: any, b: any): number;
12
12
  export declare function initializationValue(type: JSONSchema6TypeName, defaultInitValue?: Partial<Record<JSONSchema6TypeName, any>>): any;
13
- export declare function mergeDeep<T>(target: any, ...sources: any[]): T;
13
+ type DeepPartial<T> = {
14
+ [P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P];
15
+ };
16
+ export declare function mergeDeep<T extends object>(target: Partial<T>, ...sources: DeepPartial<T>[]): T;
14
17
  export declare function deepEquals(a: any, b: any, ca?: any[], cb?: any[]): any;
15
18
  export declare function orderProperties(properties: any, order: any): string[];
16
19
  export declare function upperFirstLetter(str: string): string;
17
20
  export declare const getCookie: (name: any) => string | null;
21
+ export {};
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.0.42-beta.5",
2
+ "version": "0.0.42-beta.6",
3
3
  "main": "dist/bkui-form-umd-min.js",
4
4
  "name": "@blueking/bkui-form",
5
5
  "scripts": {