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

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

155 lines 3.9 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",
4 "title": "Timeline",
5 "category": "bkbg-business",
6 "icon": "backup",
7 "description": "Display events, milestones, or steps in a beautiful timeline layout.",
8 "keywords": [
9 "timeline",
10 "history",
11 "events",
12 "milestones",
13 "steps",
14 "process",
15 "roadmap"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-timeline-editor",
19 "editorStyle": "bkbg-timeline-style",
20 "style": "bkbg-timeline-style",
21 "viewScript": "bkbg-timeline-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "items": {
31 "type": "array",
32 "default": [
33 {
34 "date": "2024",
35 "title": "Getting Started",
36 "content": "The beginning of an amazing journey. Everything starts with a single step.",
37 "icon": "flag"
38 },
39 {
40 "date": "2025",
41 "title": "Major Milestone",
42 "content": "Achieved significant progress and reached important goals along the way.",
43 "icon": "star-filled"
44 },
45 {
46 "date": "2026",
47 "title": "Current Progress",
48 "content": "Continuing to grow and evolve with new opportunities ahead.",
49 "icon": "awards"
50 }
51 ]
52 },
53 "layoutStyle": {
54 "type": "string",
55 "default": "vertical"
56 },
57 "alternating": {
58 "type": "boolean",
59 "default": true
60 },
61 "showConnector": {
62 "type": "boolean",
63 "default": true
64 },
65 "connectorStyle": {
66 "type": "string",
67 "default": "solid"
68 },
69 "markerStyle": {
70 "type": "string",
71 "default": "icon"
72 },
73 "animateOnScroll": {
74 "type": "boolean",
75 "default": true
76 },
77 "animationType": {
78 "type": "string",
79 "default": "fade-up"
80 },
81 "lineColor": {
82 "type": "string",
83 "default": "#e5e7eb"
84 },
85 "lineWidth": {
86 "type": "number",
87 "default": 3
88 },
89 "markerBg": {
90 "type": "string",
91 "default": "#3b82f6"
92 },
93 "markerColor": {
94 "type": "string",
95 "default": "#ffffff"
96 },
97 "markerSize": {
98 "type": "number",
99 "default": 44
100 },
101 "cardBg": {
102 "type": "string",
103 "default": "#ffffff"
104 },
105 "cardBorderColor": {
106 "type": "string",
107 "default": "#e5e7eb"
108 },
109 "cardBorderWidth": {
110 "type": "number",
111 "default": 1
112 },
113 "cardBorderRadius": {
114 "type": "number",
115 "default": 12
116 },
117 "cardShadow": {
118 "type": "boolean",
119 "default": true
120 },
121 "cardPadding": {
122 "type": "number",
123 "default": 24
124 },
125 "dateColor": {
126 "type": "string",
127 "default": "#3b82f6"
128 },
129 "dateTypo": {
130 "type": "object",
131 "default": {}
132 },
133 "titleColor": {
134 "type": "string",
135 "default": "#1f2937"
136 },
137 "titleTypo": {
138 "type": "object",
139 "default": {}
140 },
141 "contentColor": {
142 "type": "string",
143 "default": "#6b7280"
144 },
145 "contentTypo": {
146 "type": "object",
147 "default": {}
148 },
149 "itemSpacing": {
150 "type": "number",
151 "default": 40
152 }
153 }
154 }
155