File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ export type PickerProps = CommonInputProps & {
6
6
format ?: ( val : string | Date ) => string | Date | number ;
7
7
onClose ?: ( val : string ) => void ;
8
8
onOpen ?: ( val : string ) => void ;
9
+ parse ?: ( val : string ) => string | Date | number ;
9
10
pickerOptions ?: {
10
11
[ x : string ] : any ;
11
12
} ;
12
- parse ?: ( val : string ) => string | Date | number ;
13
13
PickerComponent : typeof MobileDatePicker | typeof MobileTimePicker | typeof MobileDateTimePicker ;
14
14
size ?: string ;
15
15
stringFormat ?: string ;
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ export type PickerProps = CommonInputProps & {
15
15
format ?: ( val : string | Date ) => string | Date | number ;
16
16
onClose ?: ( val : string ) => void ;
17
17
onOpen ?: ( val : string ) => void ;
18
- pickerOptions ?: { [ x : string ] : any } ;
19
18
parse ?: ( val : string ) => string | Date | number ;
19
+ pickerOptions ?: { [ x : string ] : any } ;
20
20
PickerComponent : typeof MobileDatePicker | typeof MobileTimePicker | typeof MobileDateTimePicker ;
21
21
size ?: string ;
22
22
stringFormat ?: string ;
You can’t perform that action at this time.
0 commit comments