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

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

182 lines 3.8 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/step-cards",
5 "title": "Step Cards",
6 "category": "bkbg-business",
7 "icon": "list-ul",
8 "description": "Process steps as cards with large sequential numbers, icons, titles, descriptions, and connector lines.",
9 "keywords": [
10 "steps",
11 "process",
12 "how it works",
13 "numbered",
14 "workflow",
15 "cards",
16 "sequence"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-step-cards-editor",
20 "editorStyle": "bkbg-step-cards-style",
21 "style": "bkbg-step-cards-style",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "steps": {
33 "type": "array",
34 "default": [
35 {
36 "id": "s1",
37 "icon": "edit",
38 "title": "Create Account",
39 "body": "Sign up in seconds. No credit card required to get started with our free plan."
40 },
41 {
42 "id": "s2",
43 "icon": "admin-customizer",
44 "title": "Configure Your Setup",
45 "body": "Follow our simple setup wizard to tailor the experience to your specific needs."
46 },
47 {
48 "id": "s3",
49 "icon": "update",
50 "title": "Connect Your Tools",
51 "body": "Integrate with your existing stack in one click. We support 200+ popular services."
52 },
53 {
54 "id": "s4",
55 "icon": "chart-line",
56 "title": "See Results",
57 "body": "Watch your metrics improve from day one. Most users see impact within 48 hours."
58 }
59 ]
60 },
61 "layout": {
62 "type": "string",
63 "default": "horizontal"
64 },
65 "columns": {
66 "type": "number",
67 "default": 4
68 },
69 "cardStyle": {
70 "type": "string",
71 "default": "card"
72 },
73 "numberStyle": {
74 "type": "string",
75 "default": "circle"
76 },
77 "showConnector": {
78 "type": "boolean",
79 "default": true
80 },
81 "showIcon": {
82 "type": "boolean",
83 "default": true
84 },
85 "iconPosition": {
86 "type": "string",
87 "default": "number-only"
88 },
89 "gap": {
90 "type": "number",
91 "default": 24
92 },
93 "cardPadding": {
94 "type": "number",
95 "default": 28
96 },
97 "cardRadius": {
98 "type": "number",
99 "default": 16
100 },
101 "numberSize": {
102 "type": "number",
103 "default": 44
104 },
105 "iconSize": {
106 "type": "number",
107 "default": 22
108 },
109 "titleSize": {
110 "type": "number",
111 "default": 18
112 },
113 "titleWeight": {
114 "type": "number",
115 "default": 700
116 },
117 "bodySize": {
118 "type": "number",
119 "default": 14
120 },
121 "paddingTop": {
122 "type": "number",
123 "default": 0
124 },
125 "paddingBottom": {
126 "type": "number",
127 "default": 0
128 },
129 "numberBg": {
130 "type": "string",
131 "default": "#6c3fb5"
132 },
133 "numberColor": {
134 "type": "string",
135 "default": "#ffffff"
136 },
137 "connectorColor": {
138 "type": "string",
139 "default": "#e2e8f0"
140 },
141 "accentColor": {
142 "type": "string",
143 "default": "#6c3fb5"
144 },
145 "titleColor": {
146 "type": "string",
147 "default": "#0f172a"
148 },
149 "bodyColor": {
150 "type": "string",
151 "default": "#64748b"
152 },
153 "cardBg": {
154 "type": "string",
155 "default": "#ffffff"
156 },
157 "cardBorder": {
158 "type": "string",
159 "default": "#e2e8f0"
160 },
161 "iconColor": {
162 "type": "string",
163 "default": "#6c3fb5"
164 },
165 "titleLineHeight": {
166 "type": "number",
167 "default": 1.3
168 },
169 "bodyLineHeight": {
170 "type": "number",
171 "default": 1.6
172 },
173 "titleTypo": {
174 "type": "object",
175 "default": {}
176 },
177 "bodyTypo": {
178 "type": "object",
179 "default": {}
180 }
181 }
182 }