build/scripts/block-library/comments
block.json
1.4 KB
7 months ago
block.json in Gutenberg 23.2.0, at build/scripts/block-library/comments/block.json
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "core/comments", |
| 5 | "title": "Comments", |
| 6 | "category": "theme", |
| 7 | "description": "An advanced block that allows displaying post comments using different visual configurations.", |
| 8 | "textdomain": "default", |
| 9 | "attributes": { |
| 10 | "tagName": { |
| 11 | "type": "string", |
| 12 | "default": "div" |
| 13 | }, |
| 14 | "legacy": { |
| 15 | "type": "boolean", |
| 16 | "default": false |
| 17 | } |
| 18 | }, |
| 19 | "supports": { |
| 20 | "anchor": true, |
| 21 | "align": [ "wide", "full" ], |
| 22 | "html": false, |
| 23 | "color": { |
| 24 | "gradients": true, |
| 25 | "heading": true, |
| 26 | "link": true, |
| 27 | "__experimentalDefaultControls": { |
| 28 | "background": true, |
| 29 | "text": true, |
| 30 | "link": true |
| 31 | } |
| 32 | }, |
| 33 | "spacing": { |
| 34 | "margin": true, |
| 35 | "padding": true |
| 36 | }, |
| 37 | "typography": { |
| 38 | "fontSize": true, |
| 39 | "lineHeight": true, |
| 40 | "__experimentalFontFamily": true, |
| 41 | "__experimentalFontWeight": true, |
| 42 | "__experimentalFontStyle": true, |
| 43 | "__experimentalTextTransform": true, |
| 44 | "__experimentalTextDecoration": true, |
| 45 | "__experimentalLetterSpacing": true, |
| 46 | "__experimentalDefaultControls": { |
| 47 | "fontSize": true |
| 48 | } |
| 49 | }, |
| 50 | "__experimentalBorder": { |
| 51 | "radius": true, |
| 52 | "color": true, |
| 53 | "width": true, |
| 54 | "style": true, |
| 55 | "__experimentalDefaultControls": { |
| 56 | "radius": true, |
| 57 | "color": true, |
| 58 | "width": true, |
| 59 | "style": true |
| 60 | } |
| 61 | } |
| 62 | }, |
| 63 | "editorStyle": "wp-block-comments-editor", |
| 64 | "usesContext": [ "postId", "postType" ] |
| 65 | } |
| 66 |