Mark old input elements as deprecated, remove some unused input elements

This commit is contained in:
Pieter Vander Vennet 2023-05-08 23:53:52 +02:00
parent 6366d82e6c
commit beb86919a8
11 changed files with 33 additions and 131 deletions

View file

@ -3,6 +3,9 @@ import Translations from "../i18n/Translations"
import { UIEventSource } from "../../Logic/UIEventSource"
import BaseUIElement from "../BaseUIElement"
/**
* @deprecated
*/
export class DropDown<T> extends InputElement<T> {
private static _nextDropdownId = 0
public IsSelected: UIEventSource<boolean> = new UIEventSource<boolean>(false)