UNPKG

@skillbill/vuelace-3

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/@skillbill%2Fvuelace-3.svg)](https://badge.fury.io/js/@skillbill%2Fvuelace-3)

14 lines (12 loc) 552 B
import { SlAfterShowEvent, SlHideEvent, SlShowEvent, SlAfterHideEvent, SlInitialFocusEvent, SlRequestCloseEvent } from '../utils/types'; export interface VLDialogProps { label?: string; noHeader?: boolean; noCloseOnOutsideClick?: boolean; onShow?: (evt: SlShowEvent) => void; onAfterShow?: (evt: SlAfterShowEvent) => void; onHide?: (evt: SlHideEvent) => void; onAfterHide?: (evt: SlAfterHideEvent) => void; onInitialFocus?: (evt: SlInitialFocusEvent) => void; onRequestClose?: (evt: SlRequestCloseEvent) => void; }