fix eslint errors

This commit is contained in:
Elijah Duffy
2025-07-11 11:55:22 -07:00
parent 23c0236596
commit f7e46077e3
8 changed files with 26 additions and 12 deletions

View File

@@ -18,7 +18,7 @@
name?: string;
value?: CalendarDate;
min?: CalendarDate;
max?: CalendarDate;
// max?: CalendarDate; // TODO: Implement validation.
label?: string;
required?: boolean;
invalidMessage?: string;
@@ -32,7 +32,7 @@
/** min specifies lower bounds for the date input (WARNING: NOT IMPLEMENTED) */
min = new CalendarDate(1900, 0, 1),
/** max specifies upper bounds for the date input (WARNING: NOT IMPLEMENTED) */
max = new CalendarDate(2100, 11, 31),
// max = new CalendarDate(2100, 11, 31),
label,
required = false,
invalidMessage = 'Valid date is required',