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

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

129 lines 3.1 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/analog-clock",
5 "title": "Analog Clock",
6 "category": "bkbg-interactive",
7 "icon": "clock",
8 "description": "A beautiful live analog clock rendered with SVG. Fully customizable: clock style, timezone, colors, size, and optional date/time labels.",
9 "keywords": [
10 "clock",
11 "analog",
12 "time",
13 "watch",
14 "widget",
15 "timezone"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-analog-clock-editor",
19 "style": "bkbg-analog-clock-style",
20 "viewScript": "bkbg-analog-clock-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": ""
34 },
35 "subtitle": {
36 "type": "string",
37 "default": ""
38 },
39 "clockSize": {
40 "type": "number",
41 "default": 240
42 },
43 "clockStyle": {
44 "type": "string",
45 "default": "classic"
46 },
47 "timezone": {
48 "type": "string",
49 "default": "local"
50 },
51 "showNumbers": {
52 "type": "boolean",
53 "default": true
54 },
55 "showTicks": {
56 "type": "boolean",
57 "default": true
58 },
59 "showSecondHand": {
60 "type": "boolean",
61 "default": true
62 },
63 "showDate": {
64 "type": "boolean",
65 "default": false
66 },
67 "showDigitalTime": {
68 "type": "boolean",
69 "default": false
70 },
71 "clockFace": {
72 "type": "string",
73 "default": "#ffffff"
74 },
75 "clockBorder": {
76 "type": "string",
77 "default": "#1e1b4b"
78 },
79 "hourHandColor": {
80 "type": "string",
81 "default": "#1e1b4b"
82 },
83 "minuteHandColor": {
84 "type": "string",
85 "default": "#374151"
86 },
87 "secondHandColor": {
88 "type": "string",
89 "default": "#ef4444"
90 },
91 "tickColor": {
92 "type": "string",
93 "default": "#374151"
94 },
95 "numberColor": {
96 "type": "string",
97 "default": "#1e1b4b"
98 },
99 "centerDotColor": {
100 "type": "string",
101 "default": "#ef4444"
102 },
103 "sectionBg": {
104 "type": "string",
105 "default": ""
106 },
107 "titleColor": {
108 "type": "string",
109 "default": "#1e1b4b"
110 },
111 "fontSize": {
112 "type": "number",
113 "default": 22
114 },
115 "subtitleSize": {
116 "type": "number",
117 "default": 14
118 },
119 "titleTypo": {
120 "type": "object",
121 "default": {}
122 },
123 "subtitleTypo": {
124 "type": "object",
125 "default": {}
126 }
127 }
128 }
129