{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "templazee/advanced-gallery",
  "version": "0.1.0",
  "title": "Templazee Gallery",
  "category": "templazee",
  "description": "A flexible gallery block that allows you to showcase images in a customizable and visually appealing grid layout.",
  "supports": {
    "html": true,
    "anchor": true,
    "align": true,
    "spacing": {
      "padding": true
    }
  },
  "textdomain": "advanced-gallery",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js",
  "attributes": {
    "images": {
      "type": "array",
      "default": [],
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "url": {
            "type": "string"
          },
          "alt": {
            "type": "string"
          }
        }
      }
    },
    "column": {
      "type": "number",
      "default": 3
    },
    "imageSize": {
      "type": "string",
      "default": "medium"
    },
    "linkTo": {
      "type": "string",
      "default": "none"
    },
    "masonry": {
      "type": "boolean",
      "default": 0
    },
    "imageHeight": {
      "type": "number",
      "default": 300
    },
    "imageGap": {
      "type": "number",
      "default": 20
    },
    "marginBottom": {
      "type": "number",
      "default": 10
    },
    "enablePopup": {
      "type": "boolean",
      "default": 0
    }
  }
}