build/scripts/block-library/latest-comments
block.json
1.4 KB
7 months ago
block.json in Gutenberg 23.2.0, at build/scripts/block-library/latest-comments/block.json
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "core/latest-comments", |
| 5 | "title": "Latest Comments", |
| 6 | "category": "widgets", |
| 7 | "description": "Display a list of your most recent comments.", |
| 8 | "keywords": [ "recent comments" ], |
| 9 | "textdomain": "default", |
| 10 | "attributes": { |
| 11 | "commentsToShow": { |
| 12 | "type": "number", |
| 13 | "default": 5, |
| 14 | "minimum": 1, |
| 15 | "maximum": 100 |
| 16 | }, |
| 17 | "displayAvatar": { |
| 18 | "type": "boolean", |
| 19 | "default": true |
| 20 | }, |
| 21 | "displayDate": { |
| 22 | "type": "boolean", |
| 23 | "default": true |
| 24 | }, |
| 25 | "displayContent": { |
| 26 | "type": "string", |
| 27 | "default": "excerpt", |
| 28 | "enum": [ "none", "excerpt", "full" ] |
| 29 | } |
| 30 | }, |
| 31 | "supports": { |
| 32 | "anchor": true, |
| 33 | "align": true, |
| 34 | "color": { |
| 35 | "gradients": true, |
| 36 | "link": true, |
| 37 | "__experimentalDefaultControls": { |
| 38 | "background": true, |
| 39 | "text": true, |
| 40 | "link": true |
| 41 | } |
| 42 | }, |
| 43 | "html": false, |
| 44 | "spacing": { |
| 45 | "margin": true, |
| 46 | "padding": true |
| 47 | }, |
| 48 | "typography": { |
| 49 | "fontSize": true, |
| 50 | "lineHeight": true, |
| 51 | "__experimentalFontFamily": true, |
| 52 | "__experimentalFontWeight": true, |
| 53 | "__experimentalFontStyle": true, |
| 54 | "__experimentalTextTransform": true, |
| 55 | "__experimentalTextDecoration": true, |
| 56 | "__experimentalLetterSpacing": true, |
| 57 | "__experimentalDefaultControls": { |
| 58 | "fontSize": true |
| 59 | } |
| 60 | }, |
| 61 | "interactivity": { |
| 62 | "clientNavigation": true |
| 63 | } |
| 64 | }, |
| 65 | "style": "wp-block-latest-comments" |
| 66 | } |
| 67 |