@wisemen/vue-core-components 1.13.0 → 1.15.0
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/{AlertCircleIcon-Osj38Uxx.js → AlertCircleIcon-BwptIDb8.js} +1 -1
- package/dist/{AlertTriangleIcon-DW2k0_tY.js → AlertTriangleIcon-NOWCI6IX.js} +1 -1
- package/dist/{ArrowDownIcon-Z8uLQAGC.js → ArrowDownIcon-Bi4sAptI.js} +1 -1
- package/dist/{ArrowLeftIcon-ChrRmjQq.js → ArrowLeftIcon-MgePzME0.js} +1 -1
- package/dist/{ArrowRightIcon-U8_lHDlm.js → ArrowRightIcon-CCTM4ZKE.js} +1 -1
- package/dist/{ArrowUpIcon-CZ2AWOz8.js → ArrowUpIcon-CNEcxoio.js} +1 -1
- package/dist/{CalendarIcon-DLnK5D3m.js → CalendarIcon-Bp1yefMf.js} +1 -1
- package/dist/{CheckCircleIcon-D7eGMX-4.js → CheckCircleIcon-BTg6A7Nd.js} +1 -1
- package/dist/{CheckIcon-D2dFRw9r.js → CheckIcon-C4jVhCpX.js} +1 -1
- package/dist/{ChevronLeftDoubleIcon-D41EDFcc.js → ChevronLeftDoubleIcon-ChcvIx86.js} +1 -1
- package/dist/{ChevronLeftIcon-qLqV3hY9.js → ChevronLeftIcon-8YiPKBNT.js} +1 -1
- package/dist/{ChevronRightDoubleIcon-DUyQ_UBw.js → ChevronRightDoubleIcon-CwJ4bfXC.js} +1 -1
- package/dist/{ChevronRightIcon-DMez0v5h.js → ChevronRightIcon-BtPbIBjQ.js} +1 -1
- package/dist/{CloseIcon-BRAqiIfh.js → CloseIcon-DXCGkALh.js} +1 -1
- package/dist/{EyeIcon-BXsjW_6_.js → EyeIcon-DmTN0zBI.js} +1 -1
- package/dist/{EyeOffIcon-Curu6YMU.js → EyeOffIcon-C5F3tIfD.js} +1 -1
- package/dist/{InfoCircleIcon-CFp_s-7e.js → InfoCircleIcon-C9oU6QEH.js} +1 -1
- package/dist/{MinusIcon-DUyl06qr.js → MinusIcon-BTQTAfDD.js} +1 -1
- package/dist/{PlusIcon-DuhLXOVV.js → PlusIcon-D1JdD53h.js} +1 -1
- package/dist/{SearchIcon-FuXj3KYU.js → SearchIcon-e8VVeeXT.js} +1 -1
- package/dist/{SelectIconRight-DuMv6Sr1.js → SelectIconRight-BKkVWJ5v.js} +1 -1
- package/dist/{StarsIcon-DqnRtR23.js → StarsIcon-oon3SSS_.js} +1 -1
- package/dist/{SwitchVerticalIcon-CJM2isgr.js → SwitchVerticalIcon-CIak9EAi.js} +1 -1
- package/dist/{TranslateIcon-JRPwy4XY.js → TranslateIcon-COI-buEY.js} +1 -1
- package/dist/components/address-autocomplete/addressAutocomplete.type.d.ts +1 -0
- package/dist/components/toast/toast.composable.d.ts +6 -0
- package/dist/{index-BBGGCoRq.js → index-9XZDXNF6.js} +4111 -4107
- package/dist/index.js +1 -1
- package/dist/index.umd +14 -14
- package/package.json +1 -1
|
@@ -2,6 +2,12 @@ import { ToastT } from 'vue-sonner';
|
|
|
2
2
|
import { ToastProps } from './toast.props';
|
|
3
3
|
export type ToastPosition = NonNullable<ToastT['position']>;
|
|
4
4
|
interface ToastOptions extends Omit<ToastProps, 'type'> {
|
|
5
|
+
/**
|
|
6
|
+
* The time in milliseconds after which the toast will automatically close.
|
|
7
|
+
* If no timeout is provided, the toast will not automatically close unless `autoCloseToast` is set to `true`
|
|
8
|
+
* in the config provider component.
|
|
9
|
+
*/
|
|
10
|
+
timeoutMs?: number | null;
|
|
5
11
|
}
|
|
6
12
|
interface UseToastReturnType {
|
|
7
13
|
error: (toast: ToastOptions) => void;
|