
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
@meinefinsternis/react-horizontal-datepicker
Advanced tools
A simple component that allows the user to choose a date from a scrollable monthly view.

The package can be installed via npm:
npm install @meinefinsternis/react-horizontal-datepicker --save
Below is a simple example of how to use the Datepicker in a React view.
import React from "react";
import { Datepicker, DatepickerEvent} from "react-horizontal-datepicker";
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}
/>
);
};
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 eventsstartValue: Date | null - defines the initial start valueendValue: Date | null - defines the initial end valuestartDate?: Date - defines minimum date. Default new Date().endDate?: Date - defines maximum date. Default new Date() + 3 monthsclassName?: object - apply a className to the customizedisabledDates?: Date[] - list of disabled datesFAQs
A simple component that allows the user to choose a date from a scrollable monthly view.
The npm package @meinefinsternis/react-horizontal-datepicker receives a total of 0 weekly downloads. As such, @meinefinsternis/react-horizontal-datepicker popularity was classified as not popular.
We found that @meinefinsternis/react-horizontal-datepicker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.