UNPKG

maz-ui

Version:

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

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