@qeydar/datepicker
Version:
A comprehensive Date and Time Picker for Angular with Jalali calendar support
15 lines (14 loc) • 616 B
TypeScript
export declare type Placement = 'bottomLeft' | 'bottomRight' | 'topLeft' | 'topRight';
export declare type RangePartType = 'start' | 'end' | '';
export declare type CalendarType = 'jalali' | 'gregorian';
export declare type DatepickerMode = 'day' | 'month' | 'year';
export declare type TimeValueType = 'date' | 'string';
export interface TimeConfig {
hour: number;
minute: number;
second: number;
period?: string;
}
export declare type TimeFormat = '12' | '24';
export declare type ScrollBehavior = 'smooth' | 'auto';
export declare type ValueFormat = 'jalali' | 'gregorian' | 'date';