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

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

206 lines 5.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/calendar",
5 "title": "Events Calendar",
6 "category": "bkbg-interactive",
7 "icon": "calendar-alt",
8 "description": "Monthly events calendar grid with clickable events, color-coded categories, and an optional event list.",
9 "keywords": [
10 "calendar",
11 "events",
12 "schedule",
13 "monthly",
14 "agenda",
15 "dates"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-calendar-editor",
19 "style": "bkbg-calendar-style",
20 "viewScript": "bkbg-calendar-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "title": {
32 "type": "string",
33 "default": "Upcoming Events"
34 },
35 "showTitle": {
36 "type": "boolean",
37 "default": true
38 },
39 "events": {
40 "type": "array",
41 "default": [
42 {
43 "id": "ev1",
44 "title": "Team Kickoff",
45 "date": "2026-02-05",
46 "endDate": "",
47 "color": "#6c3fb5",
48 "url": "",
49 "allDay": true,
50 "category": "Internal"
51 },
52 {
53 "id": "ev2",
54 "title": "Product Launch",
55 "date": "2026-02-12",
56 "endDate": "",
57 "color": "#ec4899",
58 "url": "",
59 "allDay": true,
60 "category": "Marketing"
61 },
62 {
63 "id": "ev3",
64 "title": "Design Review",
65 "date": "2026-02-12",
66 "endDate": "",
67 "color": "#f59e0b",
68 "url": "",
69 "allDay": false,
70 "category": "Design"
71 },
72 {
73 "id": "ev4",
74 "title": "Q1 Planning",
75 "date": "2026-02-18",
76 "endDate": "",
77 "color": "#10b981",
78 "url": "",
79 "allDay": true,
80 "category": "Planning"
81 },
82 {
83 "id": "ev5",
84 "title": "Customer Workshop",
85 "date": "2026-02-24",
86 "endDate": "",
87 "color": "#3b82f6",
88 "url": "",
89 "allDay": false,
90 "category": "Sales"
91 },
92 {
93 "id": "ev6",
94 "title": "Sprint Retrospective",
95 "date": "2026-02-26",
96 "endDate": "",
97 "color": "#8b5cf6",
98 "url": "",
99 "allDay": true,
100 "category": "Internal"
101 }
102 ]
103 },
104 "showEventList": {
105 "type": "boolean",
106 "default": true
107 },
108 "highlightToday": {
109 "type": "boolean",
110 "default": true
111 },
112 "firstDayMonday": {
113 "type": "boolean",
114 "default": true
115 },
116 "showYear": {
117 "type": "boolean",
118 "default": true
119 },
120 "accentColor": {
121 "type": "string",
122 "default": "#6c3fb5"
123 },
124 "headerBg": {
125 "type": "string",
126 "default": "#6c3fb5"
127 },
128 "headerColor": {
129 "type": "string",
130 "default": "#ffffff"
131 },
132 "gridBg": {
133 "type": "string",
134 "default": "#ffffff"
135 },
136 "dayBorderColor": {
137 "type": "string",
138 "default": "#e5e7eb"
139 },
140 "dayHoverBg": {
141 "type": "string",
142 "default": "#f5f3ff"
143 },
144 "todayBg": {
145 "type": "string",
146 "default": "#6c3fb5"
147 },
148 "todayColor": {
149 "type": "string",
150 "default": "#ffffff"
151 },
152 "otherMonthColor": {
153 "type": "string",
154 "default": "#d1d5db"
155 },
156 "titleColor": {
157 "type": "string",
158 "default": "#111827"
159 },
160 "dayNameColor": {
161 "type": "string",
162 "default": "#6b7280"
163 },
164 "listTitleColor": {
165 "type": "string",
166 "default": "#111827"
167 },
168 "listDateColor": {
169 "type": "string",
170 "default": "#6b7280"
171 },
172 "cardBg": {
173 "type": "string",
174 "default": "#ffffff"
175 },
176 "cardBorder": {
177 "type": "string",
178 "default": "#e5e7eb"
179 },
180 "cardRadius": {
181 "type": "number",
182 "default": 14
183 },
184 "titleSize": {
185 "type": "number",
186 "default": 24
187 },
188 "bgColor": {
189 "type": "string",
190 "default": ""
191 },
192 "paddingTop": {
193 "type": "number",
194 "default": 0
195 },
196 "paddingBottom": {
197 "type": "number",
198 "default": 0
199 },
200 "typoTitle": {
201 "type": "object",
202 "default": {}
203 }
204 }
205 }
206