PluginProbe
Gutenberg / 23.6.2
Gutenberg v23.6.2
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 / comment-author-name / block.json

block.json in Gutenberg 23.6.2, at build/scripts/block-library/comment-author-name/block.json

69 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/comment-author-name",
5 "title": "Comment Author Name",
6 "category": "theme",
7 "ancestor": [ "core/comment-template" ],
8 "description": "Displays the name of the author of the comment.",
9 "textdomain": "default",
10 "attributes": {
11 "isLink": {
12 "type": "boolean",
13 "default": true
14 },
15 "linkTarget": {
16 "type": "string",
17 "default": "_self"
18 }
19 },
20 "usesContext": [ "commentId" ],
21 "supports": {
22 "anchor": true,
23 "html": false,
24 "spacing": {
25 "margin": true,
26 "padding": true
27 },
28 "color": {
29 "gradients": true,
30 "link": true,
31 "__experimentalDefaultControls": {
32 "background": true,
33 "text": true,
34 "link": true
35 }
36 },
37 "typography": {
38 "fontSize": true,
39 "lineHeight": true,
40 "textAlign": true,
41 "__experimentalFontFamily": true,
42 "__experimentalFontWeight": true,
43 "__experimentalFontStyle": true,
44 "__experimentalTextTransform": true,
45 "__experimentalTextDecoration": true,
46 "__experimentalLetterSpacing": true,
47 "__experimentalDefaultControls": {
48 "fontSize": true
49 }
50 },
51 "interactivity": {
52 "clientNavigation": true
53 },
54 "__experimentalBorder": {
55 "radius": true,
56 "color": true,
57 "width": true,
58 "style": true,
59 "__experimentalDefaultControls": {
60 "radius": true,
61 "color": true,
62 "width": true,
63 "style": true
64 }
65 }
66 },
67 "style": "wp-block-comment-author-name"
68 }
69