z-crud-table 0.0.67 → 0.0.70

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.
@@ -239,12 +239,12 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
239
239
  refresh: () => Promise<void>;
240
240
  search: (params?: any) => void;
241
241
  handleDelete: (ids: number[]) => Promise<void>;
242
- openDialog: (mode: "view" | "add" | "edit", dataPayload?: any) => Promise<void>;
243
- submit: (mode: "view" | "add" | "edit", data: Record<string, any>) => Promise<void>;
242
+ openDialog: (mode: "add" | "view" | "edit", dataPayload?: any) => Promise<void>;
243
+ submit: (mode: "add" | "view" | "edit", data: Record<string, any>) => Promise<void>;
244
244
  closeDialog: () => void;
245
245
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
246
- submit: (...args: any[]) => void;
247
246
  delete: (...args: any[]) => void;
247
+ submit: (...args: any[]) => void;
248
248
  "open-dialog": (...args: any[]) => void;
249
249
  "update:initialSearchForm": (...args: any[]) => void;
250
250
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -483,8 +483,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
483
483
  default: string;
484
484
  };
485
485
  }>> & Readonly<{
486
- onSubmit?: ((...args: any[]) => any) | undefined;
487
486
  onDelete?: ((...args: any[]) => any) | undefined;
487
+ onSubmit?: ((...args: any[]) => any) | undefined;
488
488
  "onOpen-dialog"?: ((...args: any[]) => any) | undefined;
489
489
  "onUpdate:initialSearchForm"?: ((...args: any[]) => any) | undefined;
490
490
  }>, {
@@ -564,7 +564,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
564
564
  }): any;
565
565
  "dialog-form"?(_: {
566
566
  formData: Record<string, any>;
567
- mode: "view" | "add" | "edit";
567
+ mode: "add" | "view" | "edit";
568
568
  formRef: (el: any) => void;
569
569
  }): any;
570
570
  "dialog-footer"?(_: {
@@ -572,7 +572,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
572
572
  visible: boolean;
573
573
  loading: boolean;
574
574
  submitting: boolean;
575
- mode: "view" | "add" | "edit";
575
+ mode: "add" | "view" | "edit";
576
576
  data: Record<string, any>;
577
577
  formRef: any;
578
578
  };