block.json
47 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 2, |
| 4 | "name": "surecart/column", |
| 5 | "title": "Column", |
| 6 | "category": "text", |
| 7 | "parent": ["surecart/columns"], |
| 8 | "description": "A single column within a columns block.", |
| 9 | "textdomain": "default", |
| 10 | "attributes": { |
| 11 | "verticalAlignment": { |
| 12 | "type": "string" |
| 13 | }, |
| 14 | "width": { |
| 15 | "type": "string" |
| 16 | }, |
| 17 | "sticky": { |
| 18 | "type": "boolean" |
| 19 | }, |
| 20 | "stickyOffset": { |
| 21 | "type": "string" |
| 22 | }, |
| 23 | "allowedBlocks": { |
| 24 | "type": "array" |
| 25 | }, |
| 26 | "templateLock": { |
| 27 | "type": ["string", "boolean"], |
| 28 | "enum": ["all", "insert", false] |
| 29 | } |
| 30 | }, |
| 31 | "supports": { |
| 32 | "anchor": true, |
| 33 | "reusable": false, |
| 34 | "html": false, |
| 35 | "color": { |
| 36 | "gradients": true, |
| 37 | "link": true |
| 38 | }, |
| 39 | "spacing": { |
| 40 | "padding": true, |
| 41 | "__experimentalDefaultControls": { |
| 42 | "padding": true |
| 43 | } |
| 44 | } |
| 45 | } |
| 46 | } |
| 47 |