@rnwonder/react-date-picker
TypeScript icon, indicating that this package has built-in type declarations

0.1.8 • Public • Published

@rnwonder/react-date-picker

A simple and reusable Datepicker component for ReactJS (Demo)

Documentation

Screenshot 2023-05-20 084944.jpg Screenshot 2023-05-20 084945.jpg Screenshot 2023-05-20 084946.jpg

Installation

npm i @rnwonder/react-date-picker
yarn add @rnwonder/react-date-picker
pnpm add @rnwonder/react-date-picker

This package depends on react and react-dom so you need to have them installed

Usage

import '@rnwonder/react-date-picker/dist/style.css'
import DatePicker from "@rnwonder/react-date-picker";

const App = () => {
  return (
    <DatePicker
      onChange={(data) => {
        if (data.type === "range") {
          console.log(data.startDate, data.endDate);
        }
        if (data.type === "single") {
          console.log(data.selectedDate);
        }
        if (data.type === "multiple") {
          console.log(data.multipleDates);
        }
      }}
    />
  );
};

Styling With Props, Classes, or Attributes

  • You can style the datepicker using class props, color props, default css class names or data attributes.
  • Check out the documentation for more details

Themes

  • We have a growing list of themes you can use. Please check them out here

Other Datepicker Props

  • We have some other props that can be useful when working with the datepicker. Please check them out here

Formatting

  • Formatting the datepicker input label is done with the formatInputLabel, formatInputLabelRangeStart, formatInputLabelRangeEnd, localOptions and locale props
  • Check out the documentation for more details

Utility Functions

  • We have some utility functions that can be useful when working with the datepicker. Please check them out here

Contributing

  • Send a message to the author on X if you have any questions or suggestions. Don't forget to follow me on twitter.
  • Feel free to open an issue here if you run into any problem while using this library.
  • You can also contribute to this project here.

Buy Me A Coffee

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.1.864latest

Version History

VersionDownloads (Last 7 Days)Published
0.1.864
0.1.76
0.1.60
0.1.50
0.1.40
0.1.30
0.1.20
0.1.10
0.1.00
0.0.90
0.0.881
0.0.870
0.0.860
0.0.851
0.0.841
0.0.830
0.0.821
0.0.811
0.0.81
0.0.722
0.0.711
0.0.70
0.0.61
0.0.51
0.0.42
0.0.31
0.0.1141
0.0.1131
0.0.1121
0.0.111
0.0.20
0.0.11
0.0.02

Package Sidebar

Install

npm i @rnwonder/react-date-picker

Weekly Downloads

90

Version

0.1.8

License

MIT

Unpacked Size

270 kB

Total Files

83

Last publish

Collaborators

  • rnwonder