PluginProbe
Gutenberg / 23.4.0
Gutenberg v23.4.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 / home-link / block.json

block.json in Gutenberg 23.4.0, at build/scripts/block-library/home-link/block.json

56 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/home-link",
5 "category": "design",
6 "parent": [ "core/navigation" ],
7 "title": "Home Link",
8 "description": "Create a link that always points to the homepage of the site. Usually not necessary if there is already a site title link present in the header.",
9 "textdomain": "default",
10 "attributes": {
11 "label": {
12 "type": "string",
13 "role": "content"
14 },
15 "opensInNewTab": {
16 "type": "boolean",
17 "default": false
18 },
19 "description": {
20 "type": "string"
21 }
22 },
23 "usesContext": [
24 "textColor",
25 "customTextColor",
26 "backgroundColor",
27 "customBackgroundColor",
28 "fontSize",
29 "customFontSize",
30 "style"
31 ],
32 "supports": {
33 "anchor": true,
34 "reusable": false,
35 "html": false,
36 "typography": {
37 "fontSize": true,
38 "lineHeight": true,
39 "__experimentalFontFamily": true,
40 "__experimentalFontWeight": true,
41 "__experimentalFontStyle": true,
42 "__experimentalTextTransform": true,
43 "__experimentalTextDecoration": true,
44 "__experimentalLetterSpacing": true,
45 "__experimentalDefaultControls": {
46 "fontSize": true
47 }
48 },
49 "interactivity": {
50 "clientNavigation": true
51 }
52 },
53 "editorStyle": "wp-block-home-link-editor",
54 "style": "wp-block-home-link"
55 }
56