@jdcfe/yep-react
Version:
一套移动端的React组件库
28 lines (27 loc) • 813 B
TypeScript
import * as React from 'react';
import { DatePickerProps } from './type';
export interface PopupDatePickerProps extends DatePickerProps {
onChange?: (data: any) => void;
onOk?: (data: any) => void;
onCancel?: () => void;
show?: boolean;
title?: string;
}
declare class PopupDatePicker extends React.Component<PopupDatePickerProps, any> {
static defaultProps: {
mode: string;
prefixCls: string;
pickerPrefixCls: string;
minuteStep: number;
use12Hours: boolean;
pickerValueProp: string;
pickerValueChangeProp: string;
title: string;
className: string;
};
scrollValue: HTMLDivElement;
setScrollValue: (v: any) => void;
onOk: (v: any) => void;
render(): JSX.Element;
}
export default PopupDatePicker;