| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/countdown-progress", |
| 5 |
"version": "1.0.0", |
| 6 |
"title": "Countdown Progress", |
| 7 |
"category": "bkbg-effects", |
| 8 |
"icon": "clock", |
| 9 |
"description": "Visual ring or bar countdown timer to a target date, with live ticking.", |
| 10 |
"textdomain": "blockenberg", |
| 11 |
"editorScript": "bkbg-countdown-progress-editor", |
| 12 |
"style": "bkbg-countdown-progress-style", |
| 13 |
"viewScript": "bkbg-countdown-progress-frontend", |
| 14 |
"supports": { |
| 15 |
"html": false, |
| 16 |
"align": [ |
| 17 |
"wide", |
| 18 |
"full" |
| 19 |
] |
| 20 |
}, |
| 21 |
"attributes": { |
| 22 |
"heading": { |
| 23 |
"type": "string", |
| 24 |
"default": "Launching In" |
| 25 |
}, |
| 26 |
"subtext": { |
| 27 |
"type": "string", |
| 28 |
"default": "Don't miss out — get notified when we go live." |
| 29 |
}, |
| 30 |
"endDate": { |
| 31 |
"type": "string", |
| 32 |
"default": "" |
| 33 |
}, |
| 34 |
"style": { |
| 35 |
"type": "string", |
| 36 |
"default": "ring" |
| 37 |
}, |
| 38 |
"showDays": { |
| 39 |
"type": "boolean", |
| 40 |
"default": true |
| 41 |
}, |
| 42 |
"showHours": { |
| 43 |
"type": "boolean", |
| 44 |
"default": true |
| 45 |
}, |
| 46 |
"showMins": { |
| 47 |
"type": "boolean", |
| 48 |
"default": true |
| 49 |
}, |
| 50 |
"showSecs": { |
| 51 |
"type": "boolean", |
| 52 |
"default": true |
| 53 |
}, |
| 54 |
"showLabels": { |
| 55 |
"type": "boolean", |
| 56 |
"default": true |
| 57 |
}, |
| 58 |
"radius": { |
| 59 |
"type": "number", |
| 60 |
"default": 60 |
| 61 |
}, |
| 62 |
"strokeWidth": { |
| 63 |
"type": "number", |
| 64 |
"default": 10 |
| 65 |
}, |
| 66 |
"maxWidth": { |
| 67 |
"type": "number", |
| 68 |
"default": 900 |
| 69 |
}, |
| 70 |
"paddingTop": { |
| 71 |
"type": "number", |
| 72 |
"default": 80 |
| 73 |
}, |
| 74 |
"paddingBottom": { |
| 75 |
"type": "number", |
| 76 |
"default": 80 |
| 77 |
}, |
| 78 |
"bgColor": { |
| 79 |
"type": "string", |
| 80 |
"default": "#0f172a" |
| 81 |
}, |
| 82 |
"headingColor": { |
| 83 |
"type": "string", |
| 84 |
"default": "#ffffff" |
| 85 |
}, |
| 86 |
"subColor": { |
| 87 |
"type": "string", |
| 88 |
"default": "#94a3b8" |
| 89 |
}, |
| 90 |
"ringColor": { |
| 91 |
"type": "string", |
| 92 |
"default": "#6366f1" |
| 93 |
}, |
| 94 |
"ringBg": { |
| 95 |
"type": "string", |
| 96 |
"default": "#1e293b" |
| 97 |
}, |
| 98 |
"numColor": { |
| 99 |
"type": "string", |
| 100 |
"default": "#ffffff" |
| 101 |
}, |
| 102 |
"labelColor": { |
| 103 |
"type": "string", |
| 104 |
"default": "#94a3b8" |
| 105 |
}, |
| 106 |
"barColor": { |
| 107 |
"type": "string", |
| 108 |
"default": "#6366f1" |
| 109 |
}, |
| 110 |
"barBg": { |
| 111 |
"type": "string", |
| 112 |
"default": "#1e293b" |
| 113 |
}, |
| 114 |
"headingFontSize": { |
| 115 |
"type": "number", |
| 116 |
"default": 28 |
| 117 |
}, |
| 118 |
"subtextFontSize": { |
| 119 |
"type": "number", |
| 120 |
"default": 16 |
| 121 |
}, |
| 122 |
"numFontSize": { |
| 123 |
"type": "number", |
| 124 |
"default": 36 |
| 125 |
}, |
| 126 |
"unitFontSize": { |
| 127 |
"type": "number", |
| 128 |
"default": 12 |
| 129 |
}, |
| 130 |
"typoHeading": { |
| 131 |
"type": "object", |
| 132 |
"default": {} |
| 133 |
}, |
| 134 |
"typoSub": { |
| 135 |
"type": "object", |
| 136 |
"default": {} |
| 137 |
}, |
| 138 |
"typoNum": { |
| 139 |
"type": "object", |
| 140 |
"default": {} |
| 141 |
}, |
| 142 |
"typoUnit": { |
| 143 |
"type": "object", |
| 144 |
"default": {} |
| 145 |
} |
| 146 |
} |
| 147 |
} |
| 148 |
|