PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / feature-columns / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/feature-columns/block.json

195 lines 5.2 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/feature-columns",
5 "title": "Feature Columns",
6 "category": "bkbg-marketing",
7 "icon": "columns",
8 "description": "Responsive 2–4 column feature grid with icon, title, and description. Multiple icon and visual styles.",
9 "keywords": [
10 "features",
11 "columns",
12 "icons",
13 "benefits",
14 "grid",
15 "services",
16 "why us"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-feature-columns-editor",
20 "editorStyle": "bkbg-feature-columns-style",
21 "style": "bkbg-feature-columns-style",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "features": {
33 "type": "array",
34 "default": [
35 {
36 "id": "f1",
37 "icon": "performance",
38 "title": "Blazing Fast",
39 "body": "Optimized for speed from the ground up. Your users get instant results every time."
40 },
41 {
42 "id": "f2",
43 "icon": "shield",
44 "title": "Secure by Default",
45 "body": "Enterprise-grade security out of the box. No extra configuration required."
46 },
47 {
48 "id": "f3",
49 "icon": "admin-customizer",
50 "title": "Fully Flexible",
51 "body": "Customize every aspect to match your brand and workflow perfectly."
52 },
53 {
54 "id": "f4",
55 "icon": "heart",
56 "title": "Easy to Use",
57 "body": "Designed for humans. Get started in minutes with zero technical knowledge."
58 },
59 {
60 "id": "f5",
61 "icon": "networking",
62 "title": "Works Together",
63 "body": "Integrates seamlessly with the tools your team already loves and uses."
64 },
65 {
66 "id": "f6",
67 "icon": "chart-line",
68 "title": "Data-Driven",
69 "body": "Built-in analytics help you understand what's working and what isn't."
70 }
71 ]
72 },
73 "columns": {
74 "type": "number",
75 "default": 3
76 },
77 "style": {
78 "type": "string",
79 "default": "plain"
80 },
81 "iconStyle": {
82 "type": "string",
83 "default": "box"
84 },
85 "align": {
86 "type": "string",
87 "default": "left"
88 },
89 "showIcon": {
90 "type": "boolean",
91 "default": true
92 },
93 "showNumber": {
94 "type": "boolean",
95 "default": false
96 },
97 "iconSize": {
98 "type": "number",
99 "default": 24
100 },
101 "numberSize": {
102 "type": "number",
103 "default": 32
104 },
105 "gap": {
106 "type": "number",
107 "default": 32
108 },
109 "rowGap": {
110 "type": "number",
111 "default": 40
112 },
113 "titleSize": {
114 "type": "number",
115 "default": 17
116 },
117 "titleWeight": {
118 "type": "number",
119 "default": 700
120 },
121 "titleLineHeight": {
122 "type": "number",
123 "default": 1.3
124 },
125 "bodySize": {
126 "type": "number",
127 "default": 15
128 },
129 "bodyWeight": {
130 "type": "number",
131 "default": 400
132 },
133 "bodyLineHeight": {
134 "type": "number",
135 "default": 1.65
136 },
137 "typoTitle": {
138 "type": "object",
139 "default": {}
140 },
141 "typoBody": {
142 "type": "object",
143 "default": {}
144 },
145 "cardPadding": {
146 "type": "number",
147 "default": 24
148 },
149 "cardRadius": {
150 "type": "number",
151 "default": 12
152 },
153 "paddingTop": {
154 "type": "number",
155 "default": 0
156 },
157 "paddingBottom": {
158 "type": "number",
159 "default": 0
160 },
161 "iconColor": {
162 "type": "string",
163 "default": "#6c3fb5"
164 },
165 "iconBg": {
166 "type": "string",
167 "default": "#f0ebff"
168 },
169 "titleColor": {
170 "type": "string",
171 "default": "#0f172a"
172 },
173 "bodyColor": {
174 "type": "string",
175 "default": "#64748b"
176 },
177 "accentColor": {
178 "type": "string",
179 "default": "#6c3fb5"
180 },
181 "cardBg": {
182 "type": "string",
183 "default": "#ffffff"
184 },
185 "cardBorder": {
186 "type": "string",
187 "default": "#e2e8f0"
188 },
189 "numberColor": {
190 "type": "string",
191 "default": "#6c3fb5"
192 }
193 }
194 }
195