UNPKG

@ark-ui/vue

Version:

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

7 lines (6 loc) 515 B
import { DateValue, DayTableCellProps, TableCellProps } from '@zag-js/date-picker'; import { Reactive } from 'vue'; export interface DatePickerTableCellPropsContext extends Omit<TableCellProps, 'value'>, Omit<DayTableCellProps, 'value'> { value: Reactive<number | DateValue>; } export declare const DatePickerTableCellPropsProvider: (opts: DatePickerTableCellPropsContext) => void, useDatePickerTableCellPropsContext: (fallback?: DatePickerTableCellPropsContext | undefined) => DatePickerTableCellPropsContext;