From e001576d9ff46787bba47da3b82672a948c974c1 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 27 Apr 2023 10:04:03 +0200 Subject: [PATCH] Fix build --- test.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test.ts b/test.ts index f8863551a..6f2e3c21b 100644 --- a/test.ts +++ b/test.ts @@ -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(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(undefined) - new SvelteUIElement(LevelSelector, { floors, value }).AttachTo("maindiv") - new VariableUiElement(value).AttachTo("extradiv") -} -testElevator() //testinput() /*/ testspecial()