1.1.18 • Published 5 years ago

react-month-picker-calendar v1.1.18

Weekly downloads
62
License
MIT
Repository
github
Last release
5 years ago

React-Month-Picker-Calendar

codeship status

A month picker input and calendar for React.

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
closeOnSelectbooleanfalseClose calendar on month select
onChangeYearUpdatebooleantrueHandle year update with previous and next
rangePickerbooleanfalseWill show the range default of 12 months
inputRefFunction: (ref) => any-Modification of calendar input
isOpenboolean-to open automatically calendar on mount
placeholderstring/anyMM/YYto set a custom placeholder
classNamestring/any-to set className of top level element for custom styling
disabledInputChangebooleanfalsedisabling the input field to input numbers

Installation

npm install react-month-picker-calendar --save

Usage

React-Month-Picker-Calendar generates a year/month calendar opened on field focus.

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

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

License

Copyright (c) 2018. MIT License.

Acknowledgement This package is originally developed by Viacheslav Kysil

1.1.18

5 years ago

1.1.17

5 years ago

1.1.16

5 years ago

1.1.15

5 years ago

1.1.14

5 years ago

1.1.13

5 years ago

1.1.12

5 years ago

1.1.11

5 years ago

1.1.10

5 years ago

1.1.9

5 years ago

1.1.8

5 years ago

1.1.7

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago