{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "blockish/heading",
  "version": "1.0.0",
  "title": "Heading",
  "category": "blockish-framework",
  "description": "Flexible heading block for titles and section labels.",
  "icon": "heading",
  "keywords": [
    "blockish",
    "heading",
    "title",
    "text"
  ],
  "example": {
    "attributes": {
      "preview": true
    }
  },
  "attributes": {
    "content": {
      "type": "string",
      "default": "Heading Text"
    },
    "tag": {
      "type": "object",
      "default": {
        "label": "H2",
        "value": "h2"
      }
    },
    "alignment": {
      "type": "object",
      "default": {
        "Desktop": "left"
      },
      "selectors": {
        ".{{WRAPPER}}": "text-align: {{VALUE}};"
      }
    },
    "typography": {
      "type": "string",
      "groupSelector": {
        "type": "BlockishTypography",
        "selector": ".{{WRAPPER}}"
      }
    },
    "color": {
      "type": "string",
      "selectors": {
        ".{{WRAPPER}}": "color: {{VALUE}};"
      }
    },
    "hoverColor": {
      "type": "string",
      "selectors": {
        ".{{WRAPPER}}:hover": "color: {{VALUE}};"
      }
    },
    "textShadow": {
      "type": "string",
      "groupSelector": {
        "type": "BlockishTextShadow",
        "selector": ".{{WRAPPER}}"
      }
    },
    "textShadowHover": {
      "type": "string",
      "groupSelector": {
        "type": "BlockishTextShadow",
        "selector": ".{{WRAPPER}}:hover"
      }
    }
  },
  "supports": {
    "html": true,
    "anchor": true,
    "align": ["wide", "full"]
  },
  "textdomain": "blockish",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}
