
Security News
Potemkin Understanding in LLMs: New Study Reveals Flaws in AI Benchmarks
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
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.
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
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.