{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "calendar-range-selection-minimum-and-maximum-days-block", "type": "registry:block", "registryDependencies": [ "calendar" ], "files": [ { "path": "src/registry/pure-ui/blocks/calendar/calendar-6-block.tsx", "content": "\"use client\";\r\n\r\nimport { useState } from \"react\";\r\nimport { DateRange } from \"react-day-picker\";\r\n\r\nimport { Calendar } from \"@/registry/pure-ui/ui/calendar\";\r\n\r\nexport function Calendar6Block() {\r\n const [dateRange, setDateRange] = useState({\r\n from: new Date(2025, 5, 18),\r\n to: new Date(2025, 6, 7),\r\n });\r\n\r\n return (\r\n
\r\n \r\n
\r\n Your stay must be between 2 and 20 nights\r\n
\r\n
\r\n );\r\n}\r\n", "type": "registry:file", "target": "blocks/calendar/calendar-6-block.tsx" } ] }