Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-time-picker

Package Overview
Dependencies
Maintainers
1
Versions
86
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-time-picker

A time picker for your React app.

  • 2.8.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
108K
decreased by-19.22%
Maintainers
1
Weekly downloads
 
Created
Source

downloads build dependencies dev dependencies tested with jest

React-Time-Picker

A time picker for your React app.

  • Supports virtually any language
  • No moment.js needed

tl;dr

  • Install by executing npm install react-time-picker or yarn add react-time-picker.
  • Import by adding import TimePicker from 'react-time-picker'.
  • Use by adding <TimePicker />. Use onChange prop for getting new values.

Demo

Minimal demo page is included in sample directory.

Online demo is also available!

Looking for a date picker or a datetime picker?

React-Time-Picker will play nicely with React-Date-Picker and React-DateTime-Picker. Check them out!

Getting started

Compatibility

Your project needs to use React 16 or later. If you use older version of React, please refer to the table below to find suitable React-Time-Picker version.

React versionNewest supported React-Time-Picker
>16.0latest
>15.02.1.1
Legacy browsers

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.

Installation

Add React-Time-Picker to your project by executing npm install react-time-picker or yarn add react-time-picker.

Usage

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>
    );
  }
}

Custom styling

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.

User guide

TimePicker

Displays an input field complete with custom inputs, native input and a clock.

Props
Prop nameDescriptionExample values
clockClassNameDefines class name(s) that will be added along with "react-clock" to the main React-Clock <time> element.
  • String: "class1 class2"
  • Array of strings: ["class1", "class2 class3"]
clockIconDefines the content of the clock button. Setting the value explicitly to null will hide the icon.
  • String: "Clock"
  • React element: <ClockIcon />
classNameDefines class name(s) that will be added along with "react-time-picker" to the main React-Time-Picker <div> element.
  • String: "class1 class2"
  • Array of strings: ["class1", "class2 class3"]
clearIconDefines the content of the clear button. Setting the value explicitly to null will hide the icon.
  • String: "Clear"
  • React element: <ClearIcon />
disabledDefines whether the time picker should be disabled. Defaults to false.true
disableClockDefines whether the clock should be disabled. Defaults to false.true
isOpenDefines whether the clock should be opened. Defaults to false.true
localeDefines which locale should be used by the time picker and the clock. Can be any IETF language tag. Defaults to user's browser settings."hu-HU"
maxDetailDefines how detailed time picking shall be. Can be "hour", "minute" or "second". Defaults to "minute"."second"
maxTimeDefines maximum time that the user can select.
  • Date: new Date()
  • String: "22:15:00"
minTimeDefines minimum date that the user can select.
  • Date: new Date()
  • String: "22:15:00"
nameDefines input name. Defaults to "time"."myCustomName"
onChangeFunction called when the user picks a valid time.(value) => alert('New time is: ', value)
requiredDefines whether date input should be required. Defaults to false.true
valueDefines the value of the input.
  • Date: new Date()
  • String: "22:15:00"

Clock

TimePicker component passes all props to React-Clock, with the exception of className (you can use clockClassName for that instead). There are tons of customizations you can do! For more information, see Clock component props.

License

The MIT License.

Author

Wojciech Maj
kontakt@wojtekmaj.pl
http://wojtekmaj.pl

Keywords

FAQs

Package last updated on 07 Oct 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc