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 / trust-bar / block.json

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

172 lines 4.4 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/trust-bar",
5 "title": "Trust Bar",
6 "category": "bkbg-marketing",
7 "icon": "shield",
8 "description": "A horizontal row of trust, security, and compliance badges — SOC 2, GDPR, SSL, uptime SLAs, etc. Different from Social Proof Bar (user counts) and Logo Wall (brand logos).",
9 "keywords": [
10 "trust",
11 "security",
12 "compliance",
13 "badges",
14 "certifications",
15 "gdpr",
16 "ssl",
17 "soc2",
18 "guarantee"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-trust-bar-editor",
22 "editorStyle": "bkbg-trust-bar-style",
23 "style": "bkbg-trust-bar-style",
24 "viewScript": "bkbg-trust-bar-frontend",
25 "supports": {
26 "html": false,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "items": {
34 "type": "array",
35 "default": [
36 {
37 "id": "t1",
38 "icon": "shield",
39 "label": "SOC 2 Certified",
40 "sublabel": "Type II audited",
41 "imageUrl": "",
42 "imageId": 0
43 },
44 {
45 "id": "t2",
46 "icon": "lock",
47 "label": "256-bit SSL",
48 "sublabel": "End-to-end encrypted",
49 "imageUrl": "",
50 "imageId": 0
51 },
52 {
53 "id": "t3",
54 "icon": "check",
55 "label": "GDPR Ready",
56 "sublabel": "EU data regulations",
57 "imageUrl": "",
58 "imageId": 0
59 },
60 {
61 "id": "t4",
62 "icon": "bolt",
63 "label": "99.9% Uptime",
64 "sublabel": "SLA guaranteed",
65 "imageUrl": "",
66 "imageId": 0
67 },
68 {
69 "id": "t5",
70 "icon": "headphones",
71 "label": "24/7 Support",
72 "sublabel": "Human, not bots",
73 "imageUrl": "",
74 "imageId": 0
75 }
76 ]
77 },
78 "layout": {
79 "type": "string",
80 "default": "row"
81 },
82 "itemStyle": {
83 "type": "string",
84 "default": "icon-top"
85 },
86 "cardStyle": {
87 "type": "string",
88 "default": "plain"
89 },
90 "showDivider": {
91 "type": "boolean",
92 "default": true
93 },
94 "showSublabel": {
95 "type": "boolean",
96 "default": true
97 },
98 "iconSize": {
99 "type": "number",
100 "default": 32
101 },
102 "iconBgSize": {
103 "type": "number",
104 "default": 56
105 },
106 "iconBgRadius": {
107 "type": "number",
108 "default": 50
109 },
110 "labelTypo": {
111 "type": "object",
112 "default": {}
113 },
114 "sublabelTypo": {
115 "type": "object",
116 "default": {}
117 },
118 "gap": {
119 "type": "number",
120 "default": 40
121 },
122 "cardRadius": {
123 "type": "number",
124 "default": 12
125 },
126 "cardPadding": {
127 "type": "number",
128 "default": 20
129 },
130 "textAlign": {
131 "type": "string",
132 "default": "center"
133 },
134 "iconColor": {
135 "type": "string",
136 "default": "#6c3fb5"
137 },
138 "iconBg": {
139 "type": "string",
140 "default": "#f5f0ff"
141 },
142 "labelColor": {
143 "type": "string",
144 "default": "#111827"
145 },
146 "sublabelColor": {
147 "type": "string",
148 "default": "#6b7280"
149 },
150 "dividerColor": {
151 "type": "string",
152 "default": "#e5e7eb"
153 },
154 "cardBg": {
155 "type": "string",
156 "default": "#ffffff"
157 },
158 "bgColor": {
159 "type": "string",
160 "default": ""
161 },
162 "paddingTop": {
163 "type": "number",
164 "default": 32
165 },
166 "paddingBottom": {
167 "type": "number",
168 "default": 32
169 }
170 }
171 }
172