1.0.20 • Published 6 years ago

react-day-input v1.0.20

Weekly downloads
23
License
MIT
Repository
github
Last release
6 years ago

react-day-input

npm version Downloads

A simple date picker for React, powered by Moment.

Live Demo

Check out the live demo here: http://abasystems.github.io/react-day-input/

Installation

Install the package with npm:

npm install react-day-input

Then require and use with ES6 imports:

import React from 'react'

import { StrictDayInput } from 'react-day-input'

class MyForm extends React.Component {
  constructor(props) {
    super(props);

    this.state = {
      ...this.state,

      dueBy: null,
    };
  }

  render() {
    return (
      <form>
        <StrictDayInput
          value={this.state.dueBy}
          onChange={(newDate) => {
            this.setState({dueBy: newDate});
          }}
        />
        <button type="submit">Submit</button>
      </form>
    );
  }
}

And include the built css with an import:

@import 'node_modules/react-day-input/dist/react-day-input.css';

or tag:

<link href="static/node_modules/react-day-input/dist/react-day-input.css" rel="stylesheet">

Full reference documentation coming soon. For now, take a look at the reference on the live demo at http://abasystems.github.io/react-day-input/.

1.0.20

6 years ago

1.0.19

6 years ago

1.0.18

6 years ago

1.0.17

6 years ago

1.0.16

6 years ago

1.0.15

6 years ago

1.0.14

6 years ago

1.0.13

6 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago