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 / icon-list / block.json

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

202 lines 5.6 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/icon-list",
5 "title": "Icon List",
6 "description": "A rich feature list with custom icons, badges, titles, and descriptions per row. Ideal for showcasing product features, service benefits, or any structured list with visual flair.",
7 "category": "bkbg-content",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-icon-list-editor",
10 "style": "bkbg-icon-list-style",
11 "viewScript": "bkbg-icon-list-frontend",
12 "icon": "list-view",
13 "supports": {
14 "html": false,
15 "anchor": true,
16 "className": true,
17 "align": [
18 "wide",
19 "full"
20 ]
21 },
22 "attributes": {
23 "heading": {
24 "type": "string",
25 "default": "Why Choose Us"
26 },
27 "showHeading": {
28 "type": "boolean",
29 "default": true
30 },
31 "subtext": {
32 "type": "string",
33 "default": ""
34 },
35 "showSubtext": {
36 "type": "boolean",
37 "default": false
38 },
39 "items": {
40 "type": "array",
41 "default": [
42 {
43 "icon": "",
44 "iconType": "custom-char",
45 "iconDashicon": "",
46 "iconImageUrl": "",
47 "title": "Lightning Fast",
48 "description": "Optimised for performance, delivering sub-second load times and a smooth user experience.",
49 "badge": "Speed",
50 "iconColor": ""
51 },
52 {
53 "icon": "🔒",
54 "iconType": "custom-char",
55 "iconDashicon": "",
56 "iconImageUrl": "",
57 "title": "Enterprise Security",
58 "description": "End-to-end encryption and SOC 2 compliance keep your data safe at every step.",
59 "badge": "Security",
60 "iconColor": ""
61 },
62 {
63 "icon": "🌐",
64 "iconType": "custom-char",
65 "iconDashicon": "",
66 "iconImageUrl": "",
67 "title": "Global Infrastructure",
68 "description": "Servers in 20+ regions ensure your users enjoy low latency wherever they are.",
69 "badge": "Scale",
70 "iconColor": ""
71 },
72 {
73 "icon": "🛠",
74 "iconType": "custom-char",
75 "iconDashicon": "",
76 "iconImageUrl": "",
77 "title": "24/7 Expert Support",
78 "description": "Our team of specialists is available around the clock to help you succeed.",
79 "badge": "Support",
80 "iconColor": ""
81 }
82 ]
83 },
84 "layout": {
85 "type": "string",
86 "default": "list"
87 },
88 "columns": {
89 "type": "number",
90 "default": 2
91 },
92 "itemStyle": {
93 "type": "string",
94 "default": "boxed"
95 },
96 "showBadge": {
97 "type": "boolean",
98 "default": true
99 },
100 "showDesc": {
101 "type": "boolean",
102 "default": true
103 },
104 "showDivider": {
105 "type": "boolean",
106 "default": false
107 },
108 "bgColor": {
109 "type": "string",
110 "default": "#ffffff"
111 },
112 "itemBg": {
113 "type": "string",
114 "default": "#f9fafb"
115 },
116 "borderColor": {
117 "type": "string",
118 "default": "#e5e7eb"
119 },
120 "headingColor": {
121 "type": "string",
122 "default": "#111827"
123 },
124 "subtextColor": {
125 "type": "string",
126 "default": "#6b7280"
127 },
128 "titleColor": {
129 "type": "string",
130 "default": "#111827"
131 },
132 "descColor": {
133 "type": "string",
134 "default": "#6b7280"
135 },
136 "iconColor": {
137 "type": "string",
138 "default": "#7c3aed"
139 },
140 "badgeBg": {
141 "type": "string",
142 "default": "#ede9fe"
143 },
144 "badgeColor": {
145 "type": "string",
146 "default": "#7c3aed"
147 },
148 "dividerColor": {
149 "type": "string",
150 "default": "#e5e7eb"
151 },
152 "borderRadius": {
153 "type": "number",
154 "default": 10
155 },
156 "iconSize": {
157 "type": "number",
158 "default": 28
159 },
160 "headingSize": {
161 "type": "number",
162 "default": 32
163 },
164 "titleSize": {
165 "type": "number",
166 "default": 17
167 },
168 "descSize": {
169 "type": "number",
170 "default": 14
171 },
172 "headingTypo": {
173 "type": "object",
174 "default": {}
175 },
176 "titleTypo": {
177 "type": "object",
178 "default": {}
179 },
180 "descTypo": {
181 "type": "object",
182 "default": {}
183 },
184 "gap": {
185 "type": "number",
186 "default": 16
187 },
188 "maxWidth": {
189 "type": "number",
190 "default": 900
191 },
192 "paddingTop": {
193 "type": "number",
194 "default": 64
195 },
196 "paddingBottom": {
197 "type": "number",
198 "default": 64
199 }
200 }
201 }
202