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
23 lines (22 loc) • 693 B
TypeScript
import { Placement } from "popper.js";
export declare class DatepickerHijri {
placement: Placement;
reference: string;
selectedDate: string;
minDate: string;
maxDate: string;
langCode: string;
dateFormat: string;
onDateSelectClose: boolean;
placeholder: string;
autoSetSelectedDate: boolean;
displayCalender: boolean;
calenderContainerId: string;
handleOnfocus(): void;
handleOnClickOutSide(e: any): void;
hasSomeParentId(element: any, idName: any): any;
setSelectedDate: (selectedDate: any, triggerEvent?: boolean) => void;
componentWillLoad(): void;
componentDidLoad(): void;
render(): any;
}