# tableberg/1.1.5/src/blocks/table/block.json

Tableberg – Simple Gutenberg Table Block, version 1.1.5. 166 lines.

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/blocks/table/block.json
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/src/blocks/table/block.json
- Modified: 2026-09-16T03:30:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/blocks/table/block.json#L10-L20`.

```json
{
    "$schema": "https://schemas.wp.org/trunk/block.json",
    "apiVersion": 3,
    "version": "0.6.1",
    "name": "tableberg/table",
    "title": "Tableberg",
    "category": "design",
    "description": "Table Block By Tableberg - Advanced Table Block for Block Editor",
    "keywords": [
        "table",
        "tableberg",
        "cell",
        "row",
        "column",
        "layout",
        "responsive"
    ],
    "supports": {
        "html": false,
        "customClassName": false
    },
    "attributes": {
        "version": {
            "type": "number",
            "default": 0
        },
        "isExample": {
            "type": "boolean",
            "default": false
        },
        "table": {
            "type": "object",
            "default": {
                "rows": 0,
                "cols": 0,
                "className": "",
                "headerEnabled": false,
                "footerEnabled": false,
                "stickyHeader": false,
                "stickyFirstCol": false,
                "innerBorderType": "",
                "caption": "",
                "tableWidth": "auto",
                "tableAlignment": "left",
                "cellSpacing": {
                    "horizontal": "0",
                    "vertical": "0"
                },
                "tableBorder": {
                    "top": "",
                    "right": "",
                    "bottom": "",
                    "left": ""
                },
                "margin": {
                    "top": "",
                    "right": "",
                    "bottom": "",
                    "left": ""
                },
                "padding": {
                    "top": "",
                    "right": "",
                    "bottom": "",
                    "left": ""
                },
                "fixedColumnWidths": true,
                "pagination": {
                    "enabled": false,
                    "pageSize": 10,
                    "showPageNumbers": true,
                    "showPrevNext": true
                },
                "search": {
                    "enabled": false,
                    "placeholder": "Search...",
                    "highlightColor": "",
                    "position": "left"
                },
                "responsive": {
                    "tablet": {
                        "enabled": false,
                        "maxWidth": 700,
                        "mode": "scroll",
                        "transpose": false,
                        "stackCount": 3,
                        "repeatFirstCol": false
                    },
                    "mobile": {
                        "enabled": false,
                        "maxWidth": 375,
                        "mode": "scroll",
                        "transpose": false,
                        "stackCount": 1,
                        "repeatFirstCol": false
                    }
                }
            }
        },
        "rows": {
            "type": "array",
            "default": []
        },
        "columns": {
            "type": "array",
            "default": []
        },
        "cells": {
            "type": "object",
            "default": {}
        },
        "bindings": {
            "type": "object",
            "default": {}
        },
        "cellDefaults": {
            "type": "object",
            "default": {
                "styles": {
                    "padding": {
                        "top": "var(--wp--preset--spacing--20)",
                        "right": "var(--wp--preset--spacing--20)",
                        "bottom": "var(--wp--preset--spacing--20)",
                        "left": "var(--wp--preset--spacing--20)"
                    },
                    "border": {
                        "top": "1px solid black",
                        "right": "1px solid black",
                        "bottom": "1px solid black",
                        "left": "1px solid black"
                    },
                    "borderRadius": {
                        "topLeft": "0px",
                        "topRight": "0px",
                        "bottomRight": "0px",
                        "bottomLeft": "0px"
                    },
                    "orientation": "vertical",
                    "elementGap": "var(--wp--preset--spacing--20)",
                    "wrap": "nowrap",
                    "verticalAlign": "middle",
                    "backgroundColor": "",
                    "headerBackgroundColor": "",
                    "footerBackgroundColor": "",
                    "evenRowBackgroundColor": "",
                    "oddRowBackgroundColor": ""
                }
            }
        }
    },
    "example": {
        "attributes": {
            "isExample": true
        }
    },
    "textdomain": "tableberg",
    "editorScript": "file:../../index.tsx",
    "editorStyle": "file:../../index.css",
    "style": "file:../../style-index.css",
    "viewScript": "file:../../view.ts",
    "providesContext": {
        "tableberg/tableConfig": "table",
        "tableberg/cellDefaults": "cellDefaults"
    }
}

```
