wargerm 0.5.7 → 0.5.10
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.
- package/dist/components/TabelCard/example/demo1.d.ts +3 -0
- package/dist/components/Upload/example/demo1.d.ts +3 -0
- package/dist/components/Upload/index.d.ts +3 -0
- package/dist/components/WForm/index.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +427 -149
- package/dist/index.js +438 -158
- package/dist/utils/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/utils/index.d.ts
CHANGED
@@ -14,3 +14,4 @@ export declare function filterObj(obj: Record<string, any>): Record<string, any>
|
|
14
14
|
export declare function getArrayLayer(arr: any, attr: string | number, index?: number): number;
|
15
15
|
export declare const calcWidth: (width: number) => number;
|
16
16
|
export declare const calcHeight: (height: number) => number;
|
17
|
+
export declare function deepCopy(target: any): any;
|