PluginProbe
Gutenberg / 18.9.0
Gutenberg v18.9.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 / block-library / blocks / comments / block.json

block.json in Gutenberg 18.9.0, at build/block-library/blocks/comments/block.json

53 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
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 "align": [ "wide", "full" ],
21 "html": false,
22 "color": {
23 "gradients": true,
24 "heading": true,
25 "link": true,
26 "__experimentalDefaultControls": {
27 "background": true,
28 "text": true,
29 "link": true
30 }
31 },
32 "spacing": {
33 "margin": true,
34 "padding": true
35 },
36 "typography": {
37 "fontSize": true,
38 "lineHeight": true,
39 "__experimentalFontFamily": true,
40 "__experimentalFontWeight": true,
41 "__experimentalFontStyle": true,
42 "__experimentalTextTransform": true,
43 "__experimentalTextDecoration": true,
44 "__experimentalLetterSpacing": true,
45 "__experimentalDefaultControls": {
46 "fontSize": true
47 }
48 }
49 },
50 "editorStyle": "wp-block-comments-editor",
51 "usesContext": [ "postId", "postType" ]
52 }
53