block.json
44 lines
| 1 | { |
| 2 | "$schema": "https://json.schemastore.org/block.json", |
| 3 | "apiVersion": 2, |
| 4 | "name": "surecart/cart-message", |
| 5 | "title": "Cart Message", |
| 6 | "description": "Display a custom message in the cart", |
| 7 | "category": "surecart", |
| 8 | "textdomain": "surecart", |
| 9 | "supports": { |
| 10 | "reusable": false, |
| 11 | "html": false, |
| 12 | "typography": true |
| 13 | }, |
| 14 | "ancestor": ["surecart/cart"], |
| 15 | "attributes": { |
| 16 | "text": { |
| 17 | "type": "string" |
| 18 | }, |
| 19 | "align": { |
| 20 | "type": "string", |
| 21 | "default": "left" |
| 22 | }, |
| 23 | "border": { |
| 24 | "type": "boolean", |
| 25 | "default": true |
| 26 | }, |
| 27 | "padding": { |
| 28 | "type": "object", |
| 29 | "default": { |
| 30 | "top": "1.25em", |
| 31 | "left": "1.25em", |
| 32 | "bottom": "1.25em", |
| 33 | "right": "1.25em" |
| 34 | } |
| 35 | }, |
| 36 | "backgroundColor": { |
| 37 | "type": "string" |
| 38 | }, |
| 39 | "textColor": { |
| 40 | "type": "string" |
| 41 | } |
| 42 | } |
| 43 | } |
| 44 |