UNPKG

@ark-ui/vue

Version:

A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.

21 lines (20 loc) 860 B
import { TriggerProps } from '@zag-js/dialog'; import { ButtonHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory.js'; export interface DialogTriggerBaseProps extends TriggerProps, PolymorphicProps { } export interface DialogTriggerProps extends DialogTriggerBaseProps, /** * @vue-ignore */ Omit<ButtonHTMLAttributes, 'value'> { } declare const _default: __VLS_WithTemplateSlots< DefineComponent<DialogTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };