1.1.3 • Published 4 years ago

react-custom-date-selector v1.1.3

Weekly downloads
14
License
MIT
Repository
github
Last release
4 years ago

react-custom-date-selector

A date selector component for your React app (Demo)

  • Select Day, Month and Year
  • Can use as Month picker as well
  • 15 Date / Month formats available
  • Can change date seperator
  • Can customize the styles
  • No dependencies needed

calander

Installation

This package can be installed via npm:

npm install react-custom-date-selector --save

Getting started

Compatibility

Your project needs to use React 16 or later

Installation

Add ReactPicker to your project by executing npm install react-date-picker

Usage

Here's an example of basic usage:

import React, { Component } from 'react';
import DatePicker from 'react-custom-date-selector';

class MyApp extends Component {
  onDateSelect = (selectedDate) => {
    console.log(selectedDate);
  }

  render() {
    return (
      <div>
        <DatePicker onDateSelect={this.onDateSelect}/>
      </div>
    );
  }
}

Props

Prop nameDescriptionDefault valueExample values
dateTo set custom date as prop"current date""15-08-2019"
dateFormatTo select display date formatDate: "DDMMYYYY"Month: "MonYYYY"For date picker"YYYYMMDD""DDMonYYYY""DDMonthYYYY""DDMonYYYY""YYYYMonthDD""DDMMYY""YYMMDD"For month picker"YYYYMon""MMYYYY""YYYYMM""MM""Mon""Month"
inputTo change selector Button to Inputfalsetrue
seperatorTo change selector date seperator"/""-"
monthSelectorTo use as Month Pickerfalsetrue
colorTo change color of the selected day / month / year"#1CA6D9""#32A852"
selectorStyleTo change the selector Button / Input style{}{ border: '1px solid gray' }
iconURLTo add icon to selector Buttonn/a"assets/calander.svg"
iconPositionTo change icon's position"right""left"

License

The MIT License.

Author

Thank You !

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago