block.json in Gutenberg 10.1.0, at build/block-library/blocks/gallery/block.json
| 1 | { |
| 2 | "apiVersion": 2, |
| 3 | "name": "core/gallery", |
| 4 | "category": "media", |
| 5 | "attributes": { |
| 6 | "images": { |
| 7 | "type": "array", |
| 8 | "default": [], |
| 9 | "source": "query", |
| 10 | "selector": ".blocks-gallery-item", |
| 11 | "query": { |
| 12 | "url": { |
| 13 | "type": "string", |
| 14 | "source": "attribute", |
| 15 | "selector": "img", |
| 16 | "attribute": "src" |
| 17 | }, |
| 18 | "fullUrl": { |
| 19 | "type": "string", |
| 20 | "source": "attribute", |
| 21 | "selector": "img", |
| 22 | "attribute": "data-full-url" |
| 23 | }, |
| 24 | "link": { |
| 25 | "type": "string", |
| 26 | "source": "attribute", |
| 27 | "selector": "img", |
| 28 | "attribute": "data-link" |
| 29 | }, |
| 30 | "alt": { |
| 31 | "type": "string", |
| 32 | "source": "attribute", |
| 33 | "selector": "img", |
| 34 | "attribute": "alt", |
| 35 | "default": "" |
| 36 | }, |
| 37 | "id": { |
| 38 | "type": "string", |
| 39 | "source": "attribute", |
| 40 | "selector": "img", |
| 41 | "attribute": "data-id" |
| 42 | }, |
| 43 | "caption": { |
| 44 | "type": "string", |
| 45 | "source": "html", |
| 46 | "selector": ".blocks-gallery-item__caption" |
| 47 | } |
| 48 | } |
| 49 | }, |
| 50 | "ids": { |
| 51 | "type": "array", |
| 52 | "items": { |
| 53 | "type": "number" |
| 54 | }, |
| 55 | "default": [] |
| 56 | }, |
| 57 | "columns": { |
| 58 | "type": "number", |
| 59 | "minimum": 1, |
| 60 | "maximum": 8 |
| 61 | }, |
| 62 | "caption": { |
| 63 | "type": "string", |
| 64 | "source": "html", |
| 65 | "selector": ".blocks-gallery-caption" |
| 66 | }, |
| 67 | "imageCrop": { |
| 68 | "type": "boolean", |
| 69 | "default": true |
| 70 | }, |
| 71 | "linkTo": { |
| 72 | "type": "string" |
| 73 | }, |
| 74 | "sizeSlug": { |
| 75 | "type": "string", |
| 76 | "default": "large" |
| 77 | } |
| 78 | }, |
| 79 | "supports": { |
| 80 | "anchor": true, |
| 81 | "align": true |
| 82 | }, |
| 83 | "editorStyle": "wp-block-gallery-editor", |
| 84 | "style": "wp-block-gallery" |
| 85 | } |
| 86 |