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

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

206 lines 5.5 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/event-recap",
5 "title": "Event Recap",
6 "description": "Post-event summary with key stats, highlights and next event info.",
7 "category": "bkbg-blog",
8 "icon": "calendar-alt",
9 "keywords": [
10 "event",
11 "recap",
12 "conference",
13 "summary",
14 "highlights",
15 "stats"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-event-recap-editor",
19 "style": "bkbg-event-recap-style",
20 "viewScript": "bkbg-event-recap-frontend",
21 "supports": {
22 "html": false,
23 "align": [
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "eventName": {
30 "type": "string",
31 "default": "Event Name 2026"
32 },
33 "eventDate": {
34 "type": "string",
35 "default": ""
36 },
37 "eventLocation": {
38 "type": "string",
39 "default": ""
40 },
41 "showMeta": {
42 "type": "boolean",
43 "default": true
44 },
45 "summary": {
46 "type": "string",
47 "default": ""
48 },
49 "showSummary": {
50 "type": "boolean",
51 "default": true
52 },
53 "stats": {
54 "type": "array",
55 "default": [
56 {
57 "number": "5,000+",
58 "label": "Attendees"
59 },
60 {
61 "number": "120",
62 "label": "Sessions"
63 },
64 {
65 "number": "80",
66 "label": "Speakers"
67 },
68 {
69 "number": "40",
70 "label": "Countries"
71 }
72 ]
73 },
74 "showStats": {
75 "type": "boolean",
76 "default": true
77 },
78 "highlights": {
79 "type": "array",
80 "default": [
81 {
82 "icon": "🎤",
83 "text": "Opening keynote by industry leaders",
84 "iconType": "custom-char",
85 "iconDashicon": "",
86 "iconImageUrl": ""
87 },
88 {
89 "icon": "🏆",
90 "text": "Announced key product launch",
91 "iconType": "custom-char",
92 "iconDashicon": "",
93 "iconImageUrl": ""
94 },
95 {
96 "icon": "🤝",
97 "text": "1,200+ networking meetings held",
98 "iconType": "custom-char",
99 "iconDashicon": "",
100 "iconImageUrl": ""
101 }
102 ]
103 },
104 "showHighlights": {
105 "type": "boolean",
106 "default": true
107 },
108 "highlightsLabel": {
109 "type": "string",
110 "default": "Key Highlights"
111 },
112 "nextEventInfo": {
113 "type": "string",
114 "default": ""
115 },
116 "showNextEvent": {
117 "type": "boolean",
118 "default": true
119 },
120 "bgColor": {
121 "type": "string",
122 "default": "#f8fafc"
123 },
124 "borderColor": {
125 "type": "string",
126 "default": "#e2e8f0"
127 },
128 "accentColor": {
129 "type": "string",
130 "default": "#7c3aed"
131 },
132 "headerBg": {
133 "type": "string",
134 "default": "#7c3aed"
135 },
136 "headerTextColor": {
137 "type": "string",
138 "default": "#ffffff"
139 },
140 "titleColor": {
141 "type": "string",
142 "default": "#ffffff"
143 },
144 "metaColor": {
145 "type": "string",
146 "default": "#ddd6fe"
147 },
148 "summaryColor": {
149 "type": "string",
150 "default": "#374151"
151 },
152 "statsBg": {
153 "type": "string",
154 "default": "#7c3aed"
155 },
156 "statNumColor": {
157 "type": "string",
158 "default": "#ffffff"
159 },
160 "statLabelColor": {
161 "type": "string",
162 "default": "#ddd6fe"
163 },
164 "highlightColor": {
165 "type": "string",
166 "default": "#374151"
167 },
168 "highlightBg": {
169 "type": "string",
170 "default": "#ffffff"
171 },
172 "highlightBorder": {
173 "type": "string",
174 "default": "#e2e8f0"
175 },
176 "nextBg": {
177 "type": "string",
178 "default": "#ede9fe"
179 },
180 "nextTextColor": {
181 "type": "string",
182 "default": "#5b21b6"
183 },
184 "borderRadius": {
185 "type": "number",
186 "default": 12
187 },
188 "paddingTop": {
189 "type": "number",
190 "default": 0
191 },
192 "paddingBottom": {
193 "type": "number",
194 "default": 0
195 },
196 "eventNameFontSize": { "type": "number", "default": 26 },
197 "eventNameFontWeight": { "type": "string", "default": "800" },
198 "eventNameLineHeight": { "type": "number", "default": 1.2 },
199 "summaryFontSize": { "type": "number", "default": 15 },
200 "summaryFontWeight": { "type": "string", "default": "400" },
201 "summaryLineHeight": { "type": "number", "default": 1.7 },
202 "typoTitle": { "type": "object", "default": {} },
203 "typoSummary": { "type": "object", "default": {} }
204 }
205 }
206