PluginProbe
Tableberg – Simple Gutenberg Table Block / 0.2.1
Tableberg – Simple Gutenberg Table Block v0.2.1
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.2.1, at build/block.json

115 lines 2.3 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.1.0",
5 "name": "tableberg/table",
6 "title": "Tableberg",
7 "category": "design",
8 "description": "Table Block By Tableberg - Advanced Table Block for Block Editor",
9 "supports": {
10 "html": false
11 },
12 "attributes": {
13 "rows": {
14 "type": "number",
15 "default": 2
16 },
17 "cols": {
18 "type": "number",
19 "default": 2
20 },
21 "hasTableCreated": {
22 "type": "boolean",
23 "default": false
24 },
25 "cellPadding": {
26 "type": "object",
27 "default": {}
28 },
29 "enableTableHeader": {
30 "type": "boolean",
31 "default": false
32 },
33 "enableTableFooter": {
34 "type": "boolean",
35 "default": false
36 },
37 "tableWidth": {
38 "type": "string",
39 "default": ""
40 },
41 "tableAlignment": {
42 "type": "string",
43 "default": "center"
44 },
45 "headerBackgroundColor": {
46 "type": "string",
47 "default": null
48 },
49 "headerBackgroundGradient": {
50 "type": "string",
51 "default": null
52 },
53 "evenRowBackgroundColor": {
54 "type": "string",
55 "default": null
56 },
57 "evenRowBackgroundGradient": {
58 "type": "string",
59 "default": null
60 },
61 "oddRowBackgroundColor": {
62 "type": "string",
63 "default": null
64 },
65 "oddRowBackgroundGradient": {
66 "type": "string",
67 "default": null
68 },
69 "footerBackgroundColor": {
70 "type": "string",
71 "default": null
72 },
73 "footerBackgroundGradient": {
74 "type": "string",
75 "default": null
76 },
77 "tableBorder": {
78 "type": "object",
79 "default": {}
80 },
81 "innerBorder": {
82 "type": "object",
83 "default": {}
84 },
85 "enableInnerBorder": {
86 "type": "boolean",
87 "default": true
88 },
89 "isExample": {
90 "type": "boolean",
91 "default": false
92 },
93 "fontSize": {
94 "type": "string",
95 "default": ""
96 },
97 "fontColor": {
98 "type": "string",
99 "default": ""
100 },
101 "linkColor": {
102 "type": "string",
103 "default": ""
104 }
105 },
106 "example": {
107 "attributes": {
108 "isExample": true
109 }
110 },
111 "textdomain": "tableberg",
112 "editorScript": "tableberg-script",
113 "editorStyle": "tableberg-editor-style",
114 "style": "tableberg-style"
115 }