{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "gutenito-blocks-addon/image-gallery",
  "version": "0.0.1",
  "title": "Image Gallery",
  "category": "gutenito",
  "icon": "format-gallery",
  "description": "Image gallery with lightbox",
  "example": {
    "attributes": {
      "preview": true
    }
  },
  "attributes": {
    "images": {
      "type": "array",
      "default": []
    },
    "layout": {
      "type": "string",
      "default": "grid"
    },
    "columns": {
      "type": "number",
      "default": 3
    },
    "gap": {
      "type": "string",
      "default": "1rem"
    },
    "showCaption": {
      "type": "boolean",
      "default": true
    },
    "enableLightbox": {
      "type": "boolean",
      "default": true
    },
    "hoverEffect": {
      "type": "string",
      "default": "zoom"
    },
    "captionBgColor": {
      "type": "string",
      "default": "rgba(0, 0, 0, 0.7)"
    },
    "captionColor": {
      "type": "string",
      "default": "#ffffff"
    },
    "borderRadius": {
      "type": "string",
      "default": "8px"
    }
  },
  "supports": {
    "html": false
  },
  "textdomain": "gutenito-blocks-addon",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js"
}