PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / roadmap / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/roadmap/block.json

131 lines 3.4 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/roadmap",
5 "title": "Roadmap",
6 "category": "bkbg-business",
7 "icon": "arrow-right-alt",
8 "description": "Horizontal future roadmap with quarter/milestone cards, status tags and connector arrows.",
9 "keywords": [
10 "roadmap",
11 "timeline",
12 "milestone",
13 "quarter",
14 "plan",
15 "process"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-roadmap-editor",
19 "editorStyle": "bkbg-roadmap-style",
20 "style": "bkbg-roadmap-style",
21 "viewScript": "bkbg-roadmap-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "items": {
33 "type": "array",
34 "default": [
35 {
36 "label": "Q1 2024",
37 "title": "Foundation",
38 "desc": "Core architecture and planning.",
39 "status": "done"
40 },
41 {
42 "label": "Q2 2024",
43 "title": "Beta Launch",
44 "desc": "Public beta with early adopters.",
45 "status": "progress"
46 },
47 {
48 "label": "Q3 2024",
49 "title": "v1.0 Release",
50 "desc": "Full product launch.",
51 "status": "planned"
52 },
53 {
54 "label": "Q4 2024",
55 "title": "Scale",
56 "desc": "Growth and partnership expansion.",
57 "status": "planned"
58 }
59 ]
60 },
61 "cardWidth": {
62 "type": "number",
63 "default": 200
64 },
65 "cardGap": {
66 "type": "number",
67 "default": 24
68 },
69 "cardBg": {
70 "type": "string",
71 "default": "#ffffff"
72 },
73 "cardBorder": {
74 "type": "string",
75 "default": "#e5e7eb"
76 },
77 "cardRadius": {
78 "type": "number",
79 "default": 10
80 },
81 "doneColor": {
82 "type": "string",
83 "default": "#22c55e"
84 },
85 "progressColor": {
86 "type": "string",
87 "default": "#f59e0b"
88 },
89 "plannedColor": {
90 "type": "string",
91 "default": "#94a3b8"
92 },
93 "connectorColor": {
94 "type": "string",
95 "default": "#d1d5db"
96 },
97 "titleFontSize": {
98 "type": "number",
99 "default": 15
100 },
101 "titleFontWeight": {
102 "type": "number",
103 "default": 600
104 },
105 "titleLineHeight": {
106 "type": "number",
107 "default": 1.4
108 },
109 "descFontSize": {
110 "type": "number",
111 "default": 13
112 },
113 "descFontWeight": {
114 "type": "number",
115 "default": 400
116 },
117 "descLineHeight": {
118 "type": "number",
119 "default": 1.5
120 },
121 "titleTypo": {
122 "type": "object",
123 "default": {}
124 },
125 "descTypo": {
126 "type": "object",
127 "default": {}
128 }
129 }
130 }
131