feat(web/input): date range picker

This commit is contained in:
Luke
2023-01-14 14:15:38 +01:00
parent a23b94ceb1
commit f21b79786a
3 changed files with 53 additions and 23 deletions

View File

@@ -69,9 +69,9 @@ export interface IColorInput {
}
export interface IDateInput {
type: 'date';
type: 'date' | 'date-range';
label: string;
default?: string | true;
default?: string | [string, string] | true;
disabled?: boolean;
description?: string;
required?: boolean;