Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-time-picker
Advanced tools
An input component for picking time for your React application.
npm install react-time-picker
or yarn add react-time-picker
.import TimePicker from 'react-time-picker'
.<TimePicker />
. Use onChange
prop for getting new values.Minimal demo page is included in sample directory.
Online demo is also available!
React-Time-Picker will play nicely with React-Date-Picker. Check it out!
React-Calendar, on which React-Date-Picker relies heavily, uses modern web technologies. That's why it's so fast, lightweight and easy to style. This, however, comes at a cost of supporting only modern browsers.
Browser | Minimum supported version |
---|---|
Google Chrome | 24 |
Mozilla Firefox | 29 |
Microsoft Edge | 12 |
Apple Safari | 10 |
Apple Safari (iOS) | 10.2 |
Opera | 15 |
Internet Explorer | 11 |
Samsung Internet | 4 |
If you need to support legacy browsers like Internet Explorer 10, you will need to use Intl.js or another Intl polyfill along with React-Date-Picker.
Add React-Time-Picker to your project by executing npm install react-time-picker
or yarn add react-time-picker
.
Here's an example of basic usage:
import React, { Component } from 'react';
import TimePicker from 'react-time-picker';
class MyApp extends Component {
state = {
time: '10:00',
}
onChange = time => this.setState({ time })
render() {
return (
<div>
<TimePicker
onChange={this.onChange}
value={this.state.time}
/>
</div>
);
}
}
If you don't want to use default React-Time-Picker styling to build upon it, you can import React-Time-Picker by using import TimePicker from 'react-time-picker/dist/entry.nostyle';
instead.
Displays an input field complete with custom inputs, native input and a clock.
Prop name | Description | Example values |
---|---|---|
clockClassName | Defines class name(s) that will be added along with "react-clock" to the main React-Clock <time> element. |
|
clockIcon | Defines the content of the clock button. |
|
className | Defines class name(s) that will be added along with "react-time-picker" to the main React-Time-Picker <div> element. |
|
clearIcon | Defines the content of the clear button. |
|
isOpen | Defines whether the calendar should be opened. Defaults to false. | true |
locale | Defines which locale should be used by the calendar. Can be any IETF language tag. Defaults to user's browser settings. | "hu-HU" |
maxDetail | Defines how detailed time picking shall be. Can be "hour", "minute" or "second". Defaults to "minute". | "second" |
maxTime | Defines maximum time that the user can select. |
|
minTime | Defines minimum date that the user can select. |
|
onChange | Function called when the user picks a valid time. | (value) => alert('New time is: ', value) |
required | Defines whether date input should be required. Defaults to false. | true |
value | Defines the value of the input. |
|
The MIT License.
Wojciech Maj kontakt@wojtekmaj.pl http://wojtekmaj.pl |
FAQs
A time picker for your React app.
We found that react-time-picker demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.