{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "unfold-list-demo",
  "type": "registry:example",
  "title": "Unfold List Demo",
  "description": "Three questions, one panel open at a time.",
  "registryDependencies": [
    "@loomui/unfold-list"
  ],
  "files": [
    {
      "path": "registry/example/unfold-list-demo.tsx",
      "content": "import { UnfoldItem, UnfoldList } from \"@/registry/loomui/unfold-list\"\n\nexport default function UnfoldListDemo() {\n  return (\n    <UnfoldList defaultValue=\"own\" className=\"w-full max-w-md\">\n      <UnfoldItem value=\"own\" title=\"Do I own the code?\">\n        It lands in your repo as a plain file. Edit it, rename it, delete half\n        of it. Nothing upstream is going to complain.\n      </UnfoldItem>\n\n      <UnfoldItem value=\"deps\" title=\"What does it install?\">\n        The file, plus the tokens it needs. No animation library, no provider to\n        wrap your app in, no bundle you have to defend at review.\n      </UnfoldItem>\n\n      <UnfoldItem value=\"motion\" title=\"What about reduced motion?\">\n        Handled. Every component checks the preference itself and settles\n        straight into its finished state.\n      </UnfoldItem>\n    </UnfoldList>\n  )\n}\n",
      "type": "registry:example"
    }
  ]
}