UNPKG

ph-material-pickers

Version:

React components, that implements material design pickers for material-ui v4

17 lines (16 loc) 778 B
import * as React from 'react'; import { DialogProps as MuiDialogProps } from '@material-ui/core/Dialog'; import { WrapperProps } from './Wrapper'; import { StaticWrapperProps } from './StaticWrapper'; import { InnerDesktopWrapperProps } from './DesktopWrapper'; import { ExportedPickerModalProps } from '../_shared/PickersModalDialog'; export interface InnerMobileWrapperProps extends ExportedPickerModalProps { /** * Props to be passed directly to material-ui Dialog * @type {Partial<MuiDialogProps>} */ DialogProps?: Partial<MuiDialogProps>; } export interface MobileWrapperProps extends InnerMobileWrapperProps, WrapperProps, Partial<InnerDesktopWrapperProps & StaticWrapperProps> { } export declare const MobileWrapper: React.FC<MobileWrapperProps>;