PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / chapter-navigation / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/chapter-navigation/block.json

216 lines 5.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": "blockenberg/chapter-navigation",
5 "title": "Chapter Navigation",
6 "description": "Multi-part guide and series navigation with progress, prev/next, and chapter list.",
7 "category": "bkbg-blog",
8 "icon": "book-alt",
9 "keywords": [
10 "chapter",
11 "navigation",
12 "series",
13 "guide",
14 "toc",
15 "next",
16 "previous"
17 ],
18 "editorScript": "bkbg-chapter-navigation-editor",
19 "style": "bkbg-chapter-navigation-style",
20 "viewScript": "bkbg-chapter-navigation-frontend",
21 "supports": {
22 "html": false,
23 "align": [
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "seriesTitle": {
30 "type": "string",
31 "default": "Complete Guide to SEO"
32 },
33 "currentPart": {
34 "type": "number",
35 "default": 3
36 },
37 "totalParts": {
38 "type": "number",
39 "default": 7
40 },
41 "currentTitle": {
42 "type": "string",
43 "default": "On-Page Optimization"
44 },
45 "prevTitle": {
46 "type": "string",
47 "default": "Keyword Research"
48 },
49 "prevUrl": {
50 "type": "string",
51 "default": ""
52 },
53 "nextTitle": {
54 "type": "string",
55 "default": "Technical SEO"
56 },
57 "nextUrl": {
58 "type": "string",
59 "default": ""
60 },
61 "chapters": {
62 "type": "array",
63 "default": [
64 {
65 "title": "Introduction to SEO",
66 "url": ""
67 },
68 {
69 "title": "Keyword Research",
70 "url": ""
71 },
72 {
73 "title": "On-Page Optimization",
74 "url": ""
75 },
76 {
77 "title": "Technical SEO",
78 "url": ""
79 },
80 {
81 "title": "Link Building",
82 "url": ""
83 },
84 {
85 "title": "Content Strategy",
86 "url": ""
87 },
88 {
89 "title": "Measuring Results",
90 "url": ""
91 }
92 ]
93 },
94 "showChapterList": {
95 "type": "boolean",
96 "default": true
97 },
98 "chapterListOpen": {
99 "type": "boolean",
100 "default": false
101 },
102 "showProgress": {
103 "type": "boolean",
104 "default": true
105 },
106 "style": {
107 "type": "string",
108 "default": "card"
109 },
110 "openInNewTab": {
111 "type": "boolean",
112 "default": false
113 },
114 "partLabel": {
115 "type": "string",
116 "default": "Part"
117 },
118 "bgColor": {
119 "type": "string",
120 "default": "#ffffff"
121 },
122 "borderColor": {
123 "type": "string",
124 "default": "#e2e8f0"
125 },
126 "accentColor": {
127 "type": "string",
128 "default": "#6366f1"
129 },
130 "seriesTitleColor": {
131 "type": "string",
132 "default": "#374151"
133 },
134 "currentTitleColor": {
135 "type": "string",
136 "default": "#111827"
137 },
138 "progressBg": {
139 "type": "string",
140 "default": "#e2e8f0"
141 },
142 "progressFill": {
143 "type": "string",
144 "default": "#6366f1"
145 },
146 "btnBg": {
147 "type": "string",
148 "default": "#f1f5f9"
149 },
150 "btnColor": {
151 "type": "string",
152 "default": "#374151"
153 },
154 "btnHoverBg": {
155 "type": "string",
156 "default": "#6366f1"
157 },
158 "pillBg": {
159 "type": "string",
160 "default": "#eef2ff"
161 },
162 "pillColor": {
163 "type": "string",
164 "default": "#4f46e5"
165 },
166 "chapterListBg": {
167 "type": "string",
168 "default": "#f8fafc"
169 },
170 "activeChapterBg": {
171 "type": "string",
172 "default": "#eef2ff"
173 },
174 "activeChapterColor": {
175 "type": "string",
176 "default": "#4f46e5"
177 },
178 "borderRadius": {
179 "type": "number",
180 "default": 10
181 },
182 "paddingTop": {
183 "type": "number",
184 "default": 0
185 },
186 "paddingBottom": {
187 "type": "number",
188 "default": 0
189 },
190 "seriesTitleFontSize": {
191 "type": "number",
192 "default": 13
193 },
194 "currentTitleFontSize": {
195 "type": "number",
196 "default": 17
197 },
198 "currentTitleFontWeight": {
199 "type": "string",
200 "default": "700"
201 },
202 "navFontSize": {
203 "type": "number",
204 "default": 13
205 },
206 "chapterListFontSize": {
207 "type": "number",
208 "default": 13
209 },
210 "typoTitle": {
211 "type": "object",
212 "default": {}
213 }
214 }
215 }
216