feat(web/input): min and max date

This commit is contained in:
Luke
2023-01-14 13:36:30 +01:00
parent d621aca29f
commit 5245e27a75
2 changed files with 5 additions and 0 deletions

View File

@@ -76,4 +76,7 @@ export interface IDateInput {
description?: string;
required?: boolean;
placeholder?: string;
clearable?: boolean;
min?: string;
max?: string;
}