{
  "name": "svelte-sample-sample-doc-list",
  "title": "svelte-sample-sample-doc-list",
  "type": "registry:component",
  "description": "",
  "registryDependencies": [],
  "dependencies": [
    "prosekit@^0.22.0"
  ],
  "files": [
    {
      "path": "registry/src/svelte/sample/sample-doc-list.ts",
      "type": "registry:component",
      "target": "components/editor/sample/sample-doc-list.ts",
      "content": "import type { NodeJSON } from 'prosekit/core'\n\nexport const sampleContent: NodeJSON = {\n  type: 'doc',\n  content: [\n    {\n      type: 'list',\n      attrs: { kind: 'bullet' },\n      content: [\n        { type: 'paragraph', content: [{ type: 'text', text: 'Bullet List' }] },\n      ],\n    },\n    {\n      type: 'list',\n      attrs: { kind: 'ordered' },\n      content: [\n        {\n          type: 'paragraph',\n          content: [{ type: 'text', text: 'Ordered List' }],\n        },\n      ],\n    },\n    {\n      type: 'list',\n      attrs: { kind: 'task', checked: false },\n      content: [\n        { type: 'paragraph', content: [{ type: 'text', text: 'Task List ' }] },\n      ],\n    },\n    {\n      type: 'list',\n      attrs: { kind: 'toggle', collapsed: true },\n      content: [\n        { type: 'paragraph', content: [{ type: 'text', text: 'Toggle List' }] },\n        {\n          type: 'list',\n          attrs: {\n            kind: 'bullet',\n          },\n          content: [\n            { type: 'paragraph', content: [{ type: 'text', text: 'Hidden' }] },\n          ],\n        },\n      ],\n    },\n  ],\n}\n"
    }
  ],
  "meta": {
    "hasIcons": false,
    "hidden": false,
    "story": "",
    "framework": "svelte",
    "accumulatedFiles": [
      "registry/src/svelte/sample/sample-doc-list.ts"
    ],
    "internalDependencies": []
  },
  "$schema": "https://ui.shadcn.com/schema/registry-item.json"
}
