cd-form 2.0.27 → 2.0.29
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/CdForm.vue.d.ts +2 -2
- package/dist/cd-form.js +3511 -3514
- package/dist/cd-form.umd.cjs +36 -36
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/CdForm.vue.d.ts
CHANGED
|
@@ -200,7 +200,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
200
200
|
mode?: string;
|
|
201
201
|
mappings?: any[];
|
|
202
202
|
} | undefined) => void;
|
|
203
|
-
export: () => void;
|
|
203
|
+
export: (mode?: "all" | "page" | "selected" | undefined) => void;
|
|
204
204
|
"download-template": () => void;
|
|
205
205
|
"batch-delete": (ids: string[]) => void;
|
|
206
206
|
}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
@@ -357,7 +357,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
|
|
|
357
357
|
mode?: string;
|
|
358
358
|
mappings?: any[];
|
|
359
359
|
} | undefined) => any) | undefined;
|
|
360
|
-
onExport?: (() => any) | undefined;
|
|
360
|
+
onExport?: ((mode?: "all" | "page" | "selected" | undefined) => any) | undefined;
|
|
361
361
|
"onDownload-template"?: (() => any) | undefined;
|
|
362
362
|
"onBatch-delete"?: ((ids: string[]) => any) | undefined;
|
|
363
363
|
}>, {
|