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

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

182 lines 5.2 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/product-tour",
5 "version": "1.0.0",
6 "title": "Product Tour",
7 "category": "bkbg-marketing",
8 "icon": "slides",
9 "description": "An interactive product walkthrough with numbered steps, descriptions and screenshots. Tabs-style navigation — perfect for onboarding flows and feature showcases.",
10 "keywords": [
11 "product tour",
12 "walkthrough",
13 "tabs",
14 "steps",
15 "features",
16 "demo",
17 "tour"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-product-tour-editor",
21 "style": "bkbg-product-tour-style",
22 "viewScript": "bkbg-product-tour-frontend",
23 "supports": {
24 "html": false,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "steps": {
32 "type": "array",
33 "default": [
34 {
35 "id": "t1",
36 "icon": "🎯",
37 "iconType": "custom-char",
38 "iconDashicon": "",
39 "iconImageUrl": "",
40 "title": "Set up your workspace",
41 "description": "Create your account and configure your workspace in minutes. Import your existing data or start fresh — it's your choice.",
42 "imageUrl": "",
43 "imageId": 0,
44 "accentColor": "#6c3fb5"
45 },
46 {
47 "id": "t2",
48 "icon": "⚙️",
49 "iconType": "custom-char",
50 "iconDashicon": "",
51 "iconImageUrl": "",
52 "title": "Configure your settings",
53 "description": "Fine-tune every aspect to match your workflow. Set up team roles, integrations and automations without writing a single line of code.",
54 "imageUrl": "",
55 "imageId": 0,
56 "accentColor": "#0ea5e9"
57 },
58 {
59 "id": "t3",
60 "icon": "🚀",
61 "iconType": "custom-char",
62 "iconDashicon": "",
63 "iconImageUrl": "",
64 "title": "Launch and grow",
65 "description": "Go live with confidence. Monitor performance in real-time, iterate quickly and scale effortlessly as your team and business grow.",
66 "imageUrl": "",
67 "imageId": 0,
68 "accentColor": "#10b981"
69 }
70 ]
71 },
72 "layout": {
73 "type": "string",
74 "default": "tabs-left"
75 },
76 "sectionTitle": {
77 "type": "string",
78 "default": "How it works"
79 },
80 "sectionSubtitle": {
81 "type": "string",
82 "default": "Everything you need, step by step."
83 },
84 "showHeader": {
85 "type": "boolean",
86 "default": true
87 },
88 "headerAlign": {
89 "type": "string",
90 "default": "center"
91 },
92 "eyebrow": {
93 "type": "string",
94 "default": "Product Tour"
95 },
96 "showEyebrow": {
97 "type": "boolean",
98 "default": true
99 },
100 "imageRadius": {
101 "type": "number",
102 "default": 16
103 },
104 "imageShadow": {
105 "type": "boolean",
106 "default": true
107 },
108 "tabStyle": {
109 "type": "string",
110 "default": "numbered"
111 },
112 "paddingTop": {
113 "type": "number",
114 "default": 72
115 },
116 "paddingBottom": {
117 "type": "number",
118 "default": 72
119 },
120 "headerGap": {
121 "type": "number",
122 "default": 56
123 },
124 "sectionBg": {
125 "type": "string",
126 "default": ""
127 },
128 "tabActiveBg": {
129 "type": "string",
130 "default": "#f5f3ff"
131 },
132 "tabActiveBorder": {
133 "type": "string",
134 "default": "#6c3fb5"
135 },
136 "numberBg": {
137 "type": "string",
138 "default": "#6c3fb5"
139 },
140 "numberColor": {
141 "type": "string",
142 "default": "#ffffff"
143 },
144 "titleColor": {
145 "type": "string",
146 "default": "#1e293b"
147 },
148 "descColor": {
149 "type": "string",
150 "default": "#64748b"
151 },
152 "eyebrowBg": {
153 "type": "string",
154 "default": "#ede9fe"
155 },
156 "eyebrowColor": {
157 "type": "string",
158 "default": "#6c3fb5"
159 },
160 "sectionTitleColor": {
161 "type": "string",
162 "default": "#1e293b"
163 },
164 "sectionSubColor": {
165 "type": "string",
166 "default": "#64748b"
167 },
168 "sectionTitleTypo": {
169 "type": "object",
170 "default": {}
171 },
172 "sectionSubTypo": {
173 "type": "object",
174 "default": {}
175 },
176 "stepTitleTypo": {
177 "type": "object",
178 "default": {}
179 }
180 }
181 }
182