PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.6
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.6
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.6, at blocks/timeline/block.json

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