block.json
31 lines
| 1 | { |
| 2 | "apiVersion": 2, |
| 3 | "name": "surecart/checkbox", |
| 4 | "title": "Checkbox", |
| 5 | "description": "Display a checkbox input", |
| 6 | "category": "surecart", |
| 7 | "keywords": ["checkbox", "toggle", "checkout", "engine"], |
| 8 | "ancestor": ["surecart/form"], |
| 9 | "supports": { |
| 10 | "reusable": false, |
| 11 | "html": false |
| 12 | }, |
| 13 | "attributes": { |
| 14 | "label": { |
| 15 | "type": "string", |
| 16 | "default": "Checkbox" |
| 17 | }, |
| 18 | "value": { |
| 19 | "type": "string", |
| 20 | "default": "on" |
| 21 | }, |
| 22 | "name": { |
| 23 | "type": "string", |
| 24 | "default": "checkbox" |
| 25 | }, |
| 26 | "required": { |
| 27 | "type": "boolean" |
| 28 | } |
| 29 | } |
| 30 | } |
| 31 |