1.5.6 • Published 10 months ago

react-calendar-dynamic v1.5.6

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Logo

react-calendar-dynamic

A useful calendar for React app.

key Features

  • Timezone
  • Available date
  • Loading
  • Range selection

Installation

npm install react-calendar-dynamic

Usage

import { useState } from "react";
import { DynamicCalendar } from "react-calendar-dynamic";
import "react-calendar-dynamic/dist/styles.css";

const MyComponent = () => {
  const [date, setDate] = useState({ start: new Date(), end: new Date() });

  const handleChangeDate = (date) => setDate(date);

  return <DynamicCalendar mode="range" onChange={handleChangeDate} />;
};

Props

timezone: string

<DynamicCalendar mode="single" timezone="Chile/EasterIsland" />

loading: boolean

<DynamicCalendar mode="single" loading />

availableDateRange: Date[]

<DynamicCalendar
  mode="single"
  availableDateRange={[
    new Date(),
    new Date(new Date().setDate(new Date().getDate() + 1)),
    new Date(new Date().setDate(new Date().getDate() + 3)),
    new Date(new Date().setDate(new Date().getDate() + 6)),
    new Date(new Date().setDate(new Date().getDate() + 12)),
  ]}
/>

mode: "single" | "range"

<DynamicCalendar mode="single" />

onChange: ({ start, end }: { start: Date; end: Date }) => void

<DynamicCalendar mode="single" onChange={handleChangeDate} />

value: Date

<DynamicCalendar mode="single" value={new Date(new Date().setMonth(5))} />

startValue: Date

endValue: Date

<DynamicCalendar
  mode="range"
  startValue={new Date()}
  endValue={new Date(new Date().setDate(new Date().getDate() + 12))}
/>

onChangeMonth: (month: number) => void

<DynamicCalendar mode="single" onChangeMonth={handleChangeMonth} />

minValue: Date | null // When it is null, the limit is not applied

maxValue: Date | null // When it is null, the limit is not applied

<DynamicCalendar mode="single" minValue={null} maxValue={new Date()} />
1.5.6

10 months ago

1.5.5

12 months ago

1.5.1

12 months ago

1.5.0

12 months ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago