1.3.5 • Published 4 years ago

react-simple-date-range v1.3.5

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

React Simple Date Range

A fast, modern and highly customizable Date range picker for React. Integrates seamlessly React Hook form and can be styled using your favourite css framework like tailwindcss.

import { useState } from 'react';
import { DateRangePicker, DateRange } from 'react-simple-date-range';

const RangeExample = () => {
  const [range, setRange] = useState({
    start: null,
    end: null,
  } as DateRange);

  return (
    <DateRangePicker
      value={range}
      onChange={(newRange) => setRange(() => newRange)}
    ></DateRangePicker>
  );
};

export default RangeExample;

Features

  • Effortless form integration
  • Customizable cells
  • Full control over disabled dates, with custom options
  • Written in Typescript

Documentation

The documentation is currently being worked on, if you have any issues please visit the issues section on github.

Contributing

Feel free to submit a PR on Github

1.3.5

4 years ago

1.3.4

4 years ago

1.3.3

4 years ago

1.3.2

4 years ago

1.3.1

4 years ago

1.3.0

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.10

4 years ago

1.1.9

4 years ago

1.1.8

4 years ago

1.1.7

4 years ago

1.1.6

4 years ago

1.1.5

4 years ago

1.1.4

4 years ago

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.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago