PluginProbe
Gutenberg / 22.3.0
Gutenberg v22.3.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 7.4.0 All 402 releases
gutenberg / build / scripts / block-library / comments / block.json

block.json in Gutenberg 22.3.0, at build/scripts/block-library/comments/block.json

65 lines 1.4 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 "__experimentalBorder": {
50 "radius": true,
51 "color": true,
52 "width": true,
53 "style": true,
54 "__experimentalDefaultControls": {
55 "radius": true,
56 "color": true,
57 "width": true,
58 "style": true
59 }
60 }
61 },
62 "editorStyle": "wp-block-comments-editor",
63 "usesContext": [ "postId", "postType" ]
64 }
65