block.json
32 lines
| 1 | { |
| 2 | "apiVersion": 2, |
| 3 | "name": "surecart/price-selector", |
| 4 | "title": "Price Selector", |
| 5 | "description": "Displays a selector for product prices.", |
| 6 | "category": "surecart", |
| 7 | "keywords": ["price", "product", "choice", "checkout"], |
| 8 | "ancestor": ["surecart/form"], |
| 9 | "supports": { |
| 10 | "reusable": false, |
| 11 | "html": false, |
| 12 | "className": true |
| 13 | }, |
| 14 | "attributes": { |
| 15 | "label": { |
| 16 | "type": "string" |
| 17 | }, |
| 18 | "choices": { |
| 19 | "type": "array", |
| 20 | "default": [] |
| 21 | }, |
| 22 | "type": { |
| 23 | "type": "string", |
| 24 | "default": "radio" |
| 25 | }, |
| 26 | "columns": { |
| 27 | "type": "number", |
| 28 | "default": 1 |
| 29 | } |
| 30 | } |
| 31 | } |
| 32 |