PluginProbe
Tableberg – Simple Gutenberg Table Block / 0.5.6
Tableberg – Simple Gutenberg Table Block v0.5.6
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 / cell / block.json

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

94 lines 1.8 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.2.1",
5 "title": "Cell",
6 "name": "tableberg/cell",
7 "parent": [
8 "tableberg/table"
9 ],
10 "allowedBlocks": [
11 "core/list",
12 "core/paragraph",
13 "tableberg/image",
14 "tableberg/button",
15 "tableberg/icon",
16 "tableberg/html",
17 "tableberg/styled-list",
18 "tableberg/star-rating",
19 "tableberg/ribbon"
20 ],
21 "category": "design",
22 "icon": "table-row-after",
23 "description": "Tableberg Cell: Individual cell of a tableberg table",
24 "attributes": {
25 "vAlign": {
26 "type": "string",
27 "default": "center"
28 },
29 "tagName": {
30 "type": "string",
31 "default": "td"
32 },
33 "rowspan": {
34 "type": "number",
35 "default": 1
36 },
37 "colspan": {
38 "type": "number",
39 "default": 1
40 },
41 "row": {
42 "type": "number",
43 "default": 0
44 },
45 "col": {
46 "type": "number",
47 "default": 0
48 },
49 "responsiveTarget": {
50 "type": "string",
51 "default": ""
52 },
53 "background": {
54 "type": "string",
55 "default": null
56 },
57 "bgGradient": {
58 "type": "string",
59 "default": null
60 },
61 "blockSpacing": {
62 "type": "string",
63 "default": null
64 },
65 "isHorizontal": {
66 "type": "boolean",
67 "default": false
68 },
69 "justifyContent": {
70 "type": "string",
71 "default": "center"
72 },
73 "wrapItems": {
74 "type": "boolean",
75 "default": true
76 },
77 "isEmpty": {
78 "type": "boolean",
79 "default": false
80 },
81 "isTmp": {
82 "type": "boolean",
83 "default": false
84 }
85 },
86 "supports": {
87 "html": false,
88 "__experimentalExposeControlsToChildren": true
89 },
90 "textdomain": "tableberg",
91 "editorScript": "tableberg-script",
92 "editorStyle": "tableberg-editor-style",
93 "style": "tableberg-style"
94 }