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 / post-author-name / block.json
build/scripts/block-library/post-author-name
block.json 1.4 KB 6 months ago

block.json in Gutenberg 23.2.0, at build/scripts/block-library/post-author-name/block.json

73 lines 1.4 KB Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "core/post-author-name",
5 "title": "Author Name",
6 "category": "theme",
7 "description": "The author name.",
8 "textdomain": "default",
9 "attributes": {
10 "isLink": {
11 "type": "boolean",
12 "default": false,
13 "role": "content"
14 },
15 "linkTarget": {
16 "type": "string",
17 "default": "_self",
18 "role": "content"
19 }
20 },
21 "usesContext": [ "postType", "postId" ],
22 "example": {
23 "viewportWidth": 350
24 },
25 "supports": {
26 "anchor": true,
27 "html": false,
28 "spacing": {
29 "margin": true,
30 "padding": true
31 },
32 "color": {
33 "gradients": true,
34 "link": true,
35 "__experimentalDefaultControls": {
36 "background": true,
37 "text": true,
38 "link": true
39 }
40 },
41 "typography": {
42 "fontSize": true,
43 "lineHeight": true,
44 "textAlign": true,
45 "__experimentalFontFamily": true,
46 "__experimentalFontWeight": true,
47 "__experimentalFontStyle": true,
48 "__experimentalTextTransform": true,
49 "__experimentalTextDecoration": true,
50 "__experimentalLetterSpacing": true,
51 "__experimentalDefaultControls": {
52 "fontSize": true
53 }
54 },
55 "interactivity": {
56 "clientNavigation": true
57 },
58 "__experimentalBorder": {
59 "radius": true,
60 "color": true,
61 "width": true,
62 "style": true,
63 "__experimentalDefaultControls": {
64 "radius": true,
65 "color": true,
66 "width": true,
67 "style": true
68 }
69 }
70 },
71 "style": "wp-block-post-author-name"
72 }
73