{
  "$schema": "https://shadcn-vue.com/schema/registry-item.json",
  "name": "data-list",
  "title": "Data List",
  "type": "registry:ui",
  "files": [
    {
      "path": "packages/registry-vue/components/data-list/DataList.vue",
      "content": "<script setup lang=\"ts\">\nimport { cn } from '@/lib/utils'\n</script>\n\n<template>\n  <div :class=\"cn('flex flex-col', $attrs.class as string)\">\n    <slot />\n  </div>\n</template>\n",
      "type": "registry:ui",
      "target": "~/app/components/ui/data-list/DataList.vue"
    },
    {
      "path": "packages/registry-vue/components/data-list/DataListItem.vue",
      "content": "<script setup lang=\"ts\">\nimport { cn } from '@/lib/utils'\n</script>\n\n<template>\n  <div\n    :class=\"\n      cn(\n        'flex flex-row items-center justify-between border-b py-4 transition-colors duration-200 first:pt-0 last:border-0 last:pb-0',\n        $attrs.class as string,\n      )\n    \"\n  >\n    <slot />\n  </div>\n</template>\n",
      "type": "registry:ui",
      "target": "~/app/components/ui/data-list/DataListItem.vue"
    },
    {
      "path": "packages/registry-vue/components/data-list/index.ts",
      "content": "export { default as DataList } from './DataList.vue'\nexport { default as DataListItem } from './DataListItem.vue'\n",
      "type": "registry:ui",
      "target": "~/app/components/ui/data-list/index.ts"
    }
  ],
  "dependencies": [],
  "devDependencies": [],
  "registryDependencies": [],
  "description": "Vertical key/value list for showing read-only metadata — invoice details, settings summaries, profile fields. Pair items in label/value rows; supports inline edit triggers and trailing actions per row.",
  "categories": [
    "data-display"
  ]
}