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 / home-link / block.json
build/scripts/block-library/home-link
block.json 1.1 KB 7 months ago

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

49 lines 1.1 KB 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 },
16 "usesContext": [
17 "textColor",
18 "customTextColor",
19 "backgroundColor",
20 "customBackgroundColor",
21 "fontSize",
22 "customFontSize",
23 "style"
24 ],
25 "supports": {
26 "anchor": true,
27 "reusable": false,
28 "html": false,
29 "typography": {
30 "fontSize": true,
31 "lineHeight": true,
32 "__experimentalFontFamily": true,
33 "__experimentalFontWeight": true,
34 "__experimentalFontStyle": true,
35 "__experimentalTextTransform": true,
36 "__experimentalTextDecoration": true,
37 "__experimentalLetterSpacing": true,
38 "__experimentalDefaultControls": {
39 "fontSize": true
40 }
41 },
42 "interactivity": {
43 "clientNavigation": true
44 }
45 },
46 "editorStyle": "wp-block-home-link-editor",
47 "style": "wp-block-home-link"
48 }
49