{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "staggered-dropdown-shadcnui", "type": "registry:component", "title": "Staggered Dropdown", "description": "Dropdown menu with staggered item animations", "registryDependencies": [ "button" ], "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/components/dropdown/staggered-items.tsx", "content": "\"use client\";\n\nimport { AnimatePresence, motion } from \"framer-motion\";\nimport { ChevronDown } from \"lucide-react\";\nimport { useState } from \"react\";\n\nconst items = [\"Profile\", \"Settings\", \"Billing\", \"Team\", \"Logout\"];\n\nexport function StaggeredDropdown() {\n const [isOpen, setIsOpen] = useState(false);\n\n return (\n