Fix build

This commit is contained in:
Pieter Vander Vennet 2020-06-29 03:16:34 +02:00
parent 8bca006787
commit 6d4f5a50f2
4 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
import {LayerDefinition} from "../LayerDefinition"; import {LayerDefinition} from "../LayerDefinition";
import {FixedUiElement} from "../UI/FixedUiElement"; import {FixedUiElement} from "../UI/Base/FixedUiElement";
import L from "leaflet"; import L from "leaflet";
import {CommonTagMappings} from "./CommonTagMappings"; import {CommonTagMappings} from "./CommonTagMappings";
import {TagMappingOptions} from "../UI/TagMapping"; import {TagMappingOptions} from "../UI/TagMapping";

View file

@ -1,6 +1,6 @@
import {LayerDefinition} from "../LayerDefinition"; import {LayerDefinition} from "../LayerDefinition";
import {Quests} from "../Quests"; import {Quests} from "../Quests";
import {FixedUiElement} from "../UI/FixedUiElement"; import {FixedUiElement} from "../UI/Base/FixedUiElement";
import {TagMappingOptions} from "../UI/TagMapping"; import {TagMappingOptions} from "../UI/TagMapping";
import L from "leaflet"; import L from "leaflet";
import {Tag} from "../Logic/TagsFilter"; import {Tag} from "../Logic/TagsFilter";

View file

@ -2,7 +2,7 @@ import {UIElement} from "../UIElement";
import {ImageSearcher} from "../../Logic/ImageSearcher"; import {ImageSearcher} from "../../Logic/ImageSearcher";
import {UIEventSource} from "../UIEventSource"; import {UIEventSource} from "../UIEventSource";
import {SlideShow} from "../SlideShow"; import {SlideShow} from "../SlideShow";
import {FixedUiElement} from "../FixedUiElement"; import {FixedUiElement} from "../Base/FixedUiElement";
export class ImageCarousel extends UIElement { export class ImageCarousel extends UIElement {
/** /**

View file

@ -1,10 +1,10 @@
import {UIElement} from "./UIElement"; import {UIElement} from "./UIElement";
import {UIEventSource} from "./UIEventSource"; import {UIEventSource} from "./UIEventSource";
import {VariableUiElement} from "./VariableUIElement";
import $ from "jquery" import $ from "jquery"
import {Imgur} from "../Logic/Imgur"; import {Imgur} from "../Logic/Imgur";
import {UserDetails} from "../Logic/OsmConnection"; import {UserDetails} from "../Logic/OsmConnection";
import {DropDownUI} from "./DropDownUI"; import {DropDownUI} from "./Base/DropDownUI";
import {VariableUiElement} from "./Base/VariableUIElement";
export class ImageUploadFlow extends UIElement { export class ImageUploadFlow extends UIElement {
private _licensePicker: UIElement; private _licensePicker: UIElement;