mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import { VanComponent } from './component';
|
|
import { TeleportProps } from 'vue';
|
|
|
|
type DialogAction = 'confirm' | 'cancel';
|
|
type DialogDone = (close?: boolean) => void;
|
|
|
|
export type DialogOptions = {
|
|
title?: string;
|
|
width?: string | number;
|
|
message?: string;
|
|
theme?: string;
|
|
overlay?: boolean;
|
|
teleport?: TeleportProps['to'];
|
|
className?: any;
|
|
allowHtml?: boolean;
|
|
lockScroll?: boolean;
|
|
transition?: string;
|
|
messageAlign?: string;
|
|
overlayClass?: string;
|
|
overlayStyle?: Record<string, any>;
|
|
closeOnPopstate?: boolean;
|
|
cancelButtonText?: string;
|
|
cancelButtonColor?: string;
|
|
confirmButtonText?: string;
|
|
confirmButtonColor?: string;
|
|
showConfirmButton?: boolean;
|
|
showCancelButton?: boolean;
|
|
closeOnClickOverlay?: boolean;
|
|
beforeClose?: (action: DialogAction, done: DialogDone) => void;
|
|
};
|
|
|
|
export interface Dialog {
|
|
(options: DialogOptions): Promise<DialogAction>;
|
|
alert(options: DialogOptions): Promise<DialogAction>;
|
|
confirm(options: DialogOptions): Promise<DialogAction>;
|
|
close(): void;
|
|
install(): void;
|
|
setDefaultOptions(options: DialogOptions): void;
|
|
resetDefaultOptions(): void;
|
|
Component: typeof VanComponent;
|
|
}
|
|
|
|
declare module '@vue/runtime-core' {
|
|
interface ComponentCustomProperties {
|
|
$dialog: Dialog;
|
|
}
|
|
}
|
|
|
|
export const Dialog: Dialog;
|