feat(web/input): time input field (#206)

* feat(web/input): time input
This commit is contained in:
masonschafercodes
2023-01-31 12:41:42 -05:00
committed by GitHub
parent ada2a35c0b
commit 8a7e0f89d2
4 changed files with 33 additions and 9 deletions

View File

@@ -70,11 +70,12 @@ export interface IColorInput {
}
export interface IDateInput {
type: 'date' | 'date-range';
type: 'date' | 'date-range' | 'time';
label: string;
default?: string | [string, string] | true;
disabled?: boolean;
description?: string;
format?: '12' | '24' | undefined;
required?: boolean;
placeholder?: string;
clearable?: boolean;