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