{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "version": "0.0.2",
  "title": "Table",
  "name": "tablestack/table",
  "category": "design",
  "icon": "editor-table",
  "description": "Individual table",
  "attributes": {
    "rows": {
      "type": "number",
      "default": 2
    },
    "columns": {
      "type": "number",
      "default": 2
    },
    "showTableHeader": {
      "type": "boolean",
      "default": false
    },
    "showColumnOnlyBorder": {
      "type": "boolean",
      "default": false
    },
    "oddRowBackground": {
      "type": "string",
      "default": ""
    },
    "evenRowBackground": {
      "type": "string",
      "default": ""
    },
    "headerRowBackground": {
      "type": "string",
      "default": ""
    },
    "headerRowTextColor": {
      "type": "string",
      "default": "#000000"
    },
    "oddRowTextColor": {
      "type": "string",
      "default": "#000000"
    },
    "evenRowTextColor": {
      "type": "string",
      "default": "#000000"
    },
    "tableOption": {
      "type": "string",
      "default": ""
    },
    "tdPadding": {
      "type": "object",
      "default": {
        "top": "10px",
        "right": "10px",
        "bottom": "10px",
        "left": "20px"
      }
    },
    "verticalAlignment": {
      "type": "string",
      "default": "top"
    },
    "horizontalAlignment": {
      "type": "string",
      "default": "flex-start"
    },
    "tableBorder": {
      "type": "object",
      "default": {
        "color": "#000000",
        "width": "1px",
        "style": "solid"
      }
    },
    "columnOnlyBorder": {
      "type": "object",
      "default": {
        "color": "#000000",
        "width": "1px",
        "style": "solid"
      }
    },
    "showTableOuterBorder": {
      "type": "boolean",
      "default": false
    },
    "outerBorder": {
      "type": "object",
      "default": {
        "color": "#000000",
        "width": "1px",
        "style": "solid"
      }
    },
    "rowOnlyBorder": {
      "type": "object",
      "default": {
        "color": "#000000",
        "width": "1px",
        "style": "solid"
      }
    },
    "showRowOnlyBorder": {
      "type": "boolean",
      "default": false
    },
    "cellBorder": {
      "type": "object",
      "default": {
        "color": "#000000",
        "width": "1px",
        "style": "solid"
      }
    },
    "tableLayout": {
      "type": "string",
      "default": "auto"
    },
    "tableWidth": {
      "type": "string",
      "default": "full"
    },
    "customWidth": {
      "type": "string",
      "default": ""
    },
    "tableAlignment": {
      "type": "string",
      "default": "center"
    }
  },
  "supports": {
    "html": false
  },
  "textdomain": "table-block",
  "editorScript": "file:./index.js"
}