calendar-constraints-demo
jolyui-ui/calendar-constraints-demoFreeExample
jolyui/ui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by jolyui/ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://jolyui.dev/r/calendar-constraints-demo.jsonSource
1import { useState } from "react";2import { AnimatedCalendar } from "@/registry/default/ui/calender";34export default function CalendarConstraintsDemo() {5 const [date, setDate] = useState<Date>();67 // Disable weekends and past dates8 const today = new Date();9 today.setHours(0, 0, 0, 0);1011 return (12 <div className="flex flex-col gap-3">13 <h3 className="font-medium text-sm">Calendar with Constraints</h3>14 <p className="text-muted-foreground text-xs">15 Weekends and past dates are disabled16 </p>17 <AnimatedCalendar18 mode="single"19 value={date}20 onChange={setDate}21 minDate={today}22 disabledDaysOfWeek={[0, 6]} // Disable Sunday (0) and Saturday (6)23 placeholder="Select a weekday"24 />25 {date && (26 <p className="text-muted-foreground text-sm">27 Selected: {date.toLocaleDateString()}28 </p>29 )}30 </div>31 );32}
What it pulls in
Other registry items
Files it writes
More from jolyui/ui
All 199 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| ai-prompt-box-demoai-prompt-box-demo | jolyui/ui | Examples | Free | no deps | |
| ai-prompt-box-loading-demoai-prompt-box-loading-demo | jolyui/ui | Examples | Free | no deps | |
| animated-beam-bidirectional-demoanimated-beam-bidirectional-demo | jolyui/ui | Examples | Free | 1 dep | |
| animated-beam-curved-demoanimated-beam-curved-demo | jolyui/ui | Examples | Free | 1 dep | |
| animated-beam-demoanimated-beam-demo | jolyui/ui | Examples | Free | 1 dep | |
| animated-beam-multiple-demoanimated-beam-multiple-demo | jolyui/ui | Examples | Free | 1 dep | |
| animated-table-basic-demoanimated-table-basic-demo | jolyui/ui | Examples | Free | no deps | |
| animated-table-column-demoanimated-table-column-demo | jolyui/ui | Examples | Free | no deps |
