{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "detail-list", "dependencies": [], "registryDependencies": [ "@seamless/utils" ], "files": [ { "path": "src/components/ui/detail-list.tsx", "content": "import type * as React from \"react\"\n\nimport { cn } from \"@/lib/utils\"\n\n/**\n * NOTE: the facts a record leads with — label over value, wrapping into as many columns as fit.\n * A definition list because that is what it is; the grid is the only thing this adds.\n */\nfunction DetailList({ className, ...props }: React.ComponentProps<\"dl\">) {\n return (\n \n )\n}\n\nfunction DetailItem({ className, ...props }: React.ComponentProps<\"div\">) {\n return
\n}\n\nfunction DetailTerm({ className, ...props }: React.ComponentProps<\"dt\">) {\n return (\n \n )\n}\n\n/** CONSTRAINT: one line, truncated — a fact that wraps re-flows every column beside it. */\nfunction DetailValue({ className, ...props }: React.ComponentProps<\"dd\">) {\n return (\n \n )\n}\n\nexport { DetailItem, DetailList, DetailTerm, DetailValue }\n", "type": "registry:ui" } ], "type": "registry:ui" }