block.json
33 lines
| 1 | { |
| 2 | "$schema": "https://json.schemastore.org/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/order-confirmation", |
| 5 | "title": "Order Confirmation", |
| 6 | "description": "Display an order confirmation section.", |
| 7 | "category": "surecart", |
| 8 | "keywords": ["thank", "thank you", "confirm"], |
| 9 | "textdomain": "surecart", |
| 10 | "supports": { |
| 11 | "reusable": false, |
| 12 | "html": false |
| 13 | }, |
| 14 | "attributes": { |
| 15 | "title": { |
| 16 | "type": "string", |
| 17 | "default": "Order Confirmation" |
| 18 | }, |
| 19 | "description": { |
| 20 | "type": "string", |
| 21 | "default": "Thank you!" |
| 22 | }, |
| 23 | "button_enabled": { |
| 24 | "type": "boolean", |
| 25 | "default": true |
| 26 | }, |
| 27 | "button_text": { |
| 28 | "type": "string", |
| 29 | "default": "Customer Dashboard" |
| 30 | } |
| 31 | } |
| 32 | } |
| 33 |