| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "tableberg/cell", |
| 5 |
"title": "Cell", |
| 6 |
"category": "design", |
| 7 |
"description": "A cell within a Tableberg table row.", |
| 8 |
"parent": [ |
| 9 |
"tableberg/row" |
| 10 |
], |
| 11 |
"usesContext": [ |
| 12 |
"tableberg/tableConfig", |
| 13 |
"tableberg/cellDefaults", |
| 14 |
"tableberg/rowBackgroundColor" |
| 15 |
], |
| 16 |
"supports": { |
| 17 |
"html": false, |
| 18 |
"customClassName": false, |
| 19 |
"reusable": false |
| 20 |
}, |
| 21 |
"attributes": { |
| 22 |
"span": { |
| 23 |
"type": "object" |
| 24 |
}, |
| 25 |
"styles": { |
| 26 |
"type": "object" |
| 27 |
}, |
| 28 |
"className": { |
| 29 |
"type": "string" |
| 30 |
}, |
| 31 |
"backgroundColor": { |
| 32 |
"type": "string" |
| 33 |
}, |
| 34 |
"border": { |
| 35 |
"type": "object" |
| 36 |
}, |
| 37 |
"ribbon": { |
| 38 |
"type": "object" |
| 39 |
}, |
| 40 |
"emptyCell": { |
| 41 |
"type": "boolean" |
| 42 |
} |
| 43 |
}, |
| 44 |
"textdomain": "tableberg" |
| 45 |
} |
| 46 |
|