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

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

169 lines 4.0 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/pomodoro-timer",
4 "title": "Pomodoro Timer",
5 "description": "An interactive Pomodoro productivity timer with work and break cycles, visual progress ring, and session tracking.",
6 "category": "bkbg-interactive",
7 "icon": "clock",
8 "keywords": [
9 "pomodoro",
10 "timer",
11 "focus",
12 "productivity",
13 "countdown",
14 "break"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-pomodoro-timer-editor",
18 "style": "bkbg-pomodoro-timer-style",
19 "viewScript": "bkbg-pomodoro-timer-frontend",
20 "attributes": {
21 "title": {
22 "type": "string",
23 "default": "Pomodoro Timer"
24 },
25 "subtitle": {
26 "type": "string",
27 "default": "Stay focused. Work smarter."
28 },
29 "showTitle": {
30 "type": "boolean",
31 "default": true
32 },
33 "showSubtitle": {
34 "type": "boolean",
35 "default": true
36 },
37 "workMinutes": {
38 "type": "number",
39 "default": 25
40 },
41 "shortBreak": {
42 "type": "number",
43 "default": 5
44 },
45 "longBreak": {
46 "type": "number",
47 "default": 15
48 },
49 "cyclesBeforeLong": {
50 "type": "number",
51 "default": 4
52 },
53 "showCycleCount": {
54 "type": "boolean",
55 "default": true
56 },
57 "showModeLabel": {
58 "type": "boolean",
59 "default": true
60 },
61 "autoStartBreak": {
62 "type": "boolean",
63 "default": false
64 },
65 "accentColor": {
66 "type": "string",
67 "default": "#6c3fb5"
68 },
69 "breakColor": {
70 "type": "string",
71 "default": "#10b981"
72 },
73 "longBreakColor": {
74 "type": "string",
75 "default": "#3b82f6"
76 },
77 "ringBg": {
78 "type": "string",
79 "default": "#e5e7eb"
80 },
81 "cardBg": {
82 "type": "string",
83 "default": "#ffffff"
84 },
85 "TimerColor": {
86 "type": "string",
87 "default": "#1f2937"
88 },
89 "labelColor": {
90 "type": "string",
91 "default": "#6b7280"
92 },
93 "btnStartBg": {
94 "type": "string",
95 "default": "#6c3fb5"
96 },
97 "btnStartColor": {
98 "type": "string",
99 "default": "#ffffff"
100 },
101 "btnSecBg": {
102 "type": "string",
103 "default": "#f3f4f6"
104 },
105 "btnSecColor": {
106 "type": "string",
107 "default": "#374151"
108 },
109 "titleColor": {
110 "type": "string",
111 "default": "#1f2937"
112 },
113 "subtitleColor": {
114 "type": "string",
115 "default": "#6b7280"
116 },
117 "sectionBg": {
118 "type": "string",
119 "default": ""
120 },
121 "timerSize": {
122 "type": "number",
123 "default": 56
124 },
125 "ringSize": {
126 "type": "number",
127 "default": 220
128 },
129 "ringThickness": {
130 "type": "number",
131 "default": 14
132 },
133 "cardRadius": {
134 "type": "number",
135 "default": 20
136 },
137 "btnRadius": {
138 "type": "number",
139 "default": 100
140 },
141 "maxWidth": {
142 "type": "number",
143 "default": 440
144 },
145 "paddingTop": {
146 "type": "number",
147 "default": 60
148 },
149 "paddingBottom": {
150 "type": "number",
151 "default": 60
152 },
153 "titleTypo": {
154 "type": "object",
155 "default": {}
156 },
157 "subtitleTypo": {
158 "type": "object",
159 "default": {}
160 }
161 },
162 "supports": {
163 "html": false,
164 "align": [
165 "wide",
166 "full"
167 ]
168 }
169 }