block.json
32 lines
| 1 | { |
| 2 | "$schema": "https://json.schemastore.org/block.json", |
| 3 | "apiVersion": 2, |
| 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 | "supports": { |
| 10 | "reusable": false, |
| 11 | "html": false |
| 12 | }, |
| 13 | "attributes": { |
| 14 | "title": { |
| 15 | "type": "string", |
| 16 | "default": "Order Confirmation" |
| 17 | }, |
| 18 | "description": { |
| 19 | "type": "string", |
| 20 | "default": "Thank you for your order!" |
| 21 | }, |
| 22 | "button_enabled": { |
| 23 | "type": "boolean", |
| 24 | "default": true |
| 25 | }, |
| 26 | "button_text": { |
| 27 | "type": "string", |
| 28 | "default": "Customer Dashboard" |
| 29 | } |
| 30 | } |
| 31 | } |
| 32 |