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

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

192 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/media-coverage",
5 "version": "1.0.0",
6 "title": "Media Coverage",
7 "category": "bkbg-business",
8 "icon": "megaphone",
9 "description": "\"As Featured In\" press section with publication logos, grayscale hover effects, and an optional featured pull quote from a specific outlet. Common on landing pages and about pages. Different from Logo Wall (general) and Trust Bar (security badges).",
10 "keywords": [
11 "press",
12 "media",
13 "featured",
14 "coverage",
15 "publications",
16 "logos",
17 "as seen in"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-media-coverage-editor",
21 "style": "bkbg-media-coverage-style",
22 "viewScript": "bkbg-media-coverage-frontend",
23 "supports": {
24 "html": false,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "eyebrow": {
32 "type": "string",
33 "default": "As Featured In"
34 },
35 "showEyebrow": {
36 "type": "boolean",
37 "default": true
38 },
39 "heading": {
40 "type": "string",
41 "default": "Trusted by leading publications worldwide"
42 },
43 "showHeading": {
44 "type": "boolean",
45 "default": false
46 },
47 "logos": {
48 "type": "array",
49 "default": [
50 {
51 "name": "Forbes",
52 "imageUrl": "",
53 "imageId": 0,
54 "url": "#"
55 },
56 {
57 "name": "TechCrunch",
58 "imageUrl": "",
59 "imageId": 0,
60 "url": "#"
61 },
62 {
63 "name": "The Guardian",
64 "imageUrl": "",
65 "imageId": 0,
66 "url": "#"
67 },
68 {
69 "name": "Wired",
70 "imageUrl": "",
71 "imageId": 0,
72 "url": "#"
73 },
74 {
75 "name": "Inc.",
76 "imageUrl": "",
77 "imageId": 0,
78 "url": "#"
79 }
80 ]
81 },
82 "grayscale": {
83 "type": "boolean",
84 "default": true
85 },
86 "grayscaleAmount": {
87 "type": "integer",
88 "default": 100
89 },
90 "logoHeight": {
91 "type": "integer",
92 "default": 36
93 },
94 "logosPerRow": {
95 "type": "integer",
96 "default": 5
97 },
98 "logoGap": {
99 "type": "integer",
100 "default": 48
101 },
102 "showFeaturedQuote": {
103 "type": "boolean",
104 "default": true
105 },
106 "featuredQuote": {
107 "type": "string",
108 "default": "\"This product completely changed the way we think about workflow. A genuine game-changer for modern teams.\""
109 },
110 "featuredPublication": {
111 "type": "string",
112 "default": "Forbes"
113 },
114 "featuredLink": {
115 "type": "string",
116 "default": "#"
117 },
118 "featuredLogoUrl": {
119 "type": "string",
120 "default": ""
121 },
122 "layout": {
123 "type": "string",
124 "default": "logos-quote"
125 },
126 "dividerStyle": {
127 "type": "string",
128 "default": "line"
129 },
130 "bgColor": {
131 "type": "string",
132 "default": "#ffffff"
133 },
134 "eyebrowColor": {
135 "type": "string",
136 "default": "#9ca3af"
137 },
138 "headingColor": {
139 "type": "string",
140 "default": "#111827"
141 },
142 "logoColor": {
143 "type": "string",
144 "default": "#9ca3af"
145 },
146 "logoHoverColor": {
147 "type": "string",
148 "default": "#374151"
149 },
150 "quoteBg": {
151 "type": "string",
152 "default": "#f9fafb"
153 },
154 "quoteColor": {
155 "type": "string",
156 "default": "#374151"
157 },
158 "quoteAccent": {
159 "type": "string",
160 "default": "#7c3aed"
161 },
162 "dividerColor": {
163 "type": "string",
164 "default": "#e5e7eb"
165 },
166 "eyebrowTypo": {
167 "type": "object",
168 "default": {}
169 },
170 "headingTypo": {
171 "type": "object",
172 "default": {}
173 },
174 "quoteTypo": {
175 "type": "object",
176 "default": {}
177 },
178 "maxWidth": {
179 "type": "integer",
180 "default": 1100
181 },
182 "paddingTop": {
183 "type": "integer",
184 "default": 64
185 },
186 "paddingBottom": {
187 "type": "integer",
188 "default": 64
189 }
190 }
191 }
192