{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "phclb/cards-layout",
  "version": "1.0.0",
  "title": "Cards layout",
  "category": "widgets",
  "description": "This plugin offers multiple customizable layouts like grid, list, and carousel, making content display easy and flexible.",
  "keywords": [
    "cards",
    "layout",
    "content",
    "gallery",
    "lightbox"
  ],
  "textdomain": "b-blocks",
  "attributes": {
    "align": {
      "type": "string",
      "default": ""
    },
    "cards": {
      "type": "array",
      "default": [
        {
          "img": {
            "url": ""
          },
          "altText": "",
          "title": "John Doe",
          "desc": "Conveniently engineer diverse products rather than bleeding-edge applications",
          "btnLabel": "Load More",
          "btnUrl": "#"
        },
        {
          "img": {
            "url": ""
          },
          "altText": "",
          "title": "John Doe",
          "desc": "Conveniently engineer diverse products rather than bleeding-edge applications",
          "btnLabel": "Load More",
          "btnUrl": "#"
        },
        {
          "img": {
            "url": ""
          },
          "altText": "",
          "title": "John Doe",
          "desc": "Conveniently engineer diverse products rather than bleeding-edge applications",
          "btnLabel": "Load More",
          "btnUrl": "#"
        }
      ]
    },
    "columns": {
      "type": "object",
      "default": {
        "desktop": 3,
        "tablet": 2,
        "mobile": 1
      }
    },
    "columnGap": {
      "type": "string",
      "default": "30px"
    },
    "rowGap": {
      "type": "string",
      "default": "40px"
    },
    "layout": {
      "type": "string",
      "default": "vertical"
    },
    "alignment": {
      "type": "string",
      "default": "center"
    },
    "typography": {
      "type": "object",
      "default": {
        "fontSize": 25
      }
    },
    "colors": {
      "type": "object",
      "default": {
        "color": "#333",
        "bg": "#fff"
      }
    },
    "img": {
      "type": "object",
      "default": {
        "id": null,
        "url": "",
        "alt": "",
        "title": ""
      }
    },
    "separator": {
      "type": "object",
      "default": {
        "width": "20%",
        "height": "2px",
        "style": "solid",
        "color": "#bbb"
      }
    },
    "padding": {
      "type": "object",
      "default": {
        "top": "15px",
        "right": "30px",
        "bottom": "15px",
        "left": "30px"
      }
    },
    "margin": {
      "type": "object",
      "default": {
        "top": "0px",
        "right": "0px",
        "bottom": "15px",
        "left": "0px"
      }
    },
    "border": {
      "type": "object",
      "default": {
        "radius": "5px"
      }
    },
    "shadow": {
      "type": "array",
      "default": {}
    }
  },
  "supports": {
    "align": [
      "wide",
      "full"
    ],
    "html": false
  },
  "example": {
    "attributes": {}
  },
  "editorScript": [
    "file:./index.js"
  ],
  "editorStyle": [
    "file:./index.css"
  ],
  "style": [
    "file:./view.css"
  ],
  "render": "file:./render.php",
  "viewScript": "file:./view.js"
}