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