PluginProbe
Gutenberg / 23.2.0
Gutenberg v23.2.0
24.0.0 23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 All 403 releases
gutenberg / build / scripts / block-library / latest-comments / block.json
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

67 lines 1.4 KB Raw Download Zip
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