PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / breadcrumbs / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/breadcrumbs/block.json

114 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/breadcrumbs",
5 "title": "Breadcrumbs",
6 "description": "SEO-friendly navigation trail with Schema.org markup showing the current page hierarchy.",
7 "category": "bkbg-layout",
8 "icon": "networking",
9 "keywords": [
10 "breadcrumbs",
11 "navigation",
12 "seo",
13 "hierarchy",
14 "schema",
15 "path"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-breadcrumbs-editor",
19 "editorStyle": "bkbg-breadcrumbs-style",
20 "style": "bkbg-breadcrumbs-style",
21 "viewScript": "bkbg-breadcrumbs-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "homeLabel": {
33 "type": "string",
34 "default": "Home"
35 },
36 "homeUrl": {
37 "type": "string",
38 "default": "/"
39 },
40 "showHome": {
41 "type": "boolean",
42 "default": true
43 },
44 "showCurrentPage": {
45 "type": "boolean",
46 "default": true
47 },
48 "separator": {
49 "type": "string",
50 "default": "chevron"
51 },
52 "customSeparator": {
53 "type": "string",
54 "default": "/"
55 },
56 "schemaEnabled": {
57 "type": "boolean",
58 "default": true
59 },
60 "alignment": {
61 "type": "string",
62 "default": "left"
63 },
64 "fontSize": {
65 "type": "number",
66 "default": 14
67 },
68 "itemSpacing": {
69 "type": "number",
70 "default": 8
71 },
72 "paddingV": {
73 "type": "number",
74 "default": 10
75 },
76 "textColor": {
77 "type": "string",
78 "default": "#6b7280"
79 },
80 "linkColor": {
81 "type": "string",
82 "default": "#2563eb"
83 },
84 "linkHoverColor": {
85 "type": "string",
86 "default": "#1d4ed8"
87 },
88 "separatorColor": {
89 "type": "string",
90 "default": "#9ca3af"
91 },
92 "activeColor": {
93 "type": "string",
94 "default": "#111827"
95 },
96 "bgColor": {
97 "type": "string",
98 "default": ""
99 },
100 "fontWeight": {
101 "type": "number",
102 "default": 400
103 },
104 "showHomeIcon": {
105 "type": "boolean",
106 "default": true
107 },
108 "typoText": {
109 "type": "object",
110 "default": {}
111 }
112 }
113 }
114