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-disabled-weekends-block
pure-ui/calendar-disabled-weekends-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-disabled-weekends-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 Calendar8Block() {9 const [dateRange, setDateRange] = useState<DateRange | undefined>({10 from: new Date(2025, 5, 17),11 to: new Date(2025, 5, 20),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 disabled={{ dayOfWeek: [0, 6] }}24 excludeDisabled25 />26 </div>27 );28}
What it pulls in
Other registry items
