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 / read-more / block.json

block.json in Gutenberg 22.9.0, at build/scripts/block-library/read-more/block.json

62 lines 1.3 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/read-more",
5 "title": "Read More",
6 "category": "theme",
7 "description": "Displays the link of a post, page, or any other content-type.",
8 "textdomain": "default",
9 "attributes": {
10 "content": {
11 "type": "string",
12 "role": "content"
13 },
14 "linkTarget": {
15 "type": "string",
16 "default": "_self"
17 }
18 },
19 "usesContext": [ "postId" ],
20 "supports": {
21 "anchor": true,
22 "html": false,
23 "color": {
24 "gradients": true,
25 "text": true
26 },
27 "typography": {
28 "fontSize": true,
29 "lineHeight": true,
30 "__experimentalFontFamily": true,
31 "__experimentalFontWeight": true,
32 "__experimentalFontStyle": true,
33 "__experimentalTextTransform": true,
34 "__experimentalLetterSpacing": true,
35 "__experimentalTextDecoration": true,
36 "__experimentalDefaultControls": {
37 "fontSize": true,
38 "textDecoration": true
39 }
40 },
41 "spacing": {
42 "margin": [ "top", "bottom" ],
43 "padding": true,
44 "__experimentalDefaultControls": {
45 "padding": true
46 }
47 },
48 "__experimentalBorder": {
49 "color": true,
50 "radius": true,
51 "width": true,
52 "__experimentalDefaultControls": {
53 "width": true
54 }
55 },
56 "interactivity": {
57 "clientNavigation": true
58 }
59 },
60 "style": "wp-block-read-more"
61 }
62