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

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