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

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

150 lines 3.7 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/timeline-chart",
4 "title": "Timeline Chart",
5 "category": "bkbg-charts",
6 "icon": "calendar-alt",
7 "description": "Horizontal Gantt-style timeline showing events and milestones on a shared time axis.",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-timeline-chart-editor",
10 "style": "bkbg-timeline-chart-style",
11 "attributes": {
12 "title": {
13 "type": "string",
14 "default": "Project Roadmap 2025"
15 },
16 "showTitle": {
17 "type": "boolean",
18 "default": true
19 },
20 "svgWidth": {
21 "type": "number",
22 "default": 720
23 },
24 "padTop": {
25 "type": "number",
26 "default": 50
27 },
28 "padLeft": {
29 "type": "number",
30 "default": 130
31 },
32 "padRight": {
33 "type": "number",
34 "default": 20
35 },
36 "padBottom": {
37 "type": "number",
38 "default": 30
39 },
40 "rowHeight": {
41 "type": "number",
42 "default": 44
43 },
44 "barHeight": {
45 "type": "number",
46 "default": 22
47 },
48 "timeStart": {
49 "type": "number",
50 "default": 0
51 },
52 "timeEnd": {
53 "type": "number",
54 "default": 12
55 },
56 "timeUnit": {
57 "type": "string",
58 "default": "Month"
59 },
60 "showGrid": {
61 "type": "boolean",
62 "default": true
63 },
64 "showValues": {
65 "type": "boolean",
66 "default": true
67 },
68 "showConnectors": {
69 "type": "boolean",
70 "default": false
71 },
72 "labelFontSize": {
73 "type": "number",
74 "default": 12
75 },
76 "barFontSize": {
77 "type": "number",
78 "default": 10
79 },
80 "bgColor": {
81 "type": "string",
82 "default": "#ffffff"
83 },
84 "gridColor": {
85 "type": "string",
86 "default": "#f3f4f6"
87 },
88 "axisColor": {
89 "type": "string",
90 "default": "#e5e7eb"
91 },
92 "textColor": {
93 "type": "string",
94 "default": "#374151"
95 },
96 "titleColor": {
97 "type": "string",
98 "default": "#111827"
99 },
100 "titleTypo": {
101 "type": "object",
102 "default": {}
103 },
104 "events": {
105 "type": "array",
106 "default": [
107 {
108 "label": "Discovery",
109 "color": "#6366f1",
110 "start": 0,
111 "end": 2
112 },
113 {
114 "label": "Design",
115 "color": "#8b5cf6",
116 "start": 1.5,
117 "end": 4
118 },
119 {
120 "label": "Development",
121 "color": "#10b981",
122 "start": 3.5,
123 "end": 9
124 },
125 {
126 "label": "QA & Testing",
127 "color": "#f59e0b",
128 "start": 7,
129 "end": 10
130 },
131 {
132 "label": "Marketing",
133 "color": "#ec4899",
134 "start": 8,
135 "end": 11
136 },
137 {
138 "label": "Launch",
139 "color": "#ef4444",
140 "start": 11,
141 "end": 12
142 }
143 ],
144 "items": {
145 "type": "object"
146 }
147 }
148 }
149 }
150