Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
react-input-moment
Advanced tools
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.
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
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.
If you want to override the default colors and use your own color scheme, see the scss in this file.
import {InputMoment, BigInputMoment, DatePicker, TimePicker} from 'react-input-moment';
//all wrapper classes should have a set width and height.
//percentages will work as long as the parent of the wrapper has a set width and height.
<div className="wrapper">
<InputMoment
moment={this.state.moment}
onChange={this.handleChange}
showSeconds={true}
locale="en"
/>
</div>
<div className="wrapper">
<BigInputMoment
moment={this.state.moment}
onChange={this.handleChange}
locale="en"
/>
</div>
<div className="wrapper">
<DatePicker
moment={this.state.moment}
onChange={this.handleChange}
locale="en"
/>
</div>
//onChange(startMoment, endMoment)
<div className="wrapper">
<DatePickerRange
startMoment={this.state.startMoment}
endMoment={this.state.endMoment}
onChange={this.handleChange}
/>
</div>
<div className="wrapper">
<TimePicker
moment={this.state.moment}
onChange={this.handleChange}
showSeconds={true}
locale="en"
/>
</div>
Check app.js for a working example.
ISC
FAQs
React date and time pickers powered by MomentJS.
The npm package react-input-moment receives a total of 61 weekly downloads. As such, react-input-moment popularity was classified as not popular.
We found that react-input-moment demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.