primevue-mirror/src/components/dialog/Dialog.d.ts

33 lines
660 B
TypeScript
Raw Normal View History

import { VNode } from 'vue';
2019-05-28 12:12:03 +00:00
interface DialogProps {
2019-05-28 12:12:03 +00:00
header?: any;
footer?: any;
visible?: boolean;
modal?: boolean;
contentStyle?: string;
rtl?: boolean;
closable?: boolean;
dismissableMask?: boolean;
closeOnEscape?: boolean;
2019-05-28 12:12:03 +00:00
showHeader?: boolean;
baseZIndex?: number;
autoZIndex?: boolean;
ariaCloseLabel?: string;
2020-02-06 11:57:20 +00:00
position?: string;
maximizable?: boolean;
}
declare class Dialog {
$props: DialogProps;
2019-05-28 12:12:03 +00:00
$emit(eventName: 'show'): this;
$emit(eventName: 'hide'): this;
$slots: {
'': VNode[];
header: VNode[];
footer: VNode[];
}
}
export default Dialog;