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 / how-it-works / block.json

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

205 lines 5.4 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/how-it-works",
5 "version": "1.0.0",
6 "title": "How It Works",
7 "category": "bkbg-marketing",
8 "icon": "list-view",
9 "description": "Numbered process steps section — show a 3-6 step sequence with large step numbers, icons, titles, descriptions, and optional connectors. Perfect for onboarding flows and feature walkthroughs.",
10 "keywords": [
11 "how it works",
12 "steps",
13 "process",
14 "numbered",
15 "guide",
16 "workflow"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-how-it-works-editor",
20 "style": "bkbg-how-it-works-style",
21 "viewScript": "bkbg-how-it-works-frontend",
22 "attributes": {
23 "steps": {
24 "type": "array",
25 "default": [
26 {
27 "id": "s1",
28 "icon": "🎯",
29 "iconType": "custom-char",
30 "iconDashicon": "",
31 "iconImageUrl": "",
32 "title": "Define Your Goal",
33 "description": "Tell us what you want to achieve. The clearer your goal, the better the outcome for your project."
34 },
35 {
36 "id": "s2",
37 "icon": "⚙️",
38 "iconType": "custom-char",
39 "iconDashicon": "",
40 "iconImageUrl": "",
41 "title": "Configure & Customize",
42 "description": "Tailor every detail to match your brand. Colors, fonts, layouts — all under your control."
43 },
44 {
45 "id": "s3",
46 "icon": "🚀",
47 "iconType": "custom-char",
48 "iconDashicon": "",
49 "iconImageUrl": "",
50 "title": "Launch & Grow",
51 "description": "Go live with confidence. Our platform scales with you as your audience grows."
52 }
53 ],
54 "items": {
55 "type": "object"
56 }
57 },
58 "layout": {
59 "type": "string",
60 "default": "horizontal"
61 },
62 "numberStyle": {
63 "type": "string",
64 "default": "circle"
65 },
66 "showConnector": {
67 "type": "boolean",
68 "default": true
69 },
70 "connectorStyle": {
71 "type": "string",
72 "default": "line"
73 },
74 "showIcon": {
75 "type": "boolean",
76 "default": true
77 },
78 "iconPosition": {
79 "type": "string",
80 "default": "above-number"
81 },
82 "textAlign": {
83 "type": "string",
84 "default": "center"
85 },
86 "cardStyle": {
87 "type": "string",
88 "default": "plain"
89 },
90 "cardPadding": {
91 "type": "number",
92 "default": 28
93 },
94 "cardRadius": {
95 "type": "number",
96 "default": 12
97 },
98 "gap": {
99 "type": "number",
100 "default": 40
101 },
102 "numberSize": {
103 "type": "number",
104 "default": 22
105 },
106 "numberBgSize": {
107 "type": "number",
108 "default": 52
109 },
110 "iconSize": {
111 "type": "number",
112 "default": 36
113 },
114 "titleSize": {
115 "type": "number",
116 "default": 18
117 },
118 "titleFontWeight": {
119 "type": "string",
120 "default": "700"
121 },
122 "titleLineHeight": {
123 "type": "number",
124 "default": 1.3
125 },
126 "descSize": {
127 "type": "number",
128 "default": 14
129 },
130 "descFontWeight": {
131 "type": "string",
132 "default": "400"
133 },
134 "descLineHeight": {
135 "type": "number",
136 "default": 1.6
137 },
138 "numberBg": {
139 "type": "string",
140 "default": "#6c3fb5"
141 },
142 "numberColor": {
143 "type": "string",
144 "default": "#ffffff"
145 },
146 "connectorColor": {
147 "type": "string",
148 "default": "#e5e7eb"
149 },
150 "titleColor": {
151 "type": "string",
152 "default": "#111827"
153 },
154 "descColor": {
155 "type": "string",
156 "default": "#6b7280"
157 },
158 "cardBg": {
159 "type": "string",
160 "default": "#ffffff"
161 },
162 "cardBorderColor": {
163 "type": "string",
164 "default": "#e5e7eb"
165 },
166 "animate": {
167 "type": "boolean",
168 "default": true
169 },
170 "bgColor": {
171 "type": "string",
172 "default": ""
173 },
174 "paddingTop": {
175 "type": "number",
176 "default": 60
177 },
178 "paddingBottom": {
179 "type": "number",
180 "default": 60
181 },
182 "titleTypo": {
183 "type": "object",
184 "default": {}
185 },
186 "descTypo": {
187 "type": "object",
188 "default": {}
189 }
190 },
191 "supports": {
192 "html": false,
193 "anchor": true,
194 "className": true,
195 "align": [
196 "wide",
197 "full"
198 ],
199 "spacing": {
200 "margin": true,
201 "padding": true
202 }
203 }
204 }
205