PluginProbe
Tableberg – Simple Gutenberg Table Block / 1.0.4
Tableberg – Simple Gutenberg Table Block v1.0.4
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 1.0.4, at build/block.json

155 lines 3.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.5.2",
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 "caption": "",
41 "tableWidth": "auto",
42 "tableAlignment": "left",
43 "cellSpacing": {
44 "horizontal": "0",
45 "vertical": "0"
46 },
47 "tableBorder": {
48 "top": "",
49 "right": "",
50 "bottom": "",
51 "left": ""
52 },
53 "margin": {
54 "top": "",
55 "right": "",
56 "bottom": "",
57 "left": ""
58 },
59 "padding": {
60 "top": "",
61 "right": "",
62 "bottom": "",
63 "left": ""
64 },
65 "fixedColumnWidths": true,
66 "pagination": {
67 "enabled": false,
68 "pageSize": 10,
69 "showPageNumbers": true,
70 "showPrevNext": true
71 },
72 "search": {
73 "enabled": false,
74 "placeholder": "Search...",
75 "highlightColor": "",
76 "position": "left"
77 },
78 "responsive": {
79 "tablet": {
80 "enabled": false,
81 "maxWidth": 1024,
82 "mode": "scroll",
83 "transpose": false,
84 "stackCount": 3,
85 "repeatFirstCol": false
86 },
87 "mobile": {
88 "enabled": false,
89 "maxWidth": 700,
90 "mode": "scroll",
91 "transpose": false,
92 "stackCount": 1,
93 "repeatFirstCol": false
94 }
95 }
96 }
97 },
98 "rows": {
99 "type": "array",
100 "default": []
101 },
102 "columns": {
103 "type": "array",
104 "default": []
105 },
106 "cells": {
107 "type": "object",
108 "default": {}
109 },
110 "bindings": {
111 "type": "object",
112 "default": {}
113 },
114 "cellDefaults": {
115 "type": "object",
116 "default": {
117 "styles": {
118 "padding": {
119 "top": "var(--wp--preset--spacing--20)",
120 "right": "var(--wp--preset--spacing--20)",
121 "bottom": "var(--wp--preset--spacing--20)",
122 "left": "var(--wp--preset--spacing--20)"
123 },
124 "border": {
125 "top": "1px solid black",
126 "right": "1px solid black",
127 "bottom": "1px solid black",
128 "left": "1px solid black"
129 },
130 "borderRadius": {
131 "topLeft": "0px",
132 "topRight": "0px",
133 "bottomRight": "0px",
134 "bottomLeft": "0px"
135 },
136 "orientation": "vertical",
137 "elementGap": "var(--wp--preset--spacing--20)",
138 "wrap": "nowrap",
139 "verticalAlign": "middle",
140 "backgroundColor": ""
141 }
142 }
143 }
144 },
145 "example": {
146 "attributes": {
147 "isExample": true
148 }
149 },
150 "textdomain": "tableberg",
151 "editorScript": "file:./index.js",
152 "editorStyle": "file:./index.css",
153 "style": "file:./style-index.css",
154 "viewScript": "file:./view.js"
155 }