UNPKG

txend-react-native-ui-datepicker

Version:

Customizable multi-date range datetime picker for React Native

15 lines 1.17 kB
import React from 'react'; import type { DateType, CalendarModes, CalendarTheme, HeaderProps } from './types'; interface PropTypes extends CalendarTheme, HeaderProps { value: DateType; mode?: CalendarModes; locale?: string | ILocale; minimumDate?: DateType; maximumDate?: DateType; firstDayOfWeek?: number; onValueChange?: (to: DateType, from: DateType) => void; displayFullDays?: boolean; } declare const DateTimePicker: ({ value, mode, locale, minimumDate, maximumDate, firstDayOfWeek, onValueChange, displayFullDays, headerButtonsPosition, headerContainerStyle, footerTextContainerStyle, footerContainerStyle, footerTextStyle, headerTextContainerStyle, headerTextStyle, headerButtonStyle, headerButtonColor, headerButtonSize, dayContainerStyle, todayContainerStyle, todayTextStyle, monthContainerStyle, yearContainerStyle, weekDaysContainerStyle, weekDaysTextStyle, calendarTextStyle, selectedTextStyle, selectedItemColor, timePickerContainerStyle, timePickerTextStyle, buttonPrevIcon, buttonNextIcon, }: Partial<PropTypes>) => React.JSX.Element; export default DateTimePicker; //# sourceMappingURL=DateTimePicker.d.ts.map