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-navigation-link / block.json

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

65 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/post-navigation-link",
5 "title": "Post Navigation Link",
6 "category": "theme",
7 "description": "Displays the next or previous post link that is adjacent to the current post.",
8 "textdomain": "default",
9 "attributes": {
10 "textAlign": {
11 "type": "string"
12 },
13 "type": {
14 "type": "string",
15 "default": "next"
16 },
17 "label": {
18 "type": "string",
19 "role": "content"
20 },
21 "showTitle": {
22 "type": "boolean",
23 "default": false
24 },
25 "linkLabel": {
26 "type": "boolean",
27 "default": false
28 },
29 "arrow": {
30 "type": "string",
31 "default": "none"
32 },
33 "taxonomy": {
34 "type": "string",
35 "default": ""
36 }
37 },
38 "usesContext": [ "postType" ],
39 "supports": {
40 "reusable": false,
41 "html": false,
42 "color": {
43 "link": 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 "__experimentalWritingMode": true,
55 "__experimentalDefaultControls": {
56 "fontSize": true
57 }
58 },
59 "interactivity": {
60 "clientNavigation": true
61 }
62 },
63 "style": "wp-block-post-navigation-link"
64 }
65