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

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

262 lines 7.7 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/tech-radar",
5 "version": "1.0.0",
6 "title": "Tech Radar",
7 "category": "bkbg-blog",
8 "icon": "chart-area",
9 "description": "A technology radar listing technologies by adoption ring and quadrant.",
10 "keywords": [
11 "tech",
12 "radar",
13 "technology",
14 "adopt",
15 "trial",
16 "assess",
17 "hold",
18 "stack"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-tech-radar-editor",
22 "editorStyle": "bkbg-tech-radar-style",
23 "style": "bkbg-tech-radar-style",
24 "viewScript": "bkbg-tech-radar-frontend",
25 "supports": {
26 "html": false,
27 "anchor": true,
28 "className": true,
29 "align": [
30 "wide",
31 "full"
32 ]
33 },
34 "attributes": {
35 "radarTitle": {
36 "type": "string",
37 "default": "Technology Radar"
38 },
39 "description": {
40 "type": "string",
41 "default": "Our current view of the technology landscape — what we're adopting, trialing, assessing, and holding."
42 },
43 "showDescription": {
44 "type": "boolean",
45 "default": true
46 },
47 "groupByQuadrant": {
48 "type": "boolean",
49 "default": false
50 },
51 "showIsNew": {
52 "type": "boolean",
53 "default": true
54 },
55 "blips": {
56 "type": "array",
57 "default": [
58 {
59 "name": "TypeScript",
60 "ring": "adopt",
61 "quadrant": "Languages & Frameworks",
62 "description": "Strongly typed JavaScript. We use it on all new projects.",
63 "isNew": false
64 },
65 {
66 "name": "React",
67 "ring": "adopt",
68 "quadrant": "Languages & Frameworks",
69 "description": "Our primary UI library for web applications.",
70 "isNew": false
71 },
72 {
73 "name": "Svelte",
74 "ring": "trial",
75 "quadrant": "Languages & Frameworks",
76 "description": "Lightweight compiler-based framework. Promising for smaller apps.",
77 "isNew": true
78 },
79 {
80 "name": "Bun",
81 "ring": "assess",
82 "quadrant": "Platforms",
83 "description": "Node.js alternative with promising performance gains.",
84 "isNew": true
85 },
86 {
87 "name": "Deno",
88 "ring": "assess",
89 "quadrant": "Platforms",
90 "description": "Emerging Node alternative. Watching ecosystem maturity.",
91 "isNew": false
92 },
93 {
94 "name": "Kubernetes",
95 "ring": "adopt",
96 "quadrant": "Platforms",
97 "description": "Production container orchestration for all major services.",
98 "isNew": false
99 },
100 {
101 "name": "Vite",
102 "ring": "adopt",
103 "quadrant": "Tools",
104 "description": "Fast frontend build tool. Replaced webpack on all projects.",
105 "isNew": false
106 },
107 {
108 "name": "Biome",
109 "ring": "trial",
110 "quadrant": "Tools",
111 "description": "Unified linter and formatter replacing ESLint + Prettier.",
112 "isNew": true
113 },
114 {
115 "name": "Storybook",
116 "ring": "adopt",
117 "quadrant": "Tools",
118 "description": "Used for component development and visual testing.",
119 "isNew": false
120 },
121 {
122 "name": "gRPC",
123 "ring": "trial",
124 "quadrant": "Techniques",
125 "description": "High-performance RPC for internal service communication.",
126 "isNew": false
127 },
128 {
129 "name": "Island Architecture",
130 "ring": "assess",
131 "quadrant": "Techniques",
132 "description": "Partial hydration pattern. Exploring via Astro.",
133 "isNew": true
134 },
135 {
136 "name": "Micro-frontends",
137 "ring": "hold",
138 "quadrant": "Techniques",
139 "description": "Complexity outweighs benefits for our team size.",
140 "isNew": false
141 }
142 ]
143 },
144 "titleTypo": {
145 "type": "object",
146 "default": {}
147 },
148 "fontSize": {
149 "type": "number",
150 "default": 14
151 },
152 "titleFontSize": {
153 "type": "number",
154 "default": 24
155 },
156 "ringLabelSize": {
157 "type": "number",
158 "default": 11
159 },
160 "blipNameSize": {
161 "type": "number",
162 "default": 14
163 },
164 "lineHeight": {
165 "type": "number",
166 "default": 160
167 },
168 "fontWeight": {
169 "type": "string",
170 "default": "400"
171 },
172 "borderRadius": {
173 "type": "number",
174 "default": 12
175 },
176 "bgColor": {
177 "type": "string",
178 "default": "#ffffff"
179 },
180 "borderColor": {
181 "type": "string",
182 "default": "#e5e7eb"
183 },
184 "titleColor": {
185 "type": "string",
186 "default": "#111827"
187 },
188 "descColor": {
189 "type": "string",
190 "default": "#6b7280"
191 },
192 "blipNameColor": {
193 "type": "string",
194 "default": "#1f2937"
195 },
196 "blipDescColor": {
197 "type": "string",
198 "default": "#6b7280"
199 },
200 "quadrantHeadColor": {
201 "type": "string",
202 "default": "#374151"
203 },
204 "newBadgeBg": {
205 "type": "string",
206 "default": "#fef9c3"
207 },
208 "newBadgeColor": {
209 "type": "string",
210 "default": "#713f12"
211 },
212 "adoptBg": {
213 "type": "string",
214 "default": "#dcfce7"
215 },
216 "adoptColor": {
217 "type": "string",
218 "default": "#14532d"
219 },
220 "adoptBorder": {
221 "type": "string",
222 "default": "#16a34a"
223 },
224 "trialBg": {
225 "type": "string",
226 "default": "#dbeafe"
227 },
228 "trialColor": {
229 "type": "string",
230 "default": "#1e40af"
231 },
232 "trialBorder": {
233 "type": "string",
234 "default": "#2563eb"
235 },
236 "assessBg": {
237 "type": "string",
238 "default": "#fef9c3"
239 },
240 "assessColor": {
241 "type": "string",
242 "default": "#713f12"
243 },
244 "assessBorder": {
245 "type": "string",
246 "default": "#d97706"
247 },
248 "holdBg": {
249 "type": "string",
250 "default": "#f3f4f6"
251 },
252 "holdColor": {
253 "type": "string",
254 "default": "#374151"
255 },
256 "holdBorder": {
257 "type": "string",
258 "default": "#9ca3af"
259 }
260 }
261 }
262