react-table-edit 1.4.46 → 1.4.47

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.
@@ -7,4 +7,4 @@ export declare const messageBoxError: (t: TFunction<"translation", undefined>, m
7
7
  export declare const notificationError: (param: string) => string;
8
8
  export declare const notificationSuccess: (param: string) => string;
9
9
  export declare const messageBoxConfirmAsync: (t: TFunction<"translation", undefined>, message: string, title?: string, btnOk?: string, btnCancel?: string) => Promise<boolean>;
10
- export declare const messageHtmlBoxConfirmAsync: (t: TFunction<"translation", undefined>, message: any[], handle: any, data: any, title?: string, btnOk?: string, btnCancel?: string) => Promise<unknown>;
10
+ export declare const messageHtmlBoxConfirmAsync: (t: TFunction<"translation", undefined>, message: any[], title?: string, btnOk?: string, btnCancel?: string) => Promise<unknown>;
package/dist/index.d.ts CHANGED
@@ -452,7 +452,7 @@ declare const messageBoxError: (t: TFunction<"translation", undefined>, message:
452
452
  declare const notificationError: (param: string) => string;
453
453
  declare const notificationSuccess: (param: string) => string;
454
454
  declare const messageBoxConfirmAsync: (t: TFunction<"translation", undefined>, message: string, title?: string, btnOk?: string, btnCancel?: string) => Promise<boolean>;
455
- declare const messageHtmlBoxConfirmAsync: (t: TFunction<"translation", undefined>, message: any[], handle: any, data: any, title?: string, btnOk?: string, btnCancel?: string) => Promise<unknown>;
455
+ declare const messageHtmlBoxConfirmAsync: (t: TFunction<"translation", undefined>, message: any[], title?: string, btnOk?: string, btnCancel?: string) => Promise<unknown>;
456
456
 
457
457
  declare const useOnClickOutside: (ref: any, handler: any) => void;
458
458
  declare const checkThousandSeparator: (thousandSeparator: any, decimalSeparator: any) => any;
package/dist/index.js CHANGED
@@ -39893,7 +39893,7 @@ const messageBoxConfirmAsync = async (t, message, title = 'Important', btnOk = '
39893
39893
  });
39894
39894
  });
39895
39895
  };
39896
- const messageHtmlBoxConfirmAsync = (t, message, handle, data, title = 'Important', btnOk = 'Ok', btnCancel = 'Cancel') => {
39896
+ const messageHtmlBoxConfirmAsync = (t, message, title = 'Important', btnOk = 'Ok', btnCancel = 'Cancel') => {
39897
39897
  return new Promise((resolve) => {
39898
39898
  MySwal.fire({
39899
39899
  title: t(title),