PluginProbe
Tableberg – Simple Gutenberg Table Block / 0.5.2
Tableberg – Simple Gutenberg Table Block v0.5.2
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.2, at build/cell/block.json

63 lines 1.2 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 "category": "design",
11 "icon": "table-row-after",
12 "description": "Tableberg Cell: Individual cell of a tableberg table",
13 "attributes": {
14 "vAlign": {
15 "type": "string",
16 "default": "center"
17 },
18 "tagName": {
19 "type": "string",
20 "default": "td"
21 },
22 "rowspan": {
23 "type": "number",
24 "default": 1
25 },
26 "colspan": {
27 "type": "number",
28 "default": 1
29 },
30 "row": {
31 "type": "number",
32 "default": 0
33 },
34 "col": {
35 "type": "number",
36 "default": 0
37 },
38 "responsiveTarget": {
39 "type": "string",
40 "default": ""
41 },
42 "background": {
43 "type": "string",
44 "default": null
45 },
46 "bgGradient": {
47 "type": "string",
48 "default": null
49 },
50 "isTmp": {
51 "type": "boolean",
52 "default": false
53 }
54 },
55 "supports": {
56 "html": false,
57 "__experimentalExposeControlsToChildren": true
58 },
59 "textdomain": "tableberg",
60 "editorScript": "tableberg-script",
61 "editorStyle": "tableberg-editor-style",
62 "style": "tableberg-style"
63 }