PluginProbe
Tableberg – Simple Gutenberg Table Block / 1.1.5
Tableberg – Simple Gutenberg Table Block v1.1.5
1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 All 42 releases
tableberg / src / blocks / table / block.json

block.json in Tableberg – Simple Gutenberg Table Block 1.1.5, at src/blocks/table/block.json

166 lines 5.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "version": "0.6.1",
5 "name": "tableberg/table",
6 "title": "Tableberg",
7 "category": "design",
8 "description": "Table Block By Tableberg - Advanced Table Block for Block Editor",
9 "keywords": [
10 "table",
11 "tableberg",
12 "cell",
13 "row",
14 "column",
15 "layout",
16 "responsive"
17 ],
18 "supports": {
19 "html": false,
20 "customClassName": false
21 },
22 "attributes": {
23 "version": {
24 "type": "number",
25 "default": 0
26 },
27 "isExample": {
28 "type": "boolean",
29 "default": false
30 },
31 "table": {
32 "type": "object",
33 "default": {
34 "rows": 0,
35 "cols": 0,
36 "className": "",
37 "headerEnabled": false,
38 "footerEnabled": false,
39 "stickyHeader": false,
40 "stickyFirstCol": false,
41 "innerBorderType": "",
42 "caption": "",
43 "tableWidth": "auto",
44 "tableAlignment": "left",
45 "cellSpacing": {
46 "horizontal": "0",
47 "vertical": "0"
48 },
49 "tableBorder": {
50 "top": "",
51 "right": "",
52 "bottom": "",
53 "left": ""
54 },
55 "margin": {
56 "top": "",
57 "right": "",
58 "bottom": "",
59 "left": ""
60 },
61 "padding": {
62 "top": "",
63 "right": "",
64 "bottom": "",
65 "left": ""
66 },
67 "fixedColumnWidths": true,
68 "pagination": {
69 "enabled": false,
70 "pageSize": 10,
71 "showPageNumbers": true,
72 "showPrevNext": true
73 },
74 "search": {
75 "enabled": false,
76 "placeholder": "Search...",
77 "highlightColor": "",
78 "position": "left"
79 },
80 "responsive": {
81 "tablet": {
82 "enabled": false,
83 "maxWidth": 700,
84 "mode": "scroll",
85 "transpose": false,
86 "stackCount": 3,
87 "repeatFirstCol": false
88 },
89 "mobile": {
90 "enabled": false,
91 "maxWidth": 375,
92 "mode": "scroll",
93 "transpose": false,
94 "stackCount": 1,
95 "repeatFirstCol": false
96 }
97 }
98 }
99 },
100 "rows": {
101 "type": "array",
102 "default": []
103 },
104 "columns": {
105 "type": "array",
106 "default": []
107 },
108 "cells": {
109 "type": "object",
110 "default": {}
111 },
112 "bindings": {
113 "type": "object",
114 "default": {}
115 },
116 "cellDefaults": {
117 "type": "object",
118 "default": {
119 "styles": {
120 "padding": {
121 "top": "var(--wp--preset--spacing--20)",
122 "right": "var(--wp--preset--spacing--20)",
123 "bottom": "var(--wp--preset--spacing--20)",
124 "left": "var(--wp--preset--spacing--20)"
125 },
126 "border": {
127 "top": "1px solid black",
128 "right": "1px solid black",
129 "bottom": "1px solid black",
130 "left": "1px solid black"
131 },
132 "borderRadius": {
133 "topLeft": "0px",
134 "topRight": "0px",
135 "bottomRight": "0px",
136 "bottomLeft": "0px"
137 },
138 "orientation": "vertical",
139 "elementGap": "var(--wp--preset--spacing--20)",
140 "wrap": "nowrap",
141 "verticalAlign": "middle",
142 "backgroundColor": "",
143 "headerBackgroundColor": "",
144 "footerBackgroundColor": "",
145 "evenRowBackgroundColor": "",
146 "oddRowBackgroundColor": ""
147 }
148 }
149 }
150 },
151 "example": {
152 "attributes": {
153 "isExample": true
154 }
155 },
156 "textdomain": "tableberg",
157 "editorScript": "file:../../index.tsx",
158 "editorStyle": "file:../../index.css",
159 "style": "file:../../style-index.css",
160 "viewScript": "file:../../view.ts",
161 "providesContext": {
162 "tableberg/tableConfig": "table",
163 "tableberg/cellDefaults": "cellDefaults"
164 }
165 }
166