block.json
1 year ago
index-rtl.css
2 weeks ago
index.asset.php
2 weeks ago
index.css
2 weeks ago
index.js
2 weeks ago
block.json
65 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "generateblocks/media", |
| 5 | "title": "Image", |
| 6 | "category": "generateblocks", |
| 7 | "description": "A self-closing media element.", |
| 8 | "keywords": [ |
| 9 | "image", |
| 10 | "media", |
| 11 | "img" |
| 12 | ], |
| 13 | "version": "1.0.0", |
| 14 | "textdomain": "generateblocks", |
| 15 | "attributes": { |
| 16 | "uniqueId": { |
| 17 | "type": "string", |
| 18 | "default": "" |
| 19 | }, |
| 20 | "tagName": { |
| 21 | "type": "string", |
| 22 | "default": "", |
| 23 | "enum": [ |
| 24 | "img" |
| 25 | ] |
| 26 | }, |
| 27 | "styles": { |
| 28 | "type": "object", |
| 29 | "default": {} |
| 30 | }, |
| 31 | "css": { |
| 32 | "type": "string", |
| 33 | "default": "" |
| 34 | }, |
| 35 | "globalClasses": { |
| 36 | "type": "array", |
| 37 | "default": [] |
| 38 | }, |
| 39 | "htmlAttributes": { |
| 40 | "type": "object", |
| 41 | "default": {} |
| 42 | }, |
| 43 | "mediaId": { |
| 44 | "type": "number", |
| 45 | "default": 0 |
| 46 | }, |
| 47 | "linkHtmlAttributes": { |
| 48 | "type": "object", |
| 49 | "default": {} |
| 50 | } |
| 51 | }, |
| 52 | "supports": { |
| 53 | "align": false, |
| 54 | "className": false |
| 55 | }, |
| 56 | "editorScript": "file:./index.js", |
| 57 | "editorStyle": [ |
| 58 | "file:./index.css" |
| 59 | ], |
| 60 | "usesContext": [ |
| 61 | "postId", |
| 62 | "generateblocks/loopItem", |
| 63 | "generateblocks/loopIndex" |
| 64 | ] |
| 65 | } |