{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "select-uncontrolled-example",
  "title": "Select Uncontrolled",
  "description": "select-uncontrolled-example",
  "registryDependencies": [
    "https://intentui.com/r/field",
    "https://intentui.com/r/select"
  ],
  "files": [
    {
      "path": "src/components/examples/pickers/select/select-uncontrolled-example.tsx",
      "content": "'use client'\n\nimport { Label } from '@/components/ui/field'\nimport { Select, SelectContent, SelectItem, SelectTrigger } from '@/components/ui/select'\n\nexport const movies = [\n  { id: 1, title: 'Inception' },\n  { id: 2, title: 'The Dark Knight' },\n  { id: 3, title: 'Interstellar' },\n  { id: 4, title: 'The Matrix' },\n  { id: 5, title: 'Pulp Fiction' },\n]\n\nexport default function SelectUncontrolledDemo() {\n  return (\n    <Select defaultValue={2} placeholder=\"Select a movie\">\n      <Label>Movies</Label>\n      <SelectTrigger />\n      <SelectContent items={movies}>\n        {(item) => (\n          <SelectItem id={item.id} textValue={item.title}>\n            {item.title}\n          </SelectItem>\n        )}\n      </SelectContent>\n    </Select>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/select-uncontrolled-example/page.tsx"
    }
  ],
  "type": "registry:page"
}