PluginProbe
Tableberg – Simple Gutenberg Table Block / 0.5.3
Tableberg – Simple Gutenberg Table Block v0.5.3
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 / build / block.json

block.json in Tableberg – Simple Gutenberg Table Block 0.5.3, at build/block.json

194 lines 3.7 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.5.3",
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 ],
16 "supports": {
17 "html": false
18 },
19 "attributes": {
20 "version": {
21 "type": "string",
22 "default": ""
23 },
24 "rows": {
25 "type": "number",
26 "default": 2
27 },
28 "cols": {
29 "type": "number",
30 "default": 2
31 },
32 "cells": {
33 "type": "number",
34 "default": 0
35 },
36 "fixedColWidth": {
37 "type": "boolean",
38 "default": false
39 },
40 "colWidths": {
41 "type": "array",
42 "default": [],
43 "_comment": "REMOVE THIS IN FUTURE"
44 },
45 "rowHeights": {
46 "type": "array",
47 "default": [],
48 "_comment": "REMOVE THIS IN FUTURE"
49 },
50 "colStyles": {
51 "type": "object",
52 "default": {}
53 },
54 "rowStyles": {
55 "type": "object",
56 "default": {}
57 },
58 "hasTableCreated": {
59 "type": "boolean",
60 "default": false
61 },
62 "cellPadding": {
63 "type": "object",
64 "default": {}
65 },
66 "cellSpacing": {
67 "type": "object",
68 "default": {}
69 },
70 "enableTableHeader": {
71 "type": "string",
72 "default": ""
73 },
74 "enableTableFooter": {
75 "type": "string",
76 "default": ""
77 },
78 "tableWidth": {
79 "type": "string",
80 "default": ""
81 },
82 "tableAlignment": {
83 "type": "string",
84 "default": "center"
85 },
86 "blockSpacing": {
87 "type": "string",
88 "default": null
89 },
90 "headerBackgroundColor": {
91 "type": "string",
92 "default": null
93 },
94 "headerBackgroundGradient": {
95 "type": "string",
96 "default": null
97 },
98 "evenRowBackgroundColor": {
99 "type": "string",
100 "default": null
101 },
102 "evenRowBackgroundGradient": {
103 "type": "string",
104 "default": null
105 },
106 "oddRowBackgroundColor": {
107 "type": "string",
108 "default": null
109 },
110 "oddRowBackgroundGradient": {
111 "type": "string",
112 "default": null
113 },
114 "footerBackgroundColor": {
115 "type": "string",
116 "default": null
117 },
118 "footerBackgroundGradient": {
119 "type": "string",
120 "default": null
121 },
122 "tableBorder": {
123 "type": "object",
124 "default": {}
125 },
126 "tableBorderRadius": {
127 "type": "object",
128 "default": {}
129 },
130 "innerBorder": {
131 "type": "object",
132 "default": {
133 "color": "#000000",
134 "width": "1px"
135 }
136 },
137 "hideCellOutsideBorders": {
138 "type": "boolean",
139 "default": false
140 },
141 "enableInnerBorder": {
142 "type": "boolean",
143 "default": true
144 },
145 "cellBorderRadius": {
146 "type": "object",
147 "default": {}
148 },
149 "isExample": {
150 "type": "boolean",
151 "default": false
152 },
153 "fontSize": {
154 "type": "string",
155 "default": ""
156 },
157 "fontColor": {
158 "type": "string",
159 "default": ""
160 },
161 "linkColor": {
162 "type": "string",
163 "default": ""
164 },
165 "responsive": {
166 "type": "object",
167 "default": {
168 "last": "primary",
169 "breakpoints": {}
170 }
171 },
172 "stickyTopRow": {
173 "type": "boolean",
174 "default": false
175 },
176 "stickyFirstCol": {
177 "type": "boolean",
178 "default": false
179 },
180 "innerBorderType": {
181 "type": "string",
182 "default": ""
183 }
184 },
185 "example": {
186 "attributes": {
187 "isExample": true
188 }
189 },
190 "textdomain": "tableberg",
191 "editorScript": "tableberg-script",
192 "editorStyle": "tableberg-editor-style",
193 "style": "tableberg-style"
194 }