{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "console-record-detail",
"title": "Console Record Detail",
"description": "A dense CRM and ERP record detail layout with command bar, identity header, accessible tabs, facts, activity, related records, context rail, and lifecycle states",
"dependencies": ["@base-ui/react", "daisyui", "lucide-react"],
"files": [
{
"path": "registry/default/blocks/console-record-detail/console-record-detail.tsx",
"content": "import { AlertTriangle, ChevronRight, CircleAlert, LoaderCircle, Pencil, Save, X } from 'lucide-react';\nimport type { ComponentPropsWithRef, ReactNode } from 'react';\nimport { cn } from '@/lib/utils';\n\nexport type ConsoleRecordDetailPageProps = ComponentPropsWithRef<'article'> & {\n\tcommandBar?: ReactNode;\n\tfooter?: ReactNode;\n\theader: ReactNode;\n};\n\nexport function ConsoleRecordDetailPage({\n\tchildren,\n\tclassName,\n\tcommandBar,\n\tfooter,\n\theader,\n\t...props\n}: ConsoleRecordDetailPageProps) {\n\treturn (\n\t\t