@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
6 lines (5 loc) • 338 B
TypeScript
import { ItemState } from '@zag-js/combobox';
import { ComputedRef } from 'vue';
export interface UseComboboxItemContext extends ComputedRef<ItemState> {
}
export declare const ComboboxItemProvider: (opts: UseComboboxItemContext) => void, useComboboxItemContext: (fallback?: UseComboboxItemContext | undefined) => UseComboboxItemContext;