A Date & Time picker for React
Install
yarn add date-time-picker-react
Usage
; Component ... { return <DateTimePicker onChange= { // do something... }> ; } ...
Props
Name | Type | Default | Description |
---|---|---|---|
initialValue | Date |
new Date() |
An initial date/time. Default is now. |
dateFormat | string |
"DD/MM/YY HH:mm" |
A Date format. Default is "DD/MM/YY HH:mm". |
inputStyle | { [string]: any } |
null |
Additional styles for the input element. |
highlightColor | string |
"#00a699" |
The selected/focussed highlight color. |
min | Date |
null |
The earliest selectable date. |
max | Date |
null |
The lastest selectable date. |
onChange | (value: Date) => any |
null | Dispatches selected date/time on every date/time change. |
Contributing
- Install deps with
yarn
- Run webpack with
yarn dev
- Build with
yarn build
- Type check with
yarn flow