Fix build

This commit is contained in:
Pieter Vander Vennet 2023-04-27 10:04:03 +02:00
parent 0c5205136b
commit e001576d9f

View file

@ -11,7 +11,6 @@ import { FixedUiElement } from "./UI/Base/FixedUiElement"
import Title from "./UI/Base/Title"
import SvelteUIElement from "./UI/Base/SvelteUIElement"
import ValidatedInput from "./UI/InputElement/ValidatedInput.svelte"
import LevelSelector from "./UI/InputElement/Helpers/LevelSelector.svelte"
function testspecial() {
const layout = new LayoutConfig(<any>theme, true) // qp.data === "" ? : new AllKnownLayoutsLazy().get(qp.data)
@ -48,13 +47,6 @@ function testinput() {
new Combine(els).SetClass("flex flex-col").AttachTo("maindiv")
}
function testElevator() {
const floors = new ImmutableStore(["0", "1", "1.5", "2"])
const value = new UIEventSource<string>(undefined)
new SvelteUIElement(LevelSelector, { floors, value }).AttachTo("maindiv")
new VariableUiElement(value).AttachTo("extradiv")
}
testElevator()
//testinput()
/*/
testspecial()