mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
106 lines
3.4 KiB
TypeScript
106 lines
3.4 KiB
TypeScript
// Type definitions for flatpickr 3.0
|
|
// Project: https://github.com/chmln/flatpickr
|
|
// Definitions by: James Birtles <https://github.com/UnwrittenFun>
|
|
// Rowell Heria <https://github.com/rowellx68>
|
|
// Michael Wagner <https://github.com/wagich>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function flatpickr(element: string | Element | HTMLElement, options?: Flatpickr.Options): Flatpickr;
|
|
|
|
declare class Flatpickr {
|
|
constructor(element: string | Element | HTMLElement, options?: Flatpickr.Options);
|
|
|
|
changeMonth(month: number, isOffset?: boolean): void;
|
|
clear(): void;
|
|
close(): void;
|
|
destroy(): void;
|
|
formatDate(date: Date, format: string): string;
|
|
jumpToDate(date?: Flatpickr.DateString): void;
|
|
open(): void;
|
|
parseDate(date: string, format: string): Date;
|
|
redraw(): void;
|
|
set(option: string, value: any): void;
|
|
setDate(date: Flatpickr.DateString | Flatpickr.DateString[], triggerChange?: boolean, dateFormat?: string): void;
|
|
toggle(): void;
|
|
|
|
static localize(locale: string | Flatpickr.Locale): void;
|
|
static l10ns: {
|
|
default: Flatpickr.Locale;
|
|
};
|
|
}
|
|
|
|
declare namespace Flatpickr {
|
|
interface Options {
|
|
altFormat?: string;
|
|
altInput?: boolean;
|
|
altInputClass?: string;
|
|
allowInput?: boolean;
|
|
clickOpens?: boolean;
|
|
dateFormat?: string | null;
|
|
defaultDate?: DateString | DateString[];
|
|
defaultHour?: number;
|
|
defaultMinute?: number;
|
|
disable?: DateRange[];
|
|
disableMobile?: boolean;
|
|
enable?: DateRange[];
|
|
enableTime?: boolean;
|
|
enableSeconds?: boolean;
|
|
hourIncrement?: number;
|
|
inline?: boolean;
|
|
maxDate?: DateString;
|
|
minDate?: DateString;
|
|
minuteIncrement?: number;
|
|
mode?: Mode;
|
|
nextArrow?: string;
|
|
noCalendar?: boolean;
|
|
onChange?: EventCallback | EventCallback[];
|
|
onClose?: EventCallback | EventCallback[];
|
|
onOpen?: EventCallback | EventCallback[];
|
|
onReady?: EventCallback | EventCallback[];
|
|
onMonthChange?: EventCallback | EventCallback[];
|
|
onYearChange?: EventCallback | EventCallback[];
|
|
onValueUpdate?: EventCallback | EventCallback[];
|
|
onDayCreate?: EventCallback | EventCallback[];
|
|
parseDate?(date: string): Date;
|
|
prevArrow?: string;
|
|
shorthandCurrentMonth?: boolean;
|
|
static?: boolean;
|
|
time_24hr?: boolean;
|
|
utc?: boolean;
|
|
weekNumbers?: boolean;
|
|
wrap?: boolean;
|
|
locale?: string | Locale;
|
|
plugins?: any[];
|
|
}
|
|
|
|
interface Locale {
|
|
weekdays?: {
|
|
shorthand?: string[];
|
|
longhand?: string[];
|
|
};
|
|
|
|
months?: {
|
|
shorthand?: string[];
|
|
longhand?: string[];
|
|
};
|
|
|
|
firstDayOfWeek?: number;
|
|
weekAbbreviation?: string;
|
|
rangeSeparator?: string;
|
|
am?: string;
|
|
pm?: string;
|
|
|
|
ordinal?: ((nth: number) => string) | string;
|
|
|
|
scrollTitle?: string;
|
|
toggleTitle?: string;
|
|
}
|
|
|
|
type DateString = Date | string;
|
|
type DateRange = DateString | { from: DateString, to: DateString } | ((date: Date) => boolean);
|
|
type Mode = 'single' | 'multiple' | 'range';
|
|
type EventCallback = (selectedDates: Date[], dateStr: string, instance: Flatpickr, elem: HTMLElement) => void;
|
|
}
|
|
|
|
export = Flatpickr;
|