source: src/components/custom-date-range-picker/types.ts

main
Last change on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 657 bytes
Line 
1// ----------------------------------------------------------------------
2
3export type DateRangePickerProps = {
4 startDate: Date | null;
5 endDate: Date | null;
6 onChangeStartDate: (newValue: Date | null) => void;
7 onChangeEndDate: (newValue: Date | null) => void;
8 //
9 open: boolean;
10 onOpen?: VoidFunction;
11 onClose: VoidFunction;
12 onReset?: VoidFunction;
13 //
14 selected?: boolean;
15 error?: boolean;
16 //
17 label?: string;
18 shortLabel?: string;
19 //
20 title?: string;
21 variant?: 'calendar' | 'input';
22 //
23 setStartDate?: React.Dispatch<React.SetStateAction<Date | null>>;
24 setEndDate?: React.Dispatch<React.SetStateAction<Date | null>>;
25};
Note: See TracBrowser for help on using the repository browser.