| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/world-clock", |
| 5 |
"title": "World Clock", |
| 6 |
"category": "bkbg-interactive", |
| 7 |
"icon": "clock", |
| 8 |
"description": "Display live clocks for multiple timezones with analog or digital style. Perfect for global audiences, remote teams, and travel blogs.", |
| 9 |
"keywords": [ |
| 10 |
"clock", |
| 11 |
"timezone", |
| 12 |
"world", |
| 13 |
"time", |
| 14 |
"international", |
| 15 |
"live", |
| 16 |
"analog", |
| 17 |
"digital" |
| 18 |
], |
| 19 |
"textdomain": "blockenberg", |
| 20 |
"editorScript": "bkbg-world-clock-editor", |
| 21 |
"style": "bkbg-world-clock-style", |
| 22 |
"viewScript": "bkbg-world-clock-frontend", |
| 23 |
"supports": { |
| 24 |
"html": false, |
| 25 |
"anchor": true, |
| 26 |
"className": true, |
| 27 |
"align": [ |
| 28 |
"wide", |
| 29 |
"full" |
| 30 |
] |
| 31 |
}, |
| 32 |
"attributes": { |
| 33 |
"title": { |
| 34 |
"type": "string", |
| 35 |
"default": "World Clocks" |
| 36 |
}, |
| 37 |
"subtitle": { |
| 38 |
"type": "string", |
| 39 |
"default": "Current time across different time zones" |
| 40 |
}, |
| 41 |
"showTitle": { |
| 42 |
"type": "boolean", |
| 43 |
"default": true |
| 44 |
}, |
| 45 |
"showSubtitle": { |
| 46 |
"type": "boolean", |
| 47 |
"default": true |
| 48 |
}, |
| 49 |
"clockStyle": { |
| 50 |
"type": "string", |
| 51 |
"default": "digital" |
| 52 |
}, |
| 53 |
"timeFormat": { |
| 54 |
"type": "string", |
| 55 |
"default": "12h" |
| 56 |
}, |
| 57 |
"showDate": { |
| 58 |
"type": "boolean", |
| 59 |
"default": true |
| 60 |
}, |
| 61 |
"showSeconds": { |
| 62 |
"type": "boolean", |
| 63 |
"default": true |
| 64 |
}, |
| 65 |
"showOffset": { |
| 66 |
"type": "boolean", |
| 67 |
"default": false |
| 68 |
}, |
| 69 |
"zones": { |
| 70 |
"type": "array", |
| 71 |
"default": [ |
| 72 |
{ |
| 73 |
"label": "New York", |
| 74 |
"tz": "America/New_York" |
| 75 |
}, |
| 76 |
{ |
| 77 |
"label": "London", |
| 78 |
"tz": "Europe/London" |
| 79 |
}, |
| 80 |
{ |
| 81 |
"label": "Tokyo", |
| 82 |
"tz": "Asia/Tokyo" |
| 83 |
}, |
| 84 |
{ |
| 85 |
"label": "Dubai", |
| 86 |
"tz": "Asia/Dubai" |
| 87 |
} |
| 88 |
] |
| 89 |
}, |
| 90 |
"columns": { |
| 91 |
"type": "number", |
| 92 |
"default": 4 |
| 93 |
}, |
| 94 |
"accentColor": { |
| 95 |
"type": "string", |
| 96 |
"default": "#6c3fb5" |
| 97 |
}, |
| 98 |
"cardBg": { |
| 99 |
"type": "string", |
| 100 |
"default": "#ffffff" |
| 101 |
}, |
| 102 |
"borderColor": { |
| 103 |
"type": "string", |
| 104 |
"default": "#e5e7eb" |
| 105 |
}, |
| 106 |
"timeColor": { |
| 107 |
"type": "string", |
| 108 |
"default": "#1e1b4b" |
| 109 |
}, |
| 110 |
"labelColor": { |
| 111 |
"type": "string", |
| 112 |
"default": "#6b7280" |
| 113 |
}, |
| 114 |
"dateColor": { |
| 115 |
"type": "string", |
| 116 |
"default": "#9ca3af" |
| 117 |
}, |
| 118 |
"clockFace": { |
| 119 |
"type": "string", |
| 120 |
"default": "#f5f3ff" |
| 121 |
}, |
| 122 |
"handHour": { |
| 123 |
"type": "string", |
| 124 |
"default": "#1e1b4b" |
| 125 |
}, |
| 126 |
"handMin": { |
| 127 |
"type": "string", |
| 128 |
"default": "#6c3fb5" |
| 129 |
}, |
| 130 |
"handSec": { |
| 131 |
"type": "string", |
| 132 |
"default": "#ef4444" |
| 133 |
}, |
| 134 |
"titleColor": { |
| 135 |
"type": "string", |
| 136 |
"default": "#1e1b4b" |
| 137 |
}, |
| 138 |
"subtitleColor": { |
| 139 |
"type": "string", |
| 140 |
"default": "#6b7280" |
| 141 |
}, |
| 142 |
"sectionBg": { |
| 143 |
"type": "string", |
| 144 |
"default": "" |
| 145 |
}, |
| 146 |
"titleSize": { |
| 147 |
"type": "number", |
| 148 |
"default": 28 |
| 149 |
}, |
| 150 |
"timeSize": { |
| 151 |
"type": "number", |
| 152 |
"default": 32 |
| 153 |
}, |
| 154 |
"labelSize": { |
| 155 |
"type": "number", |
| 156 |
"default": 14 |
| 157 |
}, |
| 158 |
"cardRadius": { |
| 159 |
"type": "number", |
| 160 |
"default": 16 |
| 161 |
}, |
| 162 |
"cardPadding": { |
| 163 |
"type": "number", |
| 164 |
"default": 24 |
| 165 |
}, |
| 166 |
"analogSize": { |
| 167 |
"type": "number", |
| 168 |
"default": 120 |
| 169 |
}, |
| 170 |
"gap": { |
| 171 |
"type": "number", |
| 172 |
"default": 16 |
| 173 |
}, |
| 174 |
"maxWidth": { |
| 175 |
"type": "number", |
| 176 |
"default": 960 |
| 177 |
}, |
| 178 |
"paddingTop": { |
| 179 |
"type": "number", |
| 180 |
"default": 60 |
| 181 |
}, |
| 182 |
"paddingBottom": { |
| 183 |
"type": "number", |
| 184 |
"default": 60 |
| 185 |
}, |
| 186 |
"titleTypo": { |
| 187 |
"type": "object", |
| 188 |
"default": {} |
| 189 |
}, |
| 190 |
"labelTypo": { |
| 191 |
"type": "object", |
| 192 |
"default": {} |
| 193 |
}, |
| 194 |
"timeTypo": { |
| 195 |
"type": "object", |
| 196 |
"default": {} |
| 197 |
} |
| 198 |
} |
| 199 |
} |
| 200 |
|