{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "table", "title": "Table", "description": "Cinatra design-system Table primitives.", "registryDependencies": [ "utils" ], "files": [ { "path": "src/components/ui/table.tsx", "content": "\"use client\"\n\nimport * as React from \"react\"\n\nimport { cn } from \"@/lib/utils\"\n\nfunction Table({ className, ...props }: React.ComponentProps<\"table\">) {\n return (\n \n \n \n )\n}\n\n// Table header rule: \"mono-uppercase navy-underline header\".\n// The TableHeader carries a navy bottom border (--line-strong) to make the\n// uppercase column labels feel printed rather than UI'd.\nfunction TableHeader({ className, ...props }: React.ComponentProps<\"thead\">) {\n return (\n \n )\n}\n\n// Seersucker zebra. Body rows alternate between the table bg and the cool\n// --stripe-light wash. The :last-child rule keeps the \"no terminal border\"\n// behavior.\nfunction TableBody({ className, ...props }: React.ComponentProps<\"tbody\">) {\n return (\n \n )\n}\n\nfunction TableFooter({ className, ...props }: React.ComponentProps<\"tfoot\">) {\n return (\n tr]:last:border-b-0\",\n className\n )}\n {...props}\n />\n )\n}\n\nfunction TableRow({ className, ...props }: React.ComponentProps<\"tr\">) {\n return (\n \n )\n}\n\n// Table header cells: mono 10px 700 0.18em uppercase in slate\n// (--muted-foreground). The navy underline lives on the TableHeader row so\n// columns share one continuous rule.\nfunction TableHead({ className, ...props }: React.ComponentProps<\"th\">) {\n return (\n \n )\n}\n\nfunction TableCell({ className, ...props }: React.ComponentProps<\"td\">) {\n return (\n \n )\n}\n\nfunction TableCaption({\n className,\n ...props\n}: React.ComponentProps<\"caption\">) {\n return (\n \n )\n}\n\nexport {\n Table,\n TableHeader,\n TableBody,\n TableFooter,\n TableHead,\n TableRow,\n TableCell,\n TableCaption,\n}\n", "type": "registry:ui" } ], "type": "registry:ui" }