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 / changelog / block.json

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

224 lines 6.5 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/changelog",
5 "title": "Changelog",
6 "category": "bkbg-blog",
7 "icon": "list-view",
8 "description": "Versioned release-notes block with colour-coded categories (New, Improved, Fixed, Deprecated). Perfect for SaaS product pages.",
9 "keywords": [
10 "changelog",
11 "release",
12 "version",
13 "history",
14 "updates",
15 "notes",
16 "saas",
17 "product"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-changelog-editor",
21 "editorStyle": "bkbg-changelog-style",
22 "style": "bkbg-changelog-style",
23 "viewScript": "bkbg-changelog-frontend",
24 "supports": {
25 "html": false,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "entries": {
33 "type": "array",
34 "default": [
35 {
36 "id": "e1",
37 "version": "2.4.0",
38 "date": "Feb 2026",
39 "badge": "Latest",
40 "items": [
41 {
42 "id": "i1",
43 "category": "new",
44 "text": "Bento Grid block with 3 layout presets and per-cell image support"
45 },
46 {
47 "id": "i2",
48 "category": "new",
49 "text": "Media & Text Rows block — alternating image-text sections"
50 },
51 {
52 "id": "i3",
53 "category": "improved",
54 "text": "Stats Counter now supports prefix and per-item colour overrides"
55 }
56 ]
57 },
58 {
59 "id": "e2",
60 "version": "2.3.0",
61 "date": "Jan 2026",
62 "badge": "",
63 "items": [
64 {
65 "id": "i4",
66 "category": "new",
67 "text": "Kanban Board block with drag-and-drop preview"
68 },
69 {
70 "id": "i5",
71 "category": "fixed",
72 "text": "Logo Carousel no longer flickers on Safari 17"
73 },
74 {
75 "id": "i6",
76 "category": "improved",
77 "text": "Hero Section gains gradient overlay controls"
78 }
79 ]
80 },
81 {
82 "id": "e3",
83 "version": "2.2.0",
84 "date": "Dec 2025",
85 "badge": "",
86 "items": [
87 {
88 "id": "i7",
89 "category": "deprecated",
90 "text": "Legacy \\\"simple-cta\\\" shortcode — use Call to Action block instead"
91 },
92 {
93 "id": "i8",
94 "category": "fixed",
95 "text": "Reading Progress bar z-index conflict with sticky headers"
96 }
97 ]
98 }
99 ]
100 },
101 "sectionTitle": {
102 "type": "string",
103 "default": "What's new"
104 },
105 "showTitle": {
106 "type": "boolean",
107 "default": true
108 },
109 "layout": {
110 "type": "string",
111 "default": "timeline"
112 },
113 "showDate": {
114 "type": "boolean",
115 "default": true
116 },
117 "showBadge": {
118 "type": "boolean",
119 "default": true
120 },
121 "maxWidth": {
122 "type": "number",
123 "default": 760
124 },
125 "connectorColor": {
126 "type": "string",
127 "default": "#e5e7eb"
128 },
129 "versionBadgeBg": {
130 "type": "string",
131 "default": "#6c3fb5"
132 },
133 "versionBadgeColor": {
134 "type": "string",
135 "default": "#ffffff"
136 },
137 "titleSize": {
138 "type": "number",
139 "default": 36
140 },
141 "versionSize": {
142 "type": "number",
143 "default": 20
144 },
145 "itemSize": {
146 "type": "number",
147 "default": 15
148 },
149 "dateSize": {
150 "type": "number",
151 "default": 13
152 },
153 "versionColor": {
154 "type": "string",
155 "default": "#111827"
156 },
157 "dateColor": {
158 "type": "string",
159 "default": "#6b7280"
160 },
161 "itemColor": {
162 "type": "string",
163 "default": "#374151"
164 },
165 "newColor": {
166 "type": "string",
167 "default": "#10b981"
168 },
169 "improvedColor": {
170 "type": "string",
171 "default": "#3b82f6"
172 },
173 "fixedColor": {
174 "type": "string",
175 "default": "#8b5cf6"
176 },
177 "deprecatedColor": {
178 "type": "string",
179 "default": "#f59e0b"
180 },
181 "removedColor": {
182 "type": "string",
183 "default": "#ef4444"
184 },
185 "bgColor": {
186 "type": "string",
187 "default": ""
188 },
189 "paddingTop": {
190 "type": "number",
191 "default": 48
192 },
193 "paddingBottom": {
194 "type": "number",
195 "default": 48
196 },
197 "titleFontWeight": {
198 "type": "string",
199 "default": "800"
200 },
201 "titleLineHeight": {
202 "type": "number",
203 "default": 1.2
204 },
205 "versionFontWeight": {
206 "type": "string",
207 "default": "700"
208 },
209 "itemFontWeight": {
210 "type": "string",
211 "default": "400"
212 },
213 "itemLineHeight": {
214 "type": "number",
215 "default": 1.6
216 },
217 "typoTitle": { "type": "object", "default": {} },
218 "typoVersion": { "type": "object", "default": {} },
219 "typoItem": { "type": "object", "default": {} },
220 "typoDate": { "type": "object", "default": {} },
221 "typoBadge": { "type": "object", "default": {} }
222 }
223 }
224