1.0.1 • Published 7 years ago

tm-react-month-picker-input v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

React-Month-Picker-Input

A month picker input and calendar for React.

Demo

Live demo: slavakisel.github.io/react-month-picker-input

API

NameTypesDefaultDescription
yearnumbervoidPreselect year in calendar
monthnumber (0..11)voidPreselect month in calendar. If both year and month are specified then input field will be also prepopulated
inputPropsobjectempty objectInput field props, only id and name are supported
onChangeFunction: (maskedValue: string, year: number, month: number) => any-onChange callback, receives maskedValue, year and month (begins with 0) as arguments

Installation

npm install react-month-picker-input --save

Usage

React-Month-Picker-Input generates an input field and year/month calendar opened on field focus.

var MonthPickerInput = require('react-month-picker-input');
require('react-month-picker-input/dist/react-month-picker-input.css');

<MonthPickerInput
  value={new Date()}
  onChange={function(selectedYear, selectedMonth) {
    console.log(selectedYear, selectedMonth);
  }}
/>

License

Copyright (c) 2017 Viacheslav Kysil. MIT License.