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 / comments / block.json
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

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