mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
types: fix teleport typing #7687
This commit is contained in:
parent
9eda920504
commit
52384aba1e
3
types/dialog.d.ts
vendored
3
types/dialog.d.ts
vendored
@ -1,4 +1,5 @@
|
|||||||
import { VanComponent } from './component';
|
import { VanComponent } from './component';
|
||||||
|
import { TeleportProps } from 'vue';
|
||||||
|
|
||||||
type DialogAction = 'confirm' | 'cancel';
|
type DialogAction = 'confirm' | 'cancel';
|
||||||
type DialogDone = (close?: boolean) => void;
|
type DialogDone = (close?: boolean) => void;
|
||||||
@ -9,6 +10,7 @@ export type DialogOptions = {
|
|||||||
message?: string;
|
message?: string;
|
||||||
theme?: string;
|
theme?: string;
|
||||||
overlay?: boolean;
|
overlay?: boolean;
|
||||||
|
teleport?: TeleportProps['to'];
|
||||||
className?: any;
|
className?: any;
|
||||||
allowHtml?: boolean;
|
allowHtml?: boolean;
|
||||||
lockScroll?: boolean;
|
lockScroll?: boolean;
|
||||||
@ -24,7 +26,6 @@ export type DialogOptions = {
|
|||||||
showConfirmButton?: boolean;
|
showConfirmButton?: boolean;
|
||||||
showCancelButton?: boolean;
|
showCancelButton?: boolean;
|
||||||
closeOnClickOverlay?: boolean;
|
closeOnClickOverlay?: boolean;
|
||||||
getContainer?: string | (() => Element);
|
|
||||||
beforeClose?: (action: DialogAction, done: DialogDone) => void;
|
beforeClose?: (action: DialogAction, done: DialogDone) => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
3
types/image-preview.d.ts
vendored
3
types/image-preview.d.ts
vendored
@ -1,3 +1,4 @@
|
|||||||
|
import { TeleportProps } from 'vue';
|
||||||
import { VanComponent } from './component';
|
import { VanComponent } from './component';
|
||||||
import { SwipeToOptions } from './swipe';
|
import { SwipeToOptions } from './swipe';
|
||||||
|
|
||||||
@ -8,6 +9,7 @@ export type ImagePreviewOptions =
|
|||||||
images: string[];
|
images: string[];
|
||||||
maxZoom?: number;
|
maxZoom?: number;
|
||||||
minZoom?: number;
|
minZoom?: number;
|
||||||
|
teleport?: TeleportProps['to'];
|
||||||
className?: any;
|
className?: any;
|
||||||
showIndex?: boolean;
|
showIndex?: boolean;
|
||||||
closeable?: boolean;
|
closeable?: boolean;
|
||||||
@ -18,7 +20,6 @@ export type ImagePreviewOptions =
|
|||||||
showIndicators?: boolean;
|
showIndicators?: boolean;
|
||||||
closeOnPopstate?: boolean;
|
closeOnPopstate?: boolean;
|
||||||
closeIconPosition?: string;
|
closeIconPosition?: string;
|
||||||
getContainer?: string | (() => Element);
|
|
||||||
onClose?(): void;
|
onClose?(): void;
|
||||||
onChange?(index: number): void;
|
onChange?(index: number): void;
|
||||||
swipeTo?(index: number, options?: SwipeToOptions): void;
|
swipeTo?(index: number, options?: SwipeToOptions): void;
|
||||||
|
4
types/toast.d.ts
vendored
4
types/toast.d.ts
vendored
@ -1,3 +1,5 @@
|
|||||||
|
import { TeleportProps } from 'vue';
|
||||||
|
|
||||||
type ToastMessage = string | number;
|
type ToastMessage = string | number;
|
||||||
type ToastType = 'text' | 'loading' | 'success' | 'fail' | 'html';
|
type ToastType = 'text' | 'loading' | 'success' | 'fail' | 'html';
|
||||||
type ToastPosition = 'top' | 'middle' | 'bottom';
|
type ToastPosition = 'top' | 'middle' | 'bottom';
|
||||||
@ -12,6 +14,7 @@ export type ToastOptions = {
|
|||||||
onOpened?: () => void;
|
onOpened?: () => void;
|
||||||
overlay?: boolean;
|
overlay?: boolean;
|
||||||
duration?: number;
|
duration?: number;
|
||||||
|
teleport?: TeleportProps['to'];
|
||||||
position?: ToastPosition;
|
position?: ToastPosition;
|
||||||
className?: any;
|
className?: any;
|
||||||
transition?: string;
|
transition?: string;
|
||||||
@ -20,7 +23,6 @@ export type ToastOptions = {
|
|||||||
forbidClick?: boolean;
|
forbidClick?: boolean;
|
||||||
closeOnClick?: boolean;
|
closeOnClick?: boolean;
|
||||||
closeOnClickOverlay?: boolean;
|
closeOnClickOverlay?: boolean;
|
||||||
getContainer?: string | (() => Element);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface VanToast {
|
export interface VanToast {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user