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

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

181 lines 4.3 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/countdown",
4 "title": "Countdown",
5 "category": "blockenberg",
6 "icon": "clock",
7 "description": "Display a countdown timer to a specific date and time.",
8 "keywords": ["countdown", "timer", "date", "event"],
9 "textdomain": "blockenberg",
10 "editorScript": "bkbg-countdown-editor",
11 "editorStyle": "bkbg-countdown-style",
12 "style": "bkbg-countdown-style",
13 "viewScript": "bkbg-countdown-frontend",
14 "supports": {
15 "html": false,
16 "align": ["wide", "full"]
17 },
18 "attributes": {
19 "targetDate": {
20 "type": "string",
21 "default": ""
22 },
23 "targetTime": {
24 "type": "string",
25 "default": "00:00"
26 },
27 "timezone": {
28 "type": "string",
29 "default": "local"
30 },
31 "layoutStyle": {
32 "type": "string",
33 "default": "cards"
34 },
35 "showDays": {
36 "type": "boolean",
37 "default": true
38 },
39 "showHours": {
40 "type": "boolean",
41 "default": true
42 },
43 "showMinutes": {
44 "type": "boolean",
45 "default": true
46 },
47 "showSeconds": {
48 "type": "boolean",
49 "default": true
50 },
51 "showLabels": {
52 "type": "boolean",
53 "default": true
54 },
55 "showSeparators": {
56 "type": "boolean",
57 "default": true
58 },
59 "labelDays": {
60 "type": "string",
61 "default": "Days"
62 },
63 "labelHours": {
64 "type": "string",
65 "default": "Hours"
66 },
67 "labelMinutes": {
68 "type": "string",
69 "default": "Minutes"
70 },
71 "labelSeconds": {
72 "type": "string",
73 "default": "Seconds"
74 },
75 "expiredAction": {
76 "type": "string",
77 "default": "message"
78 },
79 "expiredMessage": {
80 "type": "string",
81 "default": "Time's up!"
82 },
83 "expiredRedirectUrl": {
84 "type": "string",
85 "default": ""
86 },
87 "title": {
88 "type": "string",
89 "default": ""
90 },
91 "showTitle": {
92 "type": "boolean",
93 "default": false
94 },
95 "digitBg": {
96 "type": "string",
97 "default": "#1e293b"
98 },
99 "digitColor": {
100 "type": "string",
101 "default": "#ffffff"
102 },
103 "labelColor": {
104 "type": "string",
105 "default": "#64748b"
106 },
107 "separatorColor": {
108 "type": "string",
109 "default": "#94a3b8"
110 },
111 "titleColor": {
112 "type": "string",
113 "default": "#1e293b"
114 },
115 "wrapBg": {
116 "type": "string",
117 "default": ""
118 },
119 "digitFontSize": {
120 "type": "number",
121 "default": 48
122 },
123 "labelFontSize": {
124 "type": "number",
125 "default": 14
126 },
127 "titleFontSize": {
128 "type": "number",
129 "default": 24
130 },
131 "digitFontWeight": {
132 "type": "number",
133 "default": 700
134 },
135 "labelFontWeight": {
136 "type": "number",
137 "default": 500
138 },
139 "padding": {
140 "type": "number",
141 "default": 24
142 },
143 "gap": {
144 "type": "number",
145 "default": 16
146 },
147 "borderRadius": {
148 "type": "number",
149 "default": 12
150 },
151 "digitPadding": {
152 "type": "number",
153 "default": 20
154 },
155 "digitRadius": {
156 "type": "number",
157 "default": 8
158 },
159 "evergreenMode": {
160 "type": "boolean",
161 "default": true
162 },
163 "evergreenDays": {
164 "type": "number",
165 "default": 0
166 },
167 "evergreenHours": {
168 "type": "number",
169 "default": 24
170 },
171 "evergreenMinutes": {
172 "type": "number",
173 "default": 0
174 },
175 "evergreenId": {
176 "type": "string",
177 "default": ""
178 }
179 }
180 }
181