block.json
51 lines
| 1 | { |
| 2 | "$schema": "https://json.schemastore.org/block.json", |
| 3 | "apiVersion": 2, |
| 4 | "name": "surecart/product-item-image", |
| 5 | "title": "Product Image", |
| 6 | "description": "Displays a product item image.", |
| 7 | "category": "surecart", |
| 8 | "keywords": ["product", "image", "thumbnail"], |
| 9 | "ancestor": ["surecart/product-item-list"], |
| 10 | "attributes": { |
| 11 | "src": { |
| 12 | "type": "string" |
| 13 | }, |
| 14 | "sizing": { |
| 15 | "type": "string" |
| 16 | }, |
| 17 | "ratio": { |
| 18 | "type": "string", |
| 19 | "default": "3 / 4" |
| 20 | } |
| 21 | }, |
| 22 | "supports": { |
| 23 | "reusable": false, |
| 24 | "html": false, |
| 25 | "spacing": { |
| 26 | "padding": true, |
| 27 | "margin": true, |
| 28 | "__experimentalDefaultControls": { |
| 29 | "padding": true, |
| 30 | "margin": true |
| 31 | } |
| 32 | }, |
| 33 | "color": { |
| 34 | "text": false, |
| 35 | "background": false |
| 36 | }, |
| 37 | "__experimentalBorder": { |
| 38 | "color": true, |
| 39 | "radius": true, |
| 40 | "width": true, |
| 41 | "__experimentalSelector": ".product-img", |
| 42 | "__experimentalSkipSerialization": true, |
| 43 | "__experimentalDefaultControls": { |
| 44 | "color": true, |
| 45 | "radius": true, |
| 46 | "width": true |
| 47 | } |
| 48 | } |
| 49 | } |
| 50 | } |
| 51 |