ednl-liftstatus-web-components
Version:
The EDNL LiftStatus web components
29 lines (28 loc) • 611 B
TypeScript
export declare class DatePicker {
/**
* The Host element
*/
element: HTMLLsDatePickerElement;
/**
* Time options used to populate the select element
*/
private timeOptions;
/**
* The unique key that is used to identify store data.
*/
readonly idKey: string;
private store;
componentWillLoad(): Promise<void>;
componentDidLoad(): void;
private handleSelect;
private decrementHour;
private incrementHour;
private incrementDay;
private decrementDay;
/**
* Use to initialize select dropdown options
* @returns
*/
private getTimeOptions;
render(): any;
}