fix(vant-compat): [Toast][Dialog] fix missed and incorrect export error #12952 (#12953)

Co-authored-by: yongbo.zeng_U+ <yongbo.zeng@united-imaging.com>
This commit is contained in:
Robert Zeng 2024-06-22 19:21:01 +08:00 committed by GitHub
parent 04c19453bf
commit 991a7fd5bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 1 deletions

View File

@ -13,7 +13,7 @@ export const Dialog = (...args: Parameters<typeof showDialog>) =>
Dialog.Component = VanDialog;
Dialog.alert = Dialog;
Dialog.config = showConfirmDialog;
Dialog.confirm = showConfirmDialog;
Dialog.close = closeDialog;
Dialog.setDefaultOptions = setDialogDefaultOptions;
Dialog.resetDefaultOptions = resetDialogDefaultOptions;

View File

@ -3,6 +3,7 @@ import {
closeToast,
showFailToast,
showSuccessToast,
showLoadingToast,
allowMultipleToast,
setToastDefaultOptions,
resetToastDefaultOptions,
@ -33,6 +34,14 @@ Toast.success = (...args: Parameters<typeof showSuccessToast>) => {
};
};
Toast.loading = (...args: Parameters<typeof showLoadingToast>) => {
const toast = showLoadingToast(...args);
return {
clear: toast.close,
...toast,
}
}
Toast.clear = closeToast;
Toast.allowMultiple = allowMultipleToast;
Toast.setDefaultOptions = setToastDefaultOptions;