Improvements to the time picker

This commit is contained in:
Pieter Vander Vennet 2020-10-23 01:20:48 +02:00
parent 820902ee48
commit 66acff699e
6 changed files with 113 additions and 24 deletions

10
test.ts
View file

@ -1,8 +1,14 @@
//*
import SpecialVisualizations from "./UI/SpecialVisualizations";
SpecialVisualizations.HelpMessage.AttachTo("maindiv")
import OpeningHoursPickerTable from "./UI/Input/OpeningHours/OpeningHoursPickerTable";
import {UIElement} from "./UI/UIElement";
import {UIEventSource} from "./Logic/UIEventSource";
import {OpeningHour} from "./Logic/OpeningHours";
new OpeningHoursPickerTable(new UIEventSource<UIElement[]>([]), new UIEventSource<OpeningHour[]>([]))
.AttachTo("maindiv")
/*/