{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 2,
  "name": "gutengrow/content-timeline",
  "version": "1.0.0",
  "title": "Content Timeline",
  "category": "gutengrow-blocks",
  "description": "Create beautiful content timelines to showcase your story, history, or process steps.",
  "supports": {
    "html": false,
    "anchor": true,
    "align": [
      "wide",
      "full"
    ]
  },
  "attributes": {
    "timelineItems": {
      "type": "array",
      "default": [],
      "source": "query",
      "selector": ".timeline-item",
      "query": {
        "date": {
          "type": "string",
          "source": "html",
          "selector": ".timeline-date"
        },
        "title": {
          "type": "string",
          "source": "html",
          "selector": ".timeline-title"
        },
        "content": {
          "type": "string",
          "source": "html",
          "selector": ".timeline-description"
        }
      }
    },
    "alignment": {
      "type": "string",
      "default": "center"
    },
    "backgroundColor": {
      "type": "string",
      "default": "#f8f8f8"
    },
    "accentColor": {
      "type": "string",
      "default": "#0073e6"
    },
    "textColor": {
      "type": "string",
      "default": "#333333"
    },
    "dateColor": {
      "type": "string",
      "default": "#666666"
    },
    "connectorWidth": {
      "type": "number",
      "default": 3
    },
    "connectorStyle": {
      "type": "string",
      "default": "solid"
    },
    "itemSpacing": {
      "type": "number",
      "default": 30
    },
    "animation": {
      "type": "string",
      "default": "fade"
    }
  },
  "textdomain": "gutengrow-blocks",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js"
}