PluginProbe
Gutenberg / 23.2.2
Gutenberg v23.2.2
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 / navigation-link / block.json

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

96 lines 1.9 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/navigation-link",
5 "title": "Custom Link",
6 "category": "design",
7 "parent": [ "core/navigation" ],
8 "allowedBlocks": [
9 "core/navigation-link",
10 "core/navigation-submenu",
11 "core/page-list"
12 ],
13 "description": "Add a page, link, or another item to your navigation.",
14 "textdomain": "default",
15 "attributes": {
16 "label": {
17 "type": "string",
18 "role": "content"
19 },
20 "type": {
21 "type": "string"
22 },
23 "description": {
24 "type": "string"
25 },
26 "rel": {
27 "type": "string"
28 },
29 "id": {
30 "type": "number"
31 },
32 "opensInNewTab": {
33 "type": "boolean",
34 "default": false
35 },
36 "url": {
37 "type": "string",
38 "role": "content"
39 },
40 "title": {
41 "type": "string"
42 },
43 "kind": {
44 "type": "string"
45 },
46 "isTopLevelLink": {
47 "type": "boolean"
48 }
49 },
50 "usesContext": [
51 "textColor",
52 "customTextColor",
53 "backgroundColor",
54 "customBackgroundColor",
55 "overlayTextColor",
56 "customOverlayTextColor",
57 "overlayBackgroundColor",
58 "customOverlayBackgroundColor",
59 "fontSize",
60 "customFontSize",
61 "showSubmenuIcon",
62 "maxNestingLevel",
63 "style"
64 ],
65 "supports": {
66 "anchor": true,
67 "reusable": false,
68 "html": false,
69 "__experimentalSlashInserter": true,
70 "typography": {
71 "fontSize": true,
72 "lineHeight": true,
73 "__experimentalFontFamily": true,
74 "__experimentalFontWeight": true,
75 "__experimentalFontStyle": true,
76 "__experimentalTextTransform": true,
77 "__experimentalTextDecoration": true,
78 "__experimentalLetterSpacing": true,
79 "__experimentalDefaultControls": {
80 "fontSize": true
81 }
82 },
83 "renaming": false,
84 "interactivity": {
85 "clientNavigation": true
86 }
87 },
88 "selectors": {
89 "states": {
90 "@current": ".wp-block-navigation .current-menu-item"
91 }
92 },
93 "editorStyle": "wp-block-navigation-link-editor",
94 "style": "wp-block-navigation-link"
95 }
96