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 / logo-wall / block.json

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

189 lines 4.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/logo-wall",
4 "title": "Logo Wall",
5 "category": "bkbg-marketing",
6 "icon": "grid-view",
7 "description": "Display a static grid of client or partner logos with hover effects, grayscale mode, and optional links.",
8 "keywords": [
9 "logo",
10 "client",
11 "partner",
12 "brand",
13 "grid",
14 "wall",
15 "sponsor"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-logo-wall-editor",
19 "editorStyle": "bkbg-logo-wall-style",
20 "style": "bkbg-logo-wall-style",
21 "viewScript": "bkbg-logo-wall-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "logos": {
31 "type": "array",
32 "default": [
33 {
34 "url": "",
35 "id": 0,
36 "alt": "Logo 1",
37 "name": "Client One",
38 "link": "",
39 "newTab": false
40 },
41 {
42 "url": "",
43 "id": 0,
44 "alt": "Logo 2",
45 "name": "Client Two",
46 "link": "",
47 "newTab": false
48 },
49 {
50 "url": "",
51 "id": 0,
52 "alt": "Logo 3",
53 "name": "Client Three",
54 "link": "",
55 "newTab": false
56 },
57 {
58 "url": "",
59 "id": 0,
60 "alt": "Logo 4",
61 "name": "Client Four",
62 "link": "",
63 "newTab": false
64 },
65 {
66 "url": "",
67 "id": 0,
68 "alt": "Logo 5",
69 "name": "Client Five",
70 "link": "",
71 "newTab": false
72 },
73 {
74 "url": "",
75 "id": 0,
76 "alt": "Logo 6",
77 "name": "Client Six",
78 "link": "",
79 "newTab": false
80 }
81 ]
82 },
83 "columns": {
84 "type": "number",
85 "default": 4
86 },
87 "logoHeight": {
88 "type": "number",
89 "default": 60
90 },
91 "gap": {
92 "type": "number",
93 "default": 24
94 },
95 "grayscale": {
96 "type": "boolean",
97 "default": true
98 },
99 "colorOnHover": {
100 "type": "boolean",
101 "default": true
102 },
103 "logoOpacity": {
104 "type": "number",
105 "default": 60
106 },
107 "hoverOpacity": {
108 "type": "number",
109 "default": 100
110 },
111 "hoverEffect": {
112 "type": "string",
113 "default": "lift"
114 },
115 "showName": {
116 "type": "boolean",
117 "default": false
118 },
119 "nameColor": {
120 "type": "string",
121 "default": "#374151"
122 },
123 "titleTypo": {
124 "type": "object",
125 "default": {}
126 },
127 "nameTypo": {
128 "type": "object",
129 "default": {}
130 },
131 "cardBg": {
132 "type": "string",
133 "default": "transparent"
134 },
135 "cardBgHover": {
136 "type": "string",
137 "default": "#f9fafb"
138 },
139 "cardRadius": {
140 "type": "number",
141 "default": 12
142 },
143 "cardPadding": {
144 "type": "number",
145 "default": 24
146 },
147 "showBorder": {
148 "type": "boolean",
149 "default": true
150 },
151 "borderColor": {
152 "type": "string",
153 "default": "#e5e7eb"
154 },
155 "showShadow": {
156 "type": "boolean",
157 "default": false
158 },
159 "showDivider": {
160 "type": "boolean",
161 "default": false
162 },
163 "dividerColor": {
164 "type": "string",
165 "default": "#e5e7eb"
166 },
167 "showTitle": {
168 "type": "boolean",
169 "default": false
170 },
171 "title": {
172 "type": "string",
173 "default": "Trusted by"
174 },
175 "titleColor": {
176 "type": "string",
177 "default": "#6b7280"
178 },
179 "titleAlign": {
180 "type": "string",
181 "default": "center"
182 },
183 "itemAlign": {
184 "type": "string",
185 "default": "center"
186 }
187 }
188 }
189