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

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

195 lines 6.0 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/highlight-reel",
4 "title": "Highlight Reel",
5 "category": "bkbg-content",
6 "icon": "star-filled",
7 "description": "Grid of curated highlight cards — ideal for showcasing achievements, features, event moments, or key stats with icons and descriptions.",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-highlight-reel-editor",
10 "style": "bkbg-highlight-reel-style",
11 "attributes": {
12 "title": {
13 "type": "string",
14 "default": "Session Highlights"
15 },
16 "showTitle": {
17 "type": "boolean",
18 "default": true
19 },
20 "subtitle": {
21 "type": "string",
22 "default": "The best moments from our annual product summit"
23 },
24 "showSubtitle": {
25 "type": "boolean",
26 "default": true
27 },
28 "columns": {
29 "type": "number",
30 "default": 3
31 },
32 "showIcon": {
33 "type": "boolean",
34 "default": true
35 },
36 "showTag": {
37 "type": "boolean",
38 "default": true
39 },
40 "showDesc": {
41 "type": "boolean",
42 "default": true
43 },
44 "iconSize": {
45 "type": "number",
46 "default": 36
47 },
48 "borderRadius": {
49 "type": "number",
50 "default": 14
51 },
52 "cardPadding": {
53 "type": "number",
54 "default": 24
55 },
56 "fontSize": {
57 "type": "number",
58 "default": 14
59 },
60 "titleFontSize": {
61 "type": "number",
62 "default": 17
63 },
64 "titleFontWeight": {
65 "type": "string",
66 "default": "700"
67 },
68 "titleLineHeight": {
69 "type": "number",
70 "default": 1.3
71 },
72 "bodyFontWeight": {
73 "type": "string",
74 "default": "400"
75 },
76 "bodyLineHeight": {
77 "type": "number",
78 "default": 1.6
79 },
80 "accentLine": {
81 "type": "boolean",
82 "default": true
83 },
84 "accentHeight": {
85 "type": "number",
86 "default": 4
87 },
88 "bgColor": {
89 "type": "string",
90 "default": "#ffffff"
91 },
92 "cardBg": {
93 "type": "string",
94 "default": "#f9fafb"
95 },
96 "headingColor": {
97 "type": "string",
98 "default": "#111827"
99 },
100 "subtitleColor": {
101 "type": "string",
102 "default": "#6b7280"
103 },
104 "textColor": {
105 "type": "string",
106 "default": "#374151"
107 },
108 "tagBg": {
109 "type": "string",
110 "default": "#ede9fe"
111 },
112 "tagColor": {
113 "type": "string",
114 "default": "#6d28d9"
115 },
116 "items": {
117 "type": "array",
118 "default": [
119 {
120 "icon": "🚀",
121 "iconType": "custom-char",
122 "iconDashicon": "",
123 "iconImageUrl": "",
124 "accentColor": "#6366f1",
125 "tag": "Product",
126 "title": "5 Major Features Shipped",
127 "description": "We shipped our biggest release yet, including real-time collaboration, AI suggestions, and a redesigned dashboard."
128 },
129 {
130 "icon": "🤝",
131 "iconType": "custom-char",
132 "iconDashicon": "",
133 "iconImageUrl": "",
134 "accentColor": "#10b981",
135 "tag": "Partnerships",
136 "title": "3 Enterprise Deals Closed",
137 "description": "Signed partnerships with three Fortune 500 companies, opening up a new $2M ARR pipeline for Q2."
138 },
139 {
140 "icon": "🏆",
141 "iconType": "custom-char",
142 "iconDashicon": "",
143 "iconImageUrl": "",
144 "accentColor": "#f59e0b",
145 "tag": "Award",
146 "title": "Product of the Year",
147 "description": "Recognized by TechCrunch as a top innovator in the SaaS space for our AI-first approach."
148 },
149 {
150 "icon": "📈",
151 "iconType": "custom-char",
152 "iconDashicon": "",
153 "iconImageUrl": "",
154 "accentColor": "#ec4899",
155 "tag": "Growth",
156 "title": "40% MoM User Growth",
157 "description": "Consecutive record-breaking months fueled by word-of-mouth, community, and our new self-serve onboarding."
158 },
159 {
160 "icon": "🎓",
161 "iconType": "custom-char",
162 "iconDashicon": "",
163 "iconImageUrl": "",
164 "accentColor": "#14b8a6",
165 "tag": "Community",
166 "title": "10,000 Developers Trained",
167 "description": "Our developer education platform crossed 10K certified members across 48 countries."
168 },
169 {
170 "icon": "🌍",
171 "iconType": "custom-char",
172 "iconDashicon": "",
173 "iconImageUrl": "",
174 "accentColor": "#8b5cf6",
175 "tag": "Expansion",
176 "title": "Launched in 12 New Markets",
177 "description": "Global expansion enabled us to serve customers across Europe, Asia-Pacific, and Latin America."
178 }
179 ]
180 },
181 "typoHeading": {
182 "type": "object",
183 "default": {}
184 },
185 "typoCardTitle": {
186 "type": "object",
187 "default": {}
188 },
189 "typoBody": {
190 "type": "object",
191 "default": {}
192 }
193 }
194 }
195