@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
26 lines (25 loc) • 789 B
TypeScript
import GirafeHTMLElement from '../../base/GirafeHTMLElement.js';
declare class HelpComponent extends GirafeHTMLElement {
protected templateUrl: string | null;
protected styleUrls: string[] | null;
template: () => import("uhtml").Hole;
content: HTMLElement;
themes: HTMLElement;
search: HTMLElement;
menu: HTMLElement;
onboarding: HTMLElement;
basemap: HTMLElement;
userPreferences: HTMLElement;
darkFrontendMode: boolean;
currentArrow?: string;
currentCircle?: string;
constructor();
render(): void;
private hideHelpFor;
registerEvents(): void;
changeArrowColor(): void;
toggleHelp(visible: boolean): void;
startOnboardingTour(): void;
protected connectedCallback(): void;
}
export default HelpComponent;