PluginProbe
Gutenberg / 22.9.0
Gutenberg v22.9.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-title / block.json

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

71 lines 1.5 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-title",
5 "title": "Comments Title",
6 "category": "theme",
7 "ancestor": [ "core/comments" ],
8 "description": "Displays a title with the number of comments.",
9 "textdomain": "default",
10 "usesContext": [ "postId", "postType" ],
11 "attributes": {
12 "showPostTitle": {
13 "type": "boolean",
14 "default": true
15 },
16 "showCommentsCount": {
17 "type": "boolean",
18 "default": true
19 },
20 "level": {
21 "type": "number",
22 "default": 2
23 },
24 "levelOptions": {
25 "type": "array"
26 }
27 },
28 "supports": {
29 "anchor": true,
30 "align": true,
31 "html": false,
32 "__experimentalBorder": {
33 "radius": true,
34 "color": true,
35 "width": true,
36 "style": true
37 },
38 "color": {
39 "gradients": true,
40 "__experimentalDefaultControls": {
41 "background": true,
42 "text": true
43 }
44 },
45 "spacing": {
46 "margin": true,
47 "padding": true
48 },
49 "typography": {
50 "fontSize": true,
51 "lineHeight": true,
52 "textAlign": true,
53 "__experimentalFontFamily": true,
54 "__experimentalFontWeight": true,
55 "__experimentalFontStyle": true,
56 "__experimentalTextTransform": true,
57 "__experimentalTextDecoration": true,
58 "__experimentalLetterSpacing": true,
59 "__experimentalDefaultControls": {
60 "fontSize": true,
61 "__experimentalFontFamily": true,
62 "__experimentalFontStyle": true,
63 "__experimentalFontWeight": true
64 }
65 },
66 "interactivity": {
67 "clientNavigation": true
68 }
69 }
70 }
71