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 / post-author / block.json

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

93 lines 1.8 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/post-author",
5 "title": "Author",
6 "category": "theme",
7 "description": "Display post author details such as name, avatar, and bio.",
8 "textdomain": "default",
9 "attributes": {
10 "textAlign": {
11 "type": "string"
12 },
13 "avatarSize": {
14 "type": "number",
15 "default": 48
16 },
17 "showAvatar": {
18 "type": "boolean",
19 "default": true
20 },
21 "showBio": {
22 "type": "boolean"
23 },
24 "byline": {
25 "type": "string"
26 },
27 "isLink": {
28 "type": "boolean",
29 "default": false,
30 "role": "content"
31 },
32 "linkTarget": {
33 "type": "string",
34 "default": "_self",
35 "role": "content"
36 }
37 },
38 "usesContext": [ "postType", "postId", "queryId" ],
39 "supports": {
40 "html": false,
41 "spacing": {
42 "margin": true,
43 "padding": true
44 },
45 "typography": {
46 "fontSize": true,
47 "lineHeight": true,
48 "__experimentalFontFamily": true,
49 "__experimentalFontWeight": true,
50 "__experimentalFontStyle": true,
51 "__experimentalTextTransform": true,
52 "__experimentalTextDecoration": true,
53 "__experimentalLetterSpacing": true,
54 "__experimentalDefaultControls": {
55 "fontSize": true
56 }
57 },
58 "color": {
59 "gradients": true,
60 "link": true,
61 "__experimentalDefaultControls": {
62 "background": true,
63 "text": true
64 }
65 },
66 "interactivity": {
67 "clientNavigation": true
68 },
69 "__experimentalBorder": {
70 "radius": true,
71 "color": true,
72 "width": true,
73 "style": true,
74 "__experimentalDefaultControls": {
75 "radius": true,
76 "color": true,
77 "width": true,
78 "style": true
79 }
80 },
81 "filter": {
82 "duotone": true
83 }
84 },
85 "selectors": {
86 "filter": {
87 "duotone": ".wp-block-post-author .wp-block-post-author__avatar img"
88 }
89 },
90 "editorStyle": "wp-block-post-author-editor",
91 "style": "wp-block-post-author"
92 }
93