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.
- package/dist/component/notifications.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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[],
|
|
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[],
|
|
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,
|
|
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),
|