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 / time-zone-converter / block.json

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

147 lines 3.6 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/time-zone-converter",
5 "version": "1.0.0",
6 "title": "Time Zone Converter",
7 "category": "bkbg-calculators",
8 "icon": "clock",
9 "description": "Convert a specific time across multiple time zones with a live interactive display.",
10 "keywords": [
11 "time zone",
12 "convert",
13 "world time",
14 "clock",
15 "timezone"
16 ],
17 "supports": {
18 "html": false,
19 "align": [
20 "wide",
21 "full"
22 ]
23 },
24 "textdomain": "blockenberg",
25 "editorScript": "bkbg-time-zone-converter-editor",
26 "style": "bkbg-time-zone-converter-style",
27 "viewScript": "bkbg-time-zone-converter-frontend",
28 "attributes": {
29 "title": {
30 "type": "string",
31 "default": "Time Zone Converter"
32 },
33 "subtitle": {
34 "type": "string",
35 "default": "Convert any time across the world's time zones"
36 },
37 "showTitle": {
38 "type": "boolean",
39 "default": true
40 },
41 "showSubtitle": {
42 "type": "boolean",
43 "default": true
44 },
45 "sourceZone": {
46 "type": "string",
47 "default": "America/New_York"
48 },
49 "targetZones": {
50 "type": "string",
51 "default": "Europe/London,Europe/Paris,Asia/Tokyo,America/Los_Angeles,Australia/Sydney"
52 },
53 "use12Hour": {
54 "type": "boolean",
55 "default": true
56 },
57 "showDate": {
58 "type": "boolean",
59 "default": true
60 },
61 "showOffset": {
62 "type": "boolean",
63 "default": true
64 },
65 "accentColor": {
66 "type": "string",
67 "default": "#6c3fb5"
68 },
69 "cardBg": {
70 "type": "string",
71 "default": ""
72 },
73 "sourceBg": {
74 "type": "string",
75 "default": "#6c3fb5"
76 },
77 "sourceColor": {
78 "type": "string",
79 "default": "#ffffff"
80 },
81 "rowBg": {
82 "type": "string",
83 "default": "#f9fafb"
84 },
85 "rowBorder": {
86 "type": "string",
87 "default": "#e5e7eb"
88 },
89 "rowTimeColor": {
90 "type": "string",
91 "default": "#1f2937"
92 },
93 "rowZoneColor": {
94 "type": "string",
95 "default": "#6b7280"
96 },
97 "labelColor": {
98 "type": "string",
99 "default": "#374151"
100 },
101 "inputBorder": {
102 "type": "string",
103 "default": "#e5e7eb"
104 },
105 "titleColor": {
106 "type": "string",
107 "default": ""
108 },
109 "subtitleColor": {
110 "type": "string",
111 "default": ""
112 },
113 "sectionBg": {
114 "type": "string",
115 "default": ""
116 },
117 "titleTypo": {
118 "type": "object",
119 "default": {}
120 },
121 "timeTypo": {
122 "type": "object",
123 "default": {}
124 },
125 "cardRadius": {
126 "type": "number",
127 "default": 16
128 },
129 "rowRadius": {
130 "type": "number",
131 "default": 10
132 },
133 "maxWidth": {
134 "type": "number",
135 "default": 540
136 },
137 "paddingTop": {
138 "type": "number",
139 "default": 60
140 },
141 "paddingBottom": {
142 "type": "number",
143 "default": 60
144 }
145 }
146 }
147