UNPKG

material-ui-arabic-datepicker

Version:

React components, that implements material design date and time pickers for material-ui v1 including a customized Datepicker with arabic header, months and weekdays and English numbers, modfied implementation from materail-ui-pickers

22 lines (18 loc) 623 B
import { ComponentClass, ReactNode } from 'react'; import { DateTextFieldProps } from '../_shared/DateTextField'; export interface ModalWrapperProps extends Partial<DateTextFieldProps> { onAccept?: () => void; onDismiss?: () => void; onClear?: () => void; onSetToday?: () => void; onOpen?: () => void; onClose?: () => void; dialogContentClassName?: string; okLabel?: ReactNode; cancelLabel?: ReactNode; clearLabel?: ReactNode; todayLabel?: ReactNode; showTodayButton?: boolean; } declare const ModalWrapper: ComponentClass<ModalWrapperProps>; export default ModalWrapper;