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

40 lines (35 loc) 839 B
import { VNode } from 'vue'; interface SpeedDialProps { model?: any[]; visible?: boolean; direction?: string; transitionDelay?: number; type?: string; radius?: number; mask?: boolean; disabled?: boolean; hideOnClickOutside?: boolean; buttonClass?: string; maskStyle?: string; maskClass?: string; showIcon?: string; hideIcon?: string; rotateAnimation?: boolean; class?: string; style?: any; tooltipOptions?: any; } interface SpeedDialItemSlotInterface { item: any; } declare class SpeedDial { $props: SpeedDialProps; $emit(eventName: 'click', event: Event): this; $emit(eventName: 'show'): this; $emit(eventName: 'hide'): this; $slots: { item: SpeedDialItemSlotInterface; button: VNode[]; }; } export default SpeedDial;