{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "vcex/alert",
  "title": "Alert",
  "category": "total",
  "description": "Displays info, warning, success or error messages.",
  "keywords": [
    "alert",
    "message"
  ],
  "version": "1.0",
  "textdomain": "total-theme-core",
  "attributes": {
    "headingEnabled": {
      "type": "boolean",
      "default": true
    },
    "type": {
      "type": "string",
      "default": "warning"
    },
    "heading": {
      "type": "string",
      "source": "html",
      "selector": ".wpex-alert__heading"
    },
    "content": {
      "type": "string",
      "source": "html",
      "selector": "p"
    }
  },
  "supports": {
    "customClassName": false
  },
  "example": {
    "attributes": {
      "content": "This is a notice!"
    }
  },
  "editorScript": "file:./index.js"
}