{
    "$schema": "https://schemas.wp.org/trunk/block.json",
    "apiVersion": 3,
    "name": "eggb/section-header",
    "version": "1.0.0",
    "title": "Section Header",
    "category": "cegg-blocks",
    "icon": "heading",
    "description": "Section heading block for steps, framed editorial sections, and guide anchors.",
    "textdomain": "content-egg",
    "editorScript": "file:./index.js",
    "render": "file:./render.php",
  "style": ["eggb-base", "file:./style-min.css"],
    "attributes": {
        "variant": {
            "type": "string",
            "default": "default",
            "enum": ["default", "accent", "editorial"]
        },
        "step_number": {
            "type": "string",
            "default": ""
        },
        "title": {
            "type": "string",
            "default": ""
        },
        "heading_tag": {
            "type": "string",
            "default": "h2",
            "enum": ["h1", "h2", "h3", "h4", "div"]
        },
        "subtitle": {
            "type": "string",
            "default": ""
        },
        "step_label_text": {
            "type": "string",
            "default": "Step"
        },
        "kicker": {
            "type": "string",
            "default": ""
        },
        "meta": {
            "type": "string",
            "default": ""
        },
        "chips": {
            "type": "array",
            "default": []
        },
        "anchor": {
            "type": "string",
            "default": ""
        },
        "toc_label": {
            "type": "string",
            "default": ""
        },
        "include_in_toc": {
            "type": "boolean",
            "default": false
        },
        "level": {
            "type": "number",
            "default": 2
        },
        "color_scheme": {
            "type": "string",
            "default": "auto",
            "enum": ["auto", "light", "dark"]
        },
        "style": {
            "type": "object",
            "default": {
                "spacing": {
                    "margin": { "bottom": "1.5rem" }
                }
            }
        }
    },
    "supports": {
        "html": false,
        "align": ["wide", "full"],
        "spacing": {
            "margin": ["bottom"]
        }
    }
}
