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

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

190 lines 5.0 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/feature-grid",
5 "version": "1.0.0",
6 "title": "Feature Grid",
7 "category": "bkbg-marketing",
8 "icon": "grid-view",
9 "description": "Responsive grid of feature cards — each with an icon, title, text, and optional link. Perfect for services, benefits, and product highlights.",
10 "keywords": [
11 "feature",
12 "grid",
13 "icon",
14 "cards",
15 "services",
16 "benefits"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-feature-grid-editor",
20 "style": "bkbg-feature-grid-style",
21 "viewScript": "bkbg-feature-grid-frontend",
22 "attributes": {
23 "items": {
24 "type": "array",
25 "default": [
26 {
27 "iconType": "emoji",
28 "iconChar": "🚀",
29 "iconDashicon": "star-filled",
30 "title": "Fast Performance",
31 "text": "Optimized for speed from the ground up — your visitors get results instantly.",
32 "linkLabel": "",
33 "linkUrl": "",
34 "linkTarget": false
35 },
36 {
37 "iconType": "emoji",
38 "iconChar": "🎨",
39 "iconDashicon": "admin-appearance",
40 "title": "Beautiful Design",
41 "text": "Pixel-perfect components that look great on every device and screen size.",
42 "linkLabel": "",
43 "linkUrl": "",
44 "linkTarget": false
45 },
46 {
47 "iconType": "emoji",
48 "iconChar": "🔒",
49 "iconDashicon": "shield",
50 "title": "Secure & Reliable",
51 "text": "Built with security best practices so you can focus on what matters most.",
52 "linkLabel": "",
53 "linkUrl": "",
54 "linkTarget": false
55 }
56 ],
57 "items": {
58 "type": "object"
59 }
60 },
61 "columns": {
62 "type": "number",
63 "default": 3
64 },
65 "columnsTablet": {
66 "type": "number",
67 "default": 2
68 },
69 "columnsMobile": {
70 "type": "number",
71 "default": 1
72 },
73 "gap": {
74 "type": "number",
75 "default": 24
76 },
77 "cardStyle": {
78 "type": "string",
79 "default": "shadow"
80 },
81 "iconPosition": {
82 "type": "string",
83 "default": "top"
84 },
85 "iconShape": {
86 "type": "string",
87 "default": "circle"
88 },
89 "iconSize": {
90 "type": "number",
91 "default": 42
92 },
93 "iconShapeSize": {
94 "type": "number",
95 "default": 72
96 },
97 "textAlign": {
98 "type": "string",
99 "default": "center"
100 },
101 "cardPadding": {
102 "type": "number",
103 "default": 32
104 },
105 "borderRadius": {
106 "type": "number",
107 "default": 12
108 },
109 "titleSize": {
110 "type": "number",
111 "default": 18
112 },
113 "titleWeight": {
114 "type": "string",
115 "default": "700"
116 },
117 "textSize": {
118 "type": "number",
119 "default": 14
120 },
121 "linkSize": {
122 "type": "number",
123 "default": 14
124 },
125 "typoTitle": {
126 "type": "object",
127 "default": {}
128 },
129 "typoText": {
130 "type": "object",
131 "default": {}
132 },
133 "typoLink": {
134 "type": "object",
135 "default": {}
136 },
137 "iconColor": {
138 "type": "string",
139 "default": "#3b82f6"
140 },
141 "iconBg": {
142 "type": "string",
143 "default": "#eff6ff"
144 },
145 "titleColor": {
146 "type": "string",
147 "default": "#111827"
148 },
149 "textColor": {
150 "type": "string",
151 "default": "#6b7280"
152 },
153 "linkColor": {
154 "type": "string",
155 "default": "#3b82f6"
156 },
157 "cardBg": {
158 "type": "string",
159 "default": "#ffffff"
160 },
161 "cardBorderColor": {
162 "type": "string",
163 "default": "#e5e7eb"
164 },
165 "cardShadow": {
166 "type": "string",
167 "default": "md"
168 },
169 "hoverEffect": {
170 "type": "string",
171 "default": "lift"
172 },
173 "animate": {
174 "type": "boolean",
175 "default": true
176 }
177 },
178 "supports": {
179 "html": false,
180 "align": [
181 "wide",
182 "full"
183 ],
184 "spacing": {
185 "margin": true,
186 "padding": true
187 }
188 }
189 }
190