block.json in aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder 2.9.1, at assets/build/blocks/table-cell/block.json
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "ablocks/table-cell", |
| 5 | "version": "0.1.0", |
| 6 | "title": "table-cell", |
| 7 | "category": "ablocks", |
| 8 | "description": "Create a fully customizable, responsive table. Supports multiple rows and columns", |
| 9 | "example": [], |
| 10 | "parent": [ |
| 11 | "ablocks/table" |
| 12 | ], |
| 13 | "supports": { |
| 14 | "html": true, |
| 15 | "anchor": true |
| 16 | }, |
| 17 | "textdomain": "ablocks", |
| 18 | "editorStyle": [ |
| 19 | "file:./style.css" |
| 20 | ], |
| 21 | "attributes": { |
| 22 | "block_id": { |
| 23 | "type": "string", |
| 24 | "default": "" |
| 25 | }, |
| 26 | "tagName": { |
| 27 | "type": "string", |
| 28 | "default": "td" |
| 29 | }, |
| 30 | "cellColor": { |
| 31 | "type": "string", |
| 32 | "default": "" |
| 33 | }, |
| 34 | "cellColorH": { |
| 35 | "type": "string", |
| 36 | "default": "" |
| 37 | }, |
| 38 | "rowSpan": { |
| 39 | "type": "string", |
| 40 | "default": "1" |
| 41 | }, |
| 42 | "colSpan": { |
| 43 | "type": "string", |
| 44 | "default": "1" |
| 45 | }, |
| 46 | "textAlignment": { |
| 47 | "type": "object", |
| 48 | "default": { |
| 49 | "value": "left", |
| 50 | "valueTablet": "", |
| 51 | "valueMobile": "" |
| 52 | } |
| 53 | } |
| 54 | } |
| 55 | } |