{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "bpsc/masonry-image-carousel",
  "version": "1.2.0",
  "title": "Masonry Image Carousel",
  "category": "bPlugins",
  "icon": "images-alt2",
  "description": "A beautiful masonry grid image carousel with auto-scrolling and customizable speed.",
  "example": {
    "attributes": {
      "images": [
        {
          "id": 1,
          "url": "https://picsum.photos/400/300",
          "alt": "Example image 1"
        },
        {
          "id": 2,
          "url": "https://picsum.photos/400/250",
          "alt": "Example image 2"
        },
        {
          "id": 3,
          "url": "https://picsum.photos/400/350",
          "alt": "Example image 3"
        }
      ],
      "scrollSpeed": 5,
      "rowCount": 3,
      "gapSize": 5,
      "gapColor": "#000000"
    }
  },
  "attributes": {
    "images": {
      "type": "array",
      "default": [],
      "items": {
        "type": "object"
      }
    },
    "scrollSpeed": {
      "type": "number",
      "default": 5
    },
    "rowCount": {
      "type": "number",
      "default": 3
    },
    "gapSize": {
      "type": "number",
      "default": 5
    },
    "gapColor": {
      "type": "string",
      "default": "#000000"
    },
    "pauseOnHover": {
      "type": "boolean",
      "default": true
    },
    "rowHeights": {
      "type": "array",
      "default": [
        200,
        250,
        180
      ]
    },
    "align": {
      "type": "string",
      "default": "wide"
    }
  },
  "supports": {
    "html": false,
    "align": [
      "wide"
    ]
  },
  "textdomain": "section-collection",
  "editorScript": "file:../index.js",
  "style": "file:./view.css",
  "viewScript": "file:./view.js"
}