UNPKG

@ark-ui/vue

Version:

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

6 lines (5 loc) 324 B
import { ItemState } from '@zag-js/select'; import { ComputedRef } from 'vue'; export interface UseSelectItemContext extends ComputedRef<ItemState> { } export declare const SelectItemProvider: (opts: UseSelectItemContext) => void, useSelectItemContext: (fallback?: UseSelectItemContext | undefined) => UseSelectItemContext;