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

135 lines 2.6 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.3.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 "version": {
14 "type": "string",
15 "default": ""
16 },
17 "rows": {
18 "type": "number",
19 "default": 2
20 },
21 "cols": {
22 "type": "number",
23 "default": 2
24 },
25 "cells": {
26 "type": "number",
27 "default": 0
28 },
29 "colWidths": {
30 "type": "array",
31 "default": []
32 },
33 "rowHeights": {
34 "type": "array",
35 "default": []
36 },
37 "hasTableCreated": {
38 "type": "boolean",
39 "default": false
40 },
41 "cellPadding": {
42 "type": "object",
43 "default": {}
44 },
45 "cellSpacing": {
46 "type": "object",
47 "default": {}
48 },
49 "enableTableHeader": {
50 "type": "string",
51 "default": ""
52 },
53 "enableTableFooter": {
54 "type": "string",
55 "default": ""
56 },
57 "tableWidth": {
58 "type": "string",
59 "default": ""
60 },
61 "tableAlignment": {
62 "type": "string",
63 "default": "center"
64 },
65 "headerBackgroundColor": {
66 "type": "string",
67 "default": null
68 },
69 "headerBackgroundGradient": {
70 "type": "string",
71 "default": null
72 },
73 "evenRowBackgroundColor": {
74 "type": "string",
75 "default": null
76 },
77 "evenRowBackgroundGradient": {
78 "type": "string",
79 "default": null
80 },
81 "oddRowBackgroundColor": {
82 "type": "string",
83 "default": null
84 },
85 "oddRowBackgroundGradient": {
86 "type": "string",
87 "default": null
88 },
89 "footerBackgroundColor": {
90 "type": "string",
91 "default": null
92 },
93 "footerBackgroundGradient": {
94 "type": "string",
95 "default": null
96 },
97 "tableBorder": {
98 "type": "object",
99 "default": {}
100 },
101 "innerBorder": {
102 "type": "object",
103 "default": {}
104 },
105 "enableInnerBorder": {
106 "type": "boolean",
107 "default": true
108 },
109 "isExample": {
110 "type": "boolean",
111 "default": false
112 },
113 "fontSize": {
114 "type": "string",
115 "default": ""
116 },
117 "fontColor": {
118 "type": "string",
119 "default": ""
120 },
121 "linkColor": {
122 "type": "string",
123 "default": ""
124 }
125 },
126 "example": {
127 "attributes": {
128 "isExample": true
129 }
130 },
131 "textdomain": "tableberg",
132 "editorScript": "tableberg-script",
133 "editorStyle": "tableberg-editor-style",
134 "style": "tableberg-style"
135 }