UNPKG

@ark-ui/vue

Version:

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

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