block.json
35 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 2, |
| 4 | "name": "woocommerce/product-images-field", |
| 5 | "title": "Product images", |
| 6 | "category": "widgets", |
| 7 | "description": "The product images.", |
| 8 | "keywords": ["products", "image", "images", "gallery"], |
| 9 | "textdomain": "default", |
| 10 | "attributes": { |
| 11 | "mediaId": { |
| 12 | "type": "number", |
| 13 | "__experimentalRole": "content" |
| 14 | }, |
| 15 | "images": { |
| 16 | "__experimentalRole": "content", |
| 17 | "type": "array", |
| 18 | "items": { |
| 19 | "type": "number" |
| 20 | }, |
| 21 | "default": [] |
| 22 | } |
| 23 | }, |
| 24 | "supports": { |
| 25 | "align": false, |
| 26 | "html": false, |
| 27 | "multiple": false, |
| 28 | "reusable": false, |
| 29 | "inserter": false, |
| 30 | "lock": false, |
| 31 | "__experimentalToolbar": false |
| 32 | }, |
| 33 | "editorStyle": "file:./editor.css" |
| 34 | } |
| 35 |