diff --git a/types/dialog.d.ts b/types/dialog.d.ts index 9073da892..7fcda2271 100644 --- a/types/dialog.d.ts +++ b/types/dialog.d.ts @@ -1,4 +1,5 @@ import { VanComponent } from './component'; +import { TeleportProps } from 'vue'; type DialogAction = 'confirm' | 'cancel'; type DialogDone = (close?: boolean) => void; @@ -9,6 +10,7 @@ export type DialogOptions = { message?: string; theme?: string; overlay?: boolean; + teleport?: TeleportProps['to']; className?: any; allowHtml?: boolean; lockScroll?: boolean; @@ -24,7 +26,6 @@ export type DialogOptions = { showConfirmButton?: boolean; showCancelButton?: boolean; closeOnClickOverlay?: boolean; - getContainer?: string | (() => Element); beforeClose?: (action: DialogAction, done: DialogDone) => void; }; diff --git a/types/image-preview.d.ts b/types/image-preview.d.ts index 45515bbcd..e0a9ed734 100644 --- a/types/image-preview.d.ts +++ b/types/image-preview.d.ts @@ -1,3 +1,4 @@ +import { TeleportProps } from 'vue'; import { VanComponent } from './component'; import { SwipeToOptions } from './swipe'; @@ -8,6 +9,7 @@ export type ImagePreviewOptions = images: string[]; maxZoom?: number; minZoom?: number; + teleport?: TeleportProps['to']; className?: any; showIndex?: boolean; closeable?: boolean; @@ -18,7 +20,6 @@ export type ImagePreviewOptions = showIndicators?: boolean; closeOnPopstate?: boolean; closeIconPosition?: string; - getContainer?: string | (() => Element); onClose?(): void; onChange?(index: number): void; swipeTo?(index: number, options?: SwipeToOptions): void; diff --git a/types/toast.d.ts b/types/toast.d.ts index 45ff7d200..9ef6c35ca 100644 --- a/types/toast.d.ts +++ b/types/toast.d.ts @@ -1,3 +1,5 @@ +import { TeleportProps } from 'vue'; + type ToastMessage = string | number; type ToastType = 'text' | 'loading' | 'success' | 'fail' | 'html'; type ToastPosition = 'top' | 'middle' | 'bottom'; @@ -12,6 +14,7 @@ export type ToastOptions = { onOpened?: () => void; overlay?: boolean; duration?: number; + teleport?: TeleportProps['to']; position?: ToastPosition; className?: any; transition?: string; @@ -20,7 +23,6 @@ export type ToastOptions = { forbidClick?: boolean; closeOnClick?: boolean; closeOnClickOverlay?: boolean; - getContainer?: string | (() => Element); }; export interface VanToast {