aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/common
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/views/common')
-rw-r--r--FrontEnd/src/views/common/input/InputPanel.tsx12
1 files changed, 1 insertions, 11 deletions
diff --git a/FrontEnd/src/views/common/input/InputPanel.tsx b/FrontEnd/src/views/common/input/InputPanel.tsx
index 27937a05..e0db3787 100644
--- a/FrontEnd/src/views/common/input/InputPanel.tsx
+++ b/FrontEnd/src/views/common/input/InputPanel.tsx
@@ -31,23 +31,13 @@ export interface SelectInput {
options: SelectInputOption[];
}
-export interface ColorInput {
- type: "color";
- label?: I18nText;
-}
-
export interface DateTimeInput {
type: "datetime";
label?: I18nText;
helper?: I18nText;
}
-export type Input =
- | TextInput
- | BoolInput
- | SelectInput
- | ColorInput
- | DateTimeInput;
+export type Input = TextInput | BoolInput | SelectInput | DateTimeInput;
interface InputTypeToValueTypeMap {
text: string;