import { CSSResult, TemplateResult } from 'lit'; import GmfTimeInput from 'gmf/time-input/time-input'; /** * Gives you a datepicker (simple or range) based on OGC time. * Based on GmfTimeInput. * Example: * */ export default class GmfDatepicker extends GmfTimeInput { static styles: CSSResult[]; /** * Lit rendering. * @returns the html template for datepicker(s). */ render(): TemplateResult; /** * On range mode, calculate the min date value with the second date-picker's value. * @returns The min selectable date. * @private */ private getDateMin; /** * On range mode, calculate the max date value with the second date-picker's value. * @returns The max selectable date. * @private */ private getDateMax; }