z-crud-table 0.0.56 → 0.0.58
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/CrudTable.vue.d.ts +4 -4
- package/dist/z-crud-table.js +1196 -1189
- package/dist/z-crud-table.umd.cjs +5 -5
- package/package.json +1 -1
|
@@ -96,7 +96,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
96
96
|
type: PropType<(mode: string, data: any) => void>;
|
|
97
97
|
};
|
|
98
98
|
onBeforeSubmit: {
|
|
99
|
-
type: PropType<(data: any, mode: "add" | "edit") => any>;
|
|
99
|
+
type: PropType<(data: any, mode: "add" | "view" | "edit") => any>;
|
|
100
100
|
};
|
|
101
101
|
onAfterSubmit: {
|
|
102
102
|
type: PropType<(mode: string, data: any) => void>;
|
|
@@ -184,7 +184,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
184
184
|
*/
|
|
185
185
|
dialogFormLabelWidth: {
|
|
186
186
|
type: StringConstructor;
|
|
187
|
-
default:
|
|
187
|
+
default: string;
|
|
188
188
|
};
|
|
189
189
|
/**
|
|
190
190
|
* @description 是否以 multipart/form-data 格式提交表单。
|
|
@@ -327,7 +327,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
327
327
|
type: PropType<(mode: string, data: any) => void>;
|
|
328
328
|
};
|
|
329
329
|
onBeforeSubmit: {
|
|
330
|
-
type: PropType<(data: any, mode: "add" | "edit") => any>;
|
|
330
|
+
type: PropType<(data: any, mode: "add" | "view" | "edit") => any>;
|
|
331
331
|
};
|
|
332
332
|
onAfterSubmit: {
|
|
333
333
|
type: PropType<(mode: string, data: any) => void>;
|
|
@@ -415,7 +415,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
415
415
|
*/
|
|
416
416
|
dialogFormLabelWidth: {
|
|
417
417
|
type: StringConstructor;
|
|
418
|
-
default:
|
|
418
|
+
default: string;
|
|
419
419
|
};
|
|
420
420
|
/**
|
|
421
421
|
* @description 是否以 multipart/form-data 格式提交表单。
|