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

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

154 lines 3.8 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/logo-grid",
5 "version": "1.0.0",
6 "title": "Logo Grid",
7 "category": "bkbg-marketing",
8 "icon": "images-alt2",
9 "description": "A clean partner, client or 'as seen in' logo grid with optional label, grayscale effect, box backgrounds and multiple layouts.",
10 "keywords": [
11 "logos",
12 "partners",
13 "brands",
14 "press",
15 "featured",
16 "as seen in",
17 "clients"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-logo-grid-editor",
21 "style": "bkbg-logo-grid-style",
22 "viewScript": "bkbg-logo-grid-frontend",
23 "supports": {
24 "html": false,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "logos": {
32 "type": "array",
33 "default": [
34 {
35 "id": "l1",
36 "name": "Acme Corp",
37 "imageUrl": "",
38 "imageId": 0
39 },
40 {
41 "id": "l2",
42 "name": "TechCorp",
43 "imageUrl": "",
44 "imageId": 0
45 },
46 {
47 "id": "l3",
48 "name": "GlobalCo",
49 "imageUrl": "",
50 "imageId": 0
51 },
52 {
53 "id": "l4",
54 "name": "StartupInc",
55 "imageUrl": "",
56 "imageId": 0
57 },
58 {
59 "id": "l5",
60 "name": "BigBrand",
61 "imageUrl": "",
62 "imageId": 0
63 },
64 {
65 "id": "l6",
66 "name": "Partners",
67 "imageUrl": "",
68 "imageId": 0
69 }
70 ]
71 },
72 "label": {
73 "type": "string",
74 "default": "Trusted by leading companies"
75 },
76 "showLabel": {
77 "type": "boolean",
78 "default": true
79 },
80 "labelPosition": {
81 "type": "string",
82 "default": "top"
83 },
84 "layout": {
85 "type": "string",
86 "default": "flex-row"
87 },
88 "columns": {
89 "type": "number",
90 "default": 6
91 },
92 "gap": {
93 "type": "number",
94 "default": 32
95 },
96 "logoHeight": {
97 "type": "number",
98 "default": 36
99 },
100 "logoPadding": {
101 "type": "number",
102 "default": 20
103 },
104 "logoRadius": {
105 "type": "number",
106 "default": 10
107 },
108 "grayscale": {
109 "type": "boolean",
110 "default": true
111 },
112 "hoverColor": {
113 "type": "boolean",
114 "default": true
115 },
116 "showBox": {
117 "type": "boolean",
118 "default": true
119 },
120 "paddingTop": {
121 "type": "number",
122 "default": 48
123 },
124 "paddingBottom": {
125 "type": "number",
126 "default": 48
127 },
128 "sectionBg": {
129 "type": "string",
130 "default": ""
131 },
132 "labelColor": {
133 "type": "string",
134 "default": "#94a3b8"
135 },
136 "logoBg": {
137 "type": "string",
138 "default": "#f8fafc"
139 },
140 "logoBorder": {
141 "type": "string",
142 "default": "#e2e8f0"
143 },
144 "logoTint": {
145 "type": "string",
146 "default": "#94a3b8"
147 },
148 "labelTypo": {
149 "type": "object",
150 "default": {}
151 }
152 }
153 }
154