{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "fse-blocks/fse-shape",
  "version": "1.0.0",
  "title": "Fse Blocks",
  "category": "fse-blocks",
  "icon": "smiley",
  "description": "Create shape any section or page",
  "example": {
    "innerBlocks": [
      {
        "name": "core/heading",
        "attributes": {
          "content": "Hello World!"
        }
      },
      {
        "name": "core/paragraph",
        "attributes": {
          "content": "This is a paragraph for pro shape block"
        }
      }
    ]
  },
  "supports": {
    "html": false,
    "color": {
      "background": true,
      "link": true,
      "text": true
    },
    "spacing": {
      "padding": true
    }
  },
  "attributes": {
    "style": {
      "type": "object",
      "default": {
        "color": {
          "background": "#fff"
        },
        "spacing": {
          "padding": {
            "top": "80px",
            "bottom": "80px",
            "left": "50px",
            "right": "50px"
          }
        }
      }
    },
    "showTopShape": {
      "type": "boolean",
      "default": true
    },
    "topShapeWidth": {
      "type": "number",
      "default": 100
    },
    "topShapeHeight": {
      "type": "number",
      "default": 100
    },
    "topFlipX": {
      "type": "boolean",
      "default": false
    },
    "topFlipY": {
      "type": "boolean",
      "default": false
    },
    "topShapeColor": {
      "type": "string",
      "default": "#ededed"
    },
    "showBottomShape": {
      "type": "boolean",
      "default": true
    },
    "bottomShapeWidth": {
      "type": "number",
      "default": 100
    },
    "bottomShapeHeight": {
      "type": "number",
      "default": 100
    },
    "bottomFlipX": {
      "type": "boolean",
      "default": false
    },
    "bottomFlipY": {
      "type": "boolean",
      "default": true
    },
    "bottomShapeColor": {
      "type": "string",
      "default": "#ededed"
    }
  },
  "textdomain": "fse-blocks",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js",
  "render": "file:./render.php"
}