Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
React Dates | 12,175 | 1,749 | 608 | a month ago | 164 | January 29, 2020 | 611 | mit | JavaScript | |
An easily internationalizable, mobile-friendly datepicker library for the web | ||||||||||
React Datepicker | 7,618 | 3,397 | 2,305 | 2 days ago | 167 | November 30, 2023 | 325 | mit | JavaScript | |
A simple and reusable datepicker component for React | ||||||||||
React Day Picker | 5,457 | 1,493 | 981 | 3 days ago | 220 | October 18, 2023 | 33 | mit | TypeScript | |
DayPicker is a customizable date picker component for React, with native TypeScript support. | ||||||||||
React Infinite Calendar | 3,564 | 119 | 31 | 4 years ago | 42 | May 09, 2017 | 77 | mit | JavaScript | |
✨ Infinite scrolling date-picker built with React, with localization, range selection, themes, keyboard support, and more. | ||||||||||
Mui X | 3,175 | 912 | 21 hours ago | 100 | December 04, 2023 | 1,017 | TypeScript | |||
MUI X: Build data-rich applications using a growing list of advanced React components. | ||||||||||
React Native Modal Datetime Picker | 2,852 | 488 | 151 | 4 days ago | 96 | August 18, 2023 | 10 | mit | JavaScript | |
A React-Native datetime-picker for Android and iOS | ||||||||||
React Native Datepicker | 1,962 | 826 | 175 | 3 years ago | 27 | April 22, 2018 | 260 | mit | JavaScript | |
react native datePicker component for both Android and IOS, useing DatePikcerAndroid, TimePickerAndroid and DatePickerIOS | ||||||||||
React Input Enhancements | 1,379 | 25 | 15 | a year ago | 45 | May 06, 2020 | 25 | mit | JavaScript | |
Set of enhancements for input control | ||||||||||
Obsidian Db Folder | 982 | 3 days ago | 173 | mit | TypeScript | |||||
Obsidian Plugin to Allow Notion like database based on folders | ||||||||||
React Modern Calendar Datepicker | 935 | 1 | 42 | 3 months ago | 22 | July 03, 2020 | 161 | mit | JavaScript | |
A modern, beautiful, customizable date picker for React |
A simple and reusable Datepicker component for React (Demo)
The package can be installed via npm:
npm install react-datepicker --save
Or via yarn:
yarn add react-datepicker
Youll need to install React and PropTypes separately since those dependencies arent included in the package. If you need to use a locale other than the default en-US, you'll also need to import that into your project from date-fns (see Localization section below). Below is a simple example of how to use the Datepicker in a React view. You will also need to require the CSS file from this package (or provide your own). The example below shows how to include the CSS from this package if your build system supports requiring CSS files (Webpack is one that does).
import React, { useState } from "react";
import DatePicker from "react-datepicker";
import "react-datepicker/dist/react-datepicker.css";
// CSS Modules, react-datepicker-cssmodules.css
// import 'react-datepicker/dist/react-datepicker-cssmodules.css';
const Example = () => {
const [startDate, setStartDate] = useState(new Date());
return (
<DatePicker selected={startDate} onChange={(date) => setStartDate(date)} />
);
};
The most basic use of the DatePicker can be described with:
<DatePicker selected={startdate} onChange={(date) => setStartDate(date)} />
You can use onSelect
event handler which fires each time some calendar date has been selected
<DatePicker
selected={date}
onSelect={handleDateSelect} //when day is clicked
onChange={handleDateChange} //only when value has changed
/>
onClickOutside
handler may be useful to close datepicker in inline
mode
See here for a full list of props that may be passed to the component. Examples are given on the main website.
You can also include a time picker by adding the showTimeSelect prop
<DatePicker
selected={date}
onChange={handleDateChange}
showTimeSelect
dateFormat="Pp"
/>
Times will be displayed at 30-minute intervals by default (default configurable via timeIntervals prop)
More examples of how to use the time picker are given on the main website
The date picker relies on date-fns internationalization to localize its display components. By default, the date picker will use the locale globally set, which is English. Provided are 3 helper methods to set the locale:
import { registerLocale, setDefaultLocale } from "react-datepicker";
import es from 'date-fns/locale/es';
registerLocale('es', es)
<DatePicker
locale="es"
/>
Locales can be changed in the following way:
setDefaultLocale('es');
We're always trying to stay compatible with the latest version of React. We can't support all older versions of React.
Latest compatible versions:
Up until version 1.8.0, this package was using Moment.js. Starting v2.0.0, we switched to using date-fns
, which uses native Date objects, to reduce the size of the package. If you're switching from 1.8.0 to 2.0.0 or higher, please see the updated example above of check out the examples site for up to date examples.
The date picker is compatible with the latest versions of Chrome, Firefox, and IE10+.
Unfortunately, it is difficult to support legacy browsers while maintaining our ability to develop new features in the future. For IE9 support, it is known that the classlist polyfill is needed, but this may change or break at any point in the future.
The main
branch contains the latest version of the Datepicker component.
To begin local development:
yarn install
yarn build-dev
yarn start
The last step starts documentation app as a simple webserver on http://localhost:3000.
You can run yarn test
to execute the test suite and linters. To help you develop the component weve set up some tests that cover the basic functionality (can be found in /tests
). Even though were big fans of testing, this only covers a small piece of the component. We highly recommend you add tests when youre adding new functionality.
The examples are hosted within the docs folder and are ran in the simple app that loads the Datepicker. To extend the examples with a new example, you can simply duplicate one of the existing examples and change the unique properties of your example.
Copyright (c) 2014-2023 HackerOne Inc. and individual contributors. Licensed under MIT license, see LICENSE for the full license.