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 / comment-edit-link / block.json
build/scripts/block-library/comment-edit-link
block.json 1.4 KB 7 months ago

block.json in Gutenberg 23.2.0, at build/scripts/block-library/comment-edit-link/block.json

63 lines 1.4 KB Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "core/comment-edit-link",
5 "title": "Comment Edit Link",
6 "category": "theme",
7 "ancestor": [ "core/comment-template" ],
8 "description": "Displays a link to edit the comment in the WordPress Dashboard. This link is only visible to users with the edit comment capability.",
9 "textdomain": "default",
10 "usesContext": [ "commentId" ],
11 "attributes": {
12 "linkTarget": {
13 "type": "string",
14 "default": "_self"
15 }
16 },
17 "supports": {
18 "anchor": true,
19 "html": false,
20 "color": {
21 "link": true,
22 "gradients": true,
23 "text": false,
24 "__experimentalDefaultControls": {
25 "background": true,
26 "link": true
27 }
28 },
29 "spacing": {
30 "margin": true,
31 "padding": true,
32 "__experimentalDefaultControls": {
33 "margin": false,
34 "padding": false
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 }
60 },
61 "style": "wp-block-comment-edit-link"
62 }
63