{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "gutenito-blocks-addon/inline-notice",
  "version": "0.0.1",
  "title": "Inline Notice",
  "category": "gutenito",
  "icon": "info",
  "description": "Display notice/alert messages",
  "example": {
    "attributes": {
      "preview": true
    }
  },
  "attributes": {
    "message": {
      "type": "string",
      "default": "This is an important notice message."
    },
    "noticeType": {
      "type": "string",
      "default": "info"
    },
    "showIcon": {
      "type": "boolean",
      "default": true
    },
    "isDismissible": {
      "type": "boolean",
      "default": false
    },
    "textColor": {
      "type": "string"
    },
    "backgroundColor": {
      "type": "string"
    },
    "borderColor": {
      "type": "string"
    },
    "iconColor": {
      "type": "string"
    }
  },
  "supports": {
    "html": false
  },
  "textdomain": "gutenito-blocks-addon",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js"
}