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

1.0.1 • Public • Published

alt text

Installation

The package can be installed via npm:

npm install @meinefinsternis/react-horizontal-date-picker --save

Below is a simple example of how to use the Datepicker in a React view.

import React from "react";
import { Datepicker, DatepickerEvent} from "@meinefinsternis/react-horizontal-date-picker";
import { enUS } from "date-fns/locale";

const Example = () => {
  const [date, setDate] = React.useState<{
    endValue: Date | null;
    startValue: Date | null;
    rangeDates: Date[] | null;
  }>({
    startValue: null,
    endValue: null,
    rangeDates: [],
  });

  const handleChange = (d: DatepickerEvent) => {
    const [startValue, endValue, rangeDates] = d;
    setDate((prev) => ({ ...prev, endValue, startValue, rangeDates }));
  };

  return (
    <Datepicker
      onChange={handleChange}
      locale={enUS}
      startValue={date.startValue}
      endValue={date.endValue}
    />
  );
};

Props

Common props you may want to specify include:

  • locale: Locale - locales directly exported from date-fns/locales.
  • onChange: (d: [Date | null, Date | null, Date[] | null]) => void - subscribe to change events
  • startValue: Date | null - defines the initial start value
  • endValue: Date | null - defines the initial end value
  • startDate?: Date - defines minimum date. Default new Date().
  • endDate?: Date - defines maximum date. Default new Date() + 3 months
  • className?: object - apply a className to the customize
  • disabledDates?: Date[] - list of disabled dates

Package Sidebar

Install

npm i @meinefinsternis/react-horizontal-date-picker

Weekly Downloads

405

Version

1.0.1

License

MIT

Unpacked Size

41.5 kB

Total Files

7

Last publish

Collaborators

  • meinefinsternis