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

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

229 lines 6.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/onboarding-steps",
5 "version": "1.0.0",
6 "title": "Onboarding Steps",
7 "category": "bkbg-business",
8 "icon": "list-view",
9 "description": "Step-by-step getting started / onboarding section for SaaS products, courses, and services. Numbered steps with icons, descriptions, and optional CTAs.",
10 "keywords": [
11 "onboarding",
12 "getting started",
13 "steps",
14 "guide",
15 "setup",
16 "tutorial"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-onboarding-steps-editor",
20 "style": "bkbg-onboarding-steps-style",
21 "viewScript": "bkbg-onboarding-steps-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "eyebrow": {
31 "type": "string",
32 "default": "Get Started"
33 },
34 "heading": {
35 "type": "string",
36 "default": "Up and Running in Minutes"
37 },
38 "subtext": {
39 "type": "string",
40 "default": "Follow these simple steps to get your account set up and start seeing results right away."
41 },
42 "steps": {
43 "type": "array",
44 "default": [
45 {
46 "number": "01",
47 "icon": "\ud83d\udd11",
48 "iconType": "custom-char",
49 "iconDashicon": "",
50 "iconImageUrl": "",
51 "title": "Create Your Account",
52 "description": "Sign up in under 60 seconds \u2014 no credit card required. Just your name and email.",
53 "ctaLabel": "Sign Up Free",
54 "ctaUrl": "#"
55 },
56 {
57 "number": "02",
58 "icon": "\u2699\ufe0f",
59 "iconType": "custom-char",
60 "iconDashicon": "",
61 "iconImageUrl": "",
62 "title": "Configure Your Settings",
63 "description": "Customize the platform to match your workflow. Import your existing data or start fresh.",
64 "ctaLabel": "",
65 "ctaUrl": ""
66 },
67 {
68 "number": "03",
69 "icon": "\ud83d\ude80",
70 "iconType": "custom-char",
71 "iconDashicon": "",
72 "iconImageUrl": "",
73 "title": "Launch and Grow",
74 "description": "Go live with confidence. Our team is here to support you every step of the way.",
75 "ctaLabel": "View Docs",
76 "ctaUrl": "#"
77 }
78 ]
79 },
80 "layout": {
81 "type": "string",
82 "default": "horizontal"
83 },
84 "showNumbers": {
85 "type": "boolean",
86 "default": true
87 },
88 "showIcons": {
89 "type": "boolean",
90 "default": true
91 },
92 "showStepCtas": {
93 "type": "boolean",
94 "default": false
95 },
96 "connectorStyle": {
97 "type": "string",
98 "default": "line"
99 },
100 "mainCtaLabel": {
101 "type": "string",
102 "default": "Start for Free"
103 },
104 "mainCtaUrl": {
105 "type": "string",
106 "default": "#"
107 },
108 "showMainCta": {
109 "type": "boolean",
110 "default": true
111 },
112 "bgColor": {
113 "type": "string",
114 "default": "#ffffff"
115 },
116 "headingColor": {
117 "type": "string",
118 "default": "#111827"
119 },
120 "subColor": {
121 "type": "string",
122 "default": "#6b7280"
123 },
124 "eyebrowColor": {
125 "type": "string",
126 "default": "#6366f1"
127 },
128 "stepNumBg": {
129 "type": "string",
130 "default": "#6366f1"
131 },
132 "stepNumColor": {
133 "type": "string",
134 "default": "#ffffff"
135 },
136 "stepTitleColor": {
137 "type": "string",
138 "default": "#111827"
139 },
140 "stepDescColor": {
141 "type": "string",
142 "default": "#6b7280"
143 },
144 "connectorColor": {
145 "type": "string",
146 "default": "#e5e7eb"
147 },
148 "cardBg": {
149 "type": "string",
150 "default": "#f9fafb"
151 },
152 "ctaBg": {
153 "type": "string",
154 "default": "#6366f1"
155 },
156 "ctaColor": {
157 "type": "string",
158 "default": "#ffffff"
159 },
160 "accentColor": {
161 "type": "string",
162 "default": "#6366f1"
163 },
164 "maxWidth": {
165 "type": "number",
166 "default": 1000
167 },
168 "paddingTop": {
169 "type": "number",
170 "default": 80
171 },
172 "paddingBottom": {
173 "type": "number",
174 "default": 80
175 },
176 "headingFontSize": {
177 "type": "number",
178 "default": 34
179 },
180 "headingFontWeight": {
181 "type": "string",
182 "default": "700"
183 },
184 "subtextFontSize": {
185 "type": "number",
186 "default": 18
187 },
188 "eyebrowFontSize": {
189 "type": "number",
190 "default": 13
191 },
192 "stepTitleFontSize": {
193 "type": "number",
194 "default": 18
195 },
196 "stepTitleFontWeight": {
197 "type": "string",
198 "default": "700"
199 },
200 "stepDescFontSize": {
201 "type": "number",
202 "default": 14
203 },
204 "stepDescLineHeight": {
205 "type": "number",
206 "default": 1.6
207 },
208 "headingTypo": {
209 "type": "object",
210 "default": {}
211 },
212 "subtextTypo": {
213 "type": "object",
214 "default": {}
215 },
216 "eyebrowTypo": {
217 "type": "object",
218 "default": {}
219 },
220 "stepTitleTypo": {
221 "type": "object",
222 "default": {}
223 },
224 "stepDescTypo": {
225 "type": "object",
226 "default": {}
227 }
228 }
229 }