We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec9c07d commit 6ea341cCopy full SHA for 6ea341c
src/contexts/DatepickerContext.ts
@@ -10,7 +10,8 @@ import {
10
DateRangeType,
11
ClassNamesTypeProp,
12
PopoverDirectionType,
13
- ColorKeys
+ ColorKeys,
14
+ WeekStringType
15
} from "../types";
16
17
interface DatepickerStore {
@@ -40,7 +41,7 @@ interface DatepickerStore {
40
41
toggleClassName?: ((className: string) => string) | string | null;
42
toggleIcon?: (open: boolean) => React.ReactNode;
43
readOnly?: boolean;
- startWeekOn?: string | null;
44
+ startWeekOn?: WeekStringType | null;
45
displayFormat: string;
46
minDate?: DateType | null;
47
maxDate?: DateType | null;
0 commit comments