JSPM

react-day-picker

9.0.5
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5805449
  • Score
    100M100P100Q206188F
  • License MIT

Customizable Date Picker for React

Package Exports

  • react-day-picker
  • react-day-picker/dist/style.css
  • react-day-picker/dist/style.module.css
  • react-day-picker/examples
  • react-day-picker/jalali
  • react-day-picker/lib
  • react-day-picker/package.json
  • react-day-picker/style.css
  • react-day-picker/style.module.css
  • react-day-picker/utc

Readme

React DayPicker

DayPicker is a React component to create date pickers, calendars, and date inputs for web applications.

📖 See daypicker.dev for guides, examples and API reference.

Features

DayPicker is written in TypeScript and compiled to CommonJS and ESM. It relies on date-fns for date manipulation and formatting.

Installation

npm install react-day-picker

npm version npm downloads Min gzipped size

Example

import { DayPicker } from "react-day-picker";
import "react-day-picker/style.css";

function MyDatePicker() {
  const [selected, setSelected] = useState<Date>();

  return (
    <DayPicker
      mode="single"
      selected={selected}
      onSelect={setSelected}
      footer={
        selected ? `Selected: ${selected.toLocaleDateString()}` : "Pick a day."
      }
    />
  );
}

Compatibility

DayPicker is compatible with React 16.8 and later.

License

DayPicker is released under the MIT License.

Community

Ask for help and share your experience with DayPicker.

Funding

Consider supporting DayPicker's maintainer with a donation. Your support helps to keep the project alive and keep it updated.