Fixed custom generator by fixing dependencies

This commit is contained in:
Pieter Vander Vennet 2020-11-05 13:34:48 +01:00
parent d326e56b15
commit 9c53fe9868
5 changed files with 88 additions and 78 deletions

View file

@ -1,7 +1,6 @@
import {UIEventSource} from "../../Logic/UIEventSource";
import {UIElement} from "../UIElement";
import {LocalStorageSource} from "../../Logic/Web/LocalStorageSource";
import {DropDown} from "../Input/DropDown";
export default class Locale {
@ -18,21 +17,6 @@ export default class Locale {
}
return source;
}
public static CreateLanguagePicker(
languages : string[] ,
label: string | UIElement = "") {
if (languages.length <= 1) {
return undefined;
}
return new DropDown(label, languages.map(lang => {
return {value: lang, shown: lang}
}
), Locale.language);
}
}