{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "choicebox-disabled-example",
  "title": "Choicebox Disabled",
  "description": "choicebox-disabled-example",
  "registryDependencies": [
    "https://intentui.com/r/choice-box"
  ],
  "files": [
    {
      "path": "src/components/examples/collections/choicebox/choicebox-disabled-example.tsx",
      "content": "'use client'\n\nimport { ChoiceBox, ChoiceBoxItem } from '@/components/ui/choice-box'\n\nexport default function ChoiceboxDisabledDemo() {\n  return (\n    <div className=\"p-1\">\n      <ChoiceBox aria-label=\"Select packages\" selectionMode=\"multiple\" items={packages}>\n        {(item) => (\n          <ChoiceBoxItem\n            textValue={item.id}\n            isDisabled={['sm', 'lg'].includes(item.id)}\n            {...item}\n          />\n        )}\n      </ChoiceBox>\n    </div>\n  )\n}\n\nconst packages = [\n  {\n    id: 'sm',\n    label: 'Small',\n    description: 'Perfect for beginners. Basic resources for light projects.',\n  },\n  {\n    id: 'md',\n    label: 'Medium',\n    description: 'Great for growing sites. More power and storage.',\n  },\n  {\n    id: 'lg',\n    label: 'Large',\n    description: 'Ideal for busy sites. Lots of resources and support.',\n  },\n  {\n    id: 'xl',\n    label: 'Extra Large',\n    description: 'Max power for demanding applications. Top-tier performance.',\n  },\n]\n",
      "type": "registry:page",
      "target": "app/choicebox-disabled-example/page.tsx"
    }
  ],
  "type": "registry:page"
}