This component no longer exists. It was in Pure UI’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-10 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
calendar-range-selection-minimum-and-maximum-days-block
pure-ui/calendar-range-selection-minimum-and-maximum-days-blockRemovedBlock
Pure UI publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/MusKRI/pure-ui/main/public/r/calendar-range-selection-minimum-and-maximum-days-block.jsonSource
1"use client";23import { useState } from "react";4import { DateRange } from "react-day-picker";56import { Calendar } from "@/registry/pure-ui/ui/calendar";78export function Calendar6Block() {9 const [dateRange, setDateRange] = useState<DateRange | undefined>({10 from: new Date(2025, 5, 18),11 to: new Date(2025, 6, 7),12 });1314 return (15 <div className="flex flex-col gap-2 items-center justify-center p-5 min-h-[500px]">16 <Calendar17 animate18 mode="range"19 defaultMonth={dateRange?.from}20 selected={dateRange}21 onSelect={setDateRange}22 numberOfMonths={2}23 min={2}24 max={20}25 />26 <div className="text-muted-foreground text-center text-xs">27 Your stay must be between 2 and 20 nights28 </div>29 </div>30 );31}
What it pulls in
Other registry items
