UNPKG

@ark-ui/vue

Version:

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

23 lines (22 loc) 926 B
import { DateValue } from '@zag-js/date-picker'; import { TdHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory.js'; export interface DatePickerWeekNumberCellBaseProps extends PolymorphicProps { weekIndex: number; week: DateValue[]; } export interface DatePickerWeekNumberCellProps extends DatePickerWeekNumberCellBaseProps, /** * @vue-ignore */ TdHTMLAttributes { } declare const _default: __VLS_WithTemplateSlots< DefineComponent<DatePickerWeekNumberCellProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DatePickerWeekNumberCellProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };