| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"version": "0.2.0", |
| 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 |
}, |
| 39 |
"supports": { |
| 40 |
"html": false, |
| 41 |
"__experimentalExposeControlsToChildren": true |
| 42 |
}, |
| 43 |
"textdomain": "tableberg", |
| 44 |
"editorScript": "tableberg-script", |
| 45 |
"editorStyle": "tableberg-editor-style", |
| 46 |
"style": "tableberg-style" |
| 47 |
} |