UNPKG

hijri-datepicker-component

Version:

Forked and enhanced version of datepicker-hijri with additional features. The 'Hijri Datepicker' is a user interface component designed to facilitate the selection and display of Hijri (Islamic) dates in applications. It offers a visual calendar interface

29 lines (28 loc) 791 B
export declare class DateCalender { arabicDayNames: string[]; arabicFullDayNames: string[]; englishDayNames: string[]; /** * The language code */ langCode: string; dateFormat: string; calendarDateFormat: string; selectedDate: string; minDate: string; maxDate: string; placeholder: string; setParentSelectedDate: any; currentTime: any; subtractMonth: () => void; addMonth: () => void; validateMinDate(): any; validateMaxDate(): any; setSelectedDate: (event: any) => void; getMonthStartDayName(): any; getMonthName(format?: string): any; getSelectedDay(): any; handleYearChange: (event: any) => void; handleMonthChange: (event: any) => void; render(): any; }