date-time-picker-react

2.0.4 • Public • Published

A Date & Time picker for React

npm package Coveralls

Install

yarn add date-time-picker-react

Usage

import DateTimePicker from "date-time-picker-react";
 
class Demo extends React.Component {
  ...
  render() {
    return (
      <DateTimePicker onChange={value => {
        // do something...
      }}>
    );
  }
  ...
}

Props

Name Type Default Description
initialValue Date new Date() An initial date/time. Default is now.
dateFormat string "DD/MM/YY HH:mm" A Date format. Default is "DD/MM/YY HH:mm".
inputStyle { [string]: any } null Additional styles for the input element.
highlightColor string "#00a699" The selected/focussed highlight color.
min Date null The earliest selectable date.
max Date null The lastest selectable date.
onChange (value: Date) => any null Dispatches selected date/time on every date/time change.

Contributing

  • Install deps with yarn
  • Run webpack with yarn dev
  • Build with yarn build
  • Type check with yarn flow

Readme

Keywords

Package Sidebar

Install

npm i date-time-picker-react

Weekly Downloads

1

Version

2.0.4

License

MIT

Unpacked Size

32.7 kB

Total Files

7

Last publish

Collaborators

  • kjkta