{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "title": "Icon List",
  "name": "brandy/icon-list",
  "category": "brandy-blocks",
  "description": "A list where every line carries its own icon — feature lists, checklists, specifications.",
  "keywords": [
    "icon list",
    "checklist",
    "features",
    "bullets",
    "list"
  ],
  "attributes": {
    "layout": {
      "type": "string",
      "enum": [
        "vertical",
        "horizontal"
      ],
      "default": "vertical"
    },
    "alignment": {
      "type": "string",
      "enum": [
        "left",
        "center",
        "right"
      ],
      "default": "left"
    },
    "iconSize": {
      "type": "number",
      "default": 20
    },
    "iconColor": {
      "type": "string",
      "default": ""
    },
    "iconGap": {
      "type": "number",
      "default": 10
    },
    "gap": {
      "type": "number",
      "default": 10
    }
  },
  "providesContext": {
    "brandy/iconListIconSize": "iconSize",
    "brandy/iconListIconColor": "iconColor",
    "brandy/iconListIconGap": "iconGap"
  },
  "supports": {
    "html": false,
    "anchor": true,
    "align": [
      "wide"
    ],
    "color": {
      "text": true,
      "background": true,
      "link": true,
      "__experimentalDefaultControls": {
        "background": false,
        "text": false
      }
    },
    "spacing": {
      "margin": true,
      "padding": true,
      "__experimentalDefaultControls": {
        "padding": false
      }
    },
    "typography": {
      "fontSize": true,
      "__experimentalFontFamily": true,
      "__experimentalFontWeight": true
    },
    "__experimentalBorder": {
      "color": true,
      "radius": true,
      "style": true,
      "width": true
    }
  },
  "example": {
    "viewportWidth": 400,
    "innerBlocks": [
      {
        "name": "brandy/icon-list-item",
        "attributes": {
          "text": "Free delivery over $100"
        }
      },
      {
        "name": "brandy/icon-list-item",
        "attributes": {
          "text": "Thirty-day returns, no questions"
        }
      },
      {
        "name": "brandy/icon-list-item",
        "attributes": {
          "text": "Two-year warranty on every part"
        }
      }
    ]
  },
  "textdomain": "brandy-blocks",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}