@iofjuupasli/react-google-flight-datepicker
Advanced tools
Comparing version 0.3.0 to 0.3.1
@@ -5,4 +5,6 @@ import * as React from 'react'; | ||
export interface RangeDatePickerProps { | ||
startDate?: Date; | ||
endDate?: Date; | ||
isOpen: bool; | ||
onIsOpenChange: (isOpen: bool) => void; | ||
startDate: Date; | ||
endDate: Date; | ||
startDatePlaceholder?: string; | ||
@@ -12,3 +14,3 @@ endDatePlaceholder?: string; | ||
disabled?: boolean; | ||
onChange?: (startDate: Date, endDate: Date) => void; | ||
onChange: (startDate: Date, endDate: Date) => void; | ||
onFocus?: (input: 'Start Date' | 'End Date' | '') => void; | ||
@@ -28,7 +30,9 @@ startWeekDay?: 'monday' | 'sunday'; | ||
export interface SingleDatePickerProps { | ||
startDate?: Date; | ||
isOpen: bool; | ||
onIsOpenChange: (isOpen: bool) => void; | ||
startDate: Date; | ||
startDatePlaceholder?: string; | ||
className?: string; | ||
disabled?: boolean; | ||
onChange?: (startDate: Date) => void; | ||
onChange: (startDate: Date) => void; | ||
onFocus?: (input: 'Start Date') => void; | ||
@@ -35,0 +39,0 @@ startWeekDay?: 'monday' | 'sunday'; |
{ | ||
"name": "@iofjuupasli/react-google-flight-datepicker", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "An ReactJS implementation for Google Flight date-picker by JSLancer team", | ||
@@ -5,0 +5,0 @@ "author": "David Tran, Leo Phan", |
109392
99