{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 2,
  "name": "crosswinds-blocks/basic-grid",
  "version": "1.0",
  "title": "Basic Grid",
  "category": "crosswinds-blocks",
  "description": "Add a simple grid with a custom number of columns.",
  "attributes": {
    "numDesktopColumns": {
      "type": "number",
      "default": 4
    },
    "numTabletColumns": {
      "type": "number",
      "default": 2
    },
    "numMobileColumns": {
      "type": "number",
      "default": 1
    },
    "gridSameGap": {
      "type": "boolean",
      "default": true
    },
    "gridGap": {
      "type": "number",
      "default": 30
    },
    "gridColumnGap": {
      "type": "number",
      "default": 30
    },
    "gridRowGap": {
      "type": "number",
      "default": 30
    }
  },
  "providesContext": {
    "numDesktopColumns": "numDesktopColumns",
    "numTabletColumns": "numTabletColumns",
    "numMobileColumns": "numMobileColumns"
  },
  "supports": {
    "html": false,
    "align": [
      "wide",
      "full"
    ],
    "__experimentalLayout": true
  },
  "textdomain": "crosswinds-blocks",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}