UNPKG

maz-ui

Version:

A standalone components library for Vue.Js 3 & Nuxt.Js 3

29 lines (28 loc) 1.21 kB
import { MazColor } from '../types'; import { MazDatePickerShortcut, MazDatePickerValue } from './types'; type __VLS_Props = { modelValue: MazDatePickerValue | undefined; calendarDate: string; color: MazColor; locale: string; inline: boolean; firstDayOfWeek: number; double: boolean; minDate: string | undefined; maxDate: string | undefined; disabledWeekly: number[]; disabledDates: string[]; shortcuts: MazDatePickerShortcut[] | false; hasTime: boolean; shortcut: MazDatePickerShortcut['identifier'] | undefined; disabled: boolean; range: boolean; }; declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:model-value": (...args: any[]) => void; "update:calendar-date": (...args: any[]) => void; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined; "onUpdate:calendar-date"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; export default _default;