React date and time pickers powered by MomentJS.
This project is created from an older GitHub project by Prometheus Research.
I wanted to add more functionality, but the other project was not being maintained and not being published to NPM so we created this repo.
Demo
A demo can be viewed here
Requirements
This module has peer dependencies: react, react-dom, and moment.
These dependencies are not included in the build to reduce duplicate dependencies as a result of minor version differences.
This allows for a flat dependency graph and should significantly reduce build size.
Read More Here
Sizing
As with many css components, getting them to look the way you want on all devices is not always so easy. These pickers are
designed to stretch to their parent container element. The parent wrapper must have a set width and height.
Usage
Go download input-moment.css and drop it as a css link in your html page.
import {InputMoment, DatePicker, TimePicker} from 'react-input-moment';
<div className="wrapper">
<InputMoment
moment={this.state.moment}
onChange={this.handleChange}
showSeconds={true}
locale="en"
/>
</div>
<div className="wrapper">
<DatePicker
moment={this.state.moment}
onChange={this.handleChange}
locale="en"
/>
</div>
<div className="wrapper">
<TimePicker
moment={this.state.moment}
onChange={this.handleChange}
showSeconds={true}
locale="en"
/>
</div>
Check app.js
for a working example.
Development
License
ISC