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

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

137 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/stopwatch",
5 "title": "Stopwatch",
6 "category": "bkbg-interactive",
7 "icon": "clock",
8 "description": "Interactive stopwatch with start/pause/reset controls and lap recording. Fully styled with customizable colors, display format, and rich Inspector settings.",
9 "keywords": [
10 "stopwatch",
11 "timer",
12 "clock",
13 "lap",
14 "time",
15 "counter",
16 "interactive"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-stopwatch-editor",
20 "style": "bkbg-stopwatch-style",
21 "viewScript": "bkbg-stopwatch-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "title": {
33 "type": "string",
34 "default": "Stopwatch"
35 },
36 "subtitle": {
37 "type": "string",
38 "default": "Track elapsed time with laps"
39 },
40 "showTitle": {
41 "type": "boolean",
42 "default": true
43 },
44 "showSubtitle": {
45 "type": "boolean",
46 "default": true
47 },
48 "showLaps": {
49 "type": "boolean",
50 "default": true
51 },
52 "showMilliseconds": {
53 "type": "boolean",
54 "default": true
55 },
56 "maxLaps": {
57 "type": "number",
58 "default": 20
59 },
60 "accentColor": {
61 "type": "string",
62 "default": "#6366f1"
63 },
64 "startColor": {
65 "type": "string",
66 "default": "#22c55e"
67 },
68 "stopColor": {
69 "type": "string",
70 "default": "#ef4444"
71 },
72 "resetColor": {
73 "type": "string",
74 "default": "#6b7280"
75 },
76 "lapColor": {
77 "type": "string",
78 "default": "#f59e0b"
79 },
80 "clockBg": {
81 "type": "string",
82 "default": "#1e1b4b"
83 },
84 "clockColor": {
85 "type": "string",
86 "default": "#e0e7ff"
87 },
88 "sectionBg": {
89 "type": "string",
90 "default": "#f5f3ff"
91 },
92 "cardBg": {
93 "type": "string",
94 "default": "#ffffff"
95 },
96 "titleColor": {
97 "type": "string",
98 "default": "#111827"
99 },
100 "subtitleColor": {
101 "type": "string",
102 "default": "#6b7280"
103 },
104 "labelColor": {
105 "type": "string",
106 "default": "#374151"
107 },
108 "titleFontSize": {
109 "type": "number",
110 "default": 26
111 },
112 "clockFontSize": {
113 "type": "number",
114 "default": 64
115 },
116 "contentMaxWidth": {
117 "type": "number",
118 "default": 560
119 },
120 "titleFontWeight": {
121 "type": "string",
122 "default": "700"
123 },
124 "titleLineHeight": {
125 "type": "number",
126 "default": 1.2
127 },
128 "titleTypo": {
129 "type": "object",
130 "default": {}
131 },
132 "subtitleTypo": {
133 "type": "object",
134 "default": {}
135 }
136 }
137 }