cd-form 2.0.53 → 2.0.54
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/api/visualdev.d.ts +1 -0
- package/dist/cd-form.js +18266 -13908
- package/dist/cd-form.umd.cjs +104 -97
- package/dist/style.css +1 -1
- package/package.json +69 -66
package/dist/api/visualdev.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export declare function batchSave(modelId: string, rows: Record<string, any>[]):
|
|
|
15
15
|
export declare function exportExcel(modelId: string): Promise< AxiosResponse<any, any, {}>>;
|
|
16
16
|
export declare function downloadTemplate(modelId: string): Promise< AxiosResponse<any, any, {}>>;
|
|
17
17
|
export declare function importExcel(modelId: string, data: FormData): Promise< AxiosResponse<any, any, {}>>;
|
|
18
|
+
export declare function batchImportJSON(modelId: string, rows: Record<string, any>[]): Promise< AxiosResponse<any, any, {}>>;
|
|
18
19
|
export declare function importPreview(data: any): Promise< AxiosResponse<any, any, {}>>;
|
|
19
20
|
export declare function getFieldDataSelect(modelId: string, params: any): Promise< AxiosResponse<any, any, {}>>;
|
|
20
21
|
export declare function getReleaseInfo(releaseId: string): Promise< AxiosResponse<any, any, {}>>;
|