UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

26 lines (22 loc) 564 B
import { VNode } from 'vue'; interface OverlayPanelProps { dismissable?: boolean; showCloseIcon?: boolean; appendTo?: string; baseZIndex?: number; autoZIndex?: boolean; ariaCloseLabel?: string; breakpoints?: {[key: string]: string}; } declare class OverlayPanel { $props: OverlayPanelProps; toggle(event: Event): void; show(event: Event, target?: any): void; hide(): void; $emit(eventName: 'show'): this; $emit(eventName: 'hide'): this; $slots: { '': VNode[]; } } export default OverlayPanel;