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

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

213 lines 6.6 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/event-speaker",
5 "version": "1.0.0",
6 "title": "Event Speakers",
7 "category": "bkbg-business",
8 "icon": "groups",
9 "description": "Showcase event or conference speakers with bios, session info, and social links.",
10 "keywords": [
11 "speaker",
12 "event",
13 "conference",
14 "bio",
15 "presenter",
16 "lineup",
17 "meetup"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-event-speaker-editor",
21 "editorStyle": "bkbg-event-speaker-style",
22 "style": "bkbg-event-speaker-style",
23 "viewScript": "bkbg-event-speaker-frontend",
24 "supports": {
25 "html": false,
26 "anchor": true,
27 "className": true,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "eventTitle": {
35 "type": "string",
36 "default": "Speaker Lineup"
37 },
38 "eventSubtitle": {
39 "type": "string",
40 "default": "Meet the experts sharing their knowledge"
41 },
42 "showSubtitle": {
43 "type": "boolean",
44 "default": true
45 },
46 "layout": {
47 "type": "string",
48 "default": "grid"
49 },
50 "columns": {
51 "type": "number",
52 "default": 2
53 },
54 "showSession": {
55 "type": "boolean",
56 "default": true
57 },
58 "showBio": {
59 "type": "boolean",
60 "default": true
61 },
62 "showTwitter": {
63 "type": "boolean",
64 "default": true
65 },
66 "speakers": {
67 "type": "array",
68 "default": [
69 {
70 "name": "Dr. Amara Johnson",
71 "title": "Principal Engineer",
72 "company": "Vercel",
73 "bio": "Amara has spent 12 years building scalable frontend infrastructure. She leads the Edge Runtime team and is a core contributor to React Server Components.",
74 "session": "The Future of React Server Components",
75 "sessionTime": "10:00 AM – 10:45 AM",
76 "avatarInitials": "AJ",
77 "avatarBg": "#6366f1",
78 "twitterHandle": "@amaraj_dev"
79 },
80 {
81 "name": "Carlos Mendes",
82 "title": "Staff Software Engineer",
83 "company": "Stripe",
84 "bio": "Carlos specializes in distributed systems and API design. He built Stripe's idempotency layer and writes about concurrency patterns on his popular blog.",
85 "session": "Idempotency at Scale: Lessons from Stripe",
86 "sessionTime": "11:00 AM – 11:45 AM",
87 "avatarInitials": "CM",
88 "avatarBg": "#0ea5e9",
89 "twitterHandle": "@carlosmendes_io"
90 },
91 {
92 "name": "Yuki Tanaka",
93 "title": "DevRel Lead",
94 "company": "PlanetScale",
95 "bio": "Yuki bridges the gap between engineering and developer community. She created the popular 'DB for Devs' YouTube series with over 200k subscribers.",
96 "session": "Branching Databases for Zero-Downtime Deploys",
97 "sessionTime": "2:00 PM – 2:45 PM",
98 "avatarInitials": "YT",
99 "avatarBg": "#f59e0b",
100 "twitterHandle": "@yukitanaka_dev"
101 },
102 {
103 "name": "Marcus Webb",
104 "title": "Senior Architect",
105 "company": "Cloudflare",
106 "bio": "Marcus designs globally distributed systems at the edge. His work on Workers KV has powered millions of real-time applications around the world.",
107 "session": "Edge-First Architecture Patterns",
108 "sessionTime": "3:00 PM – 3:45 PM",
109 "avatarInitials": "MW",
110 "avatarBg": "#22c55e",
111 "twitterHandle": "@marcuswebb_cf"
112 }
113 ]
114 },
115 "titleFontSize": {
116 "type": "number",
117 "default": 26
118 },
119 "subtitleFontSize": {
120 "type": "number",
121 "default": 16
122 },
123 "nameFontSize": {
124 "type": "number",
125 "default": 18
126 },
127 "fontSize": {
128 "type": "number",
129 "default": 14
130 },
131 "lineHeight": {
132 "type": "number",
133 "default": 165
134 },
135 "borderRadius": {
136 "type": "number",
137 "default": 16
138 },
139 "avatarSize": {
140 "type": "number",
141 "default": 64
142 },
143 "bgColor": {
144 "type": "string",
145 "default": "#f8fafc"
146 },
147 "headerBgColor": {
148 "type": "string",
149 "default": "#ffffff"
150 },
151 "borderColor": {
152 "type": "string",
153 "default": "#e2e8f0"
154 },
155 "titleColor": {
156 "type": "string",
157 "default": "#0f172a"
158 },
159 "subtitleColor": {
160 "type": "string",
161 "default": "#64748b"
162 },
163 "cardBgColor": {
164 "type": "string",
165 "default": "#ffffff"
166 },
167 "cardBorderColor": {
168 "type": "string",
169 "default": "#e2e8f0"
170 },
171 "nameColor": {
172 "type": "string",
173 "default": "#0f172a"
174 },
175 "jobTitleColor": {
176 "type": "string",
177 "default": "#6366f1"
178 },
179 "companyColor": {
180 "type": "string",
181 "default": "#64748b"
182 },
183 "bioColor": {
184 "type": "string",
185 "default": "#374151"
186 },
187 "sessionBg": {
188 "type": "string",
189 "default": "#f0f9ff"
190 },
191 "sessionBorderColor": {
192 "type": "string",
193 "default": "#bae6fd"
194 },
195 "sessionTitleColor": {
196 "type": "string",
197 "default": "#0c4a6e"
198 },
199 "sessionTimeColor": {
200 "type": "string",
201 "default": "#0369a1"
202 },
203 "twitterColor": {
204 "type": "string",
205 "default": "#0ea5e9"
206 },
207 "typoTitle": { "type": "object", "default": {} },
208 "typoSubtitle": { "type": "object", "default": {} },
209 "typoName": { "type": "object", "default": {} },
210 "typoBody": { "type": "object", "default": {} }
211 }
212 }
213