| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"textdomain": "getwid", |
| 5 |
"name": "getwid/countdown", |
| 6 |
"description": "Counts down to a chosen date and time.", |
| 7 |
"category": "getwid-blocks", |
| 8 |
"title": "Countdown", |
| 9 |
"supports": { |
| 10 |
"alignWide": true, |
| 11 |
"align": [ |
| 12 |
"wide", |
| 13 |
"full" |
| 14 |
] |
| 15 |
}, |
| 16 |
"attributes": { |
| 17 |
"dateTime": { |
| 18 |
"type": "string" |
| 19 |
}, |
| 20 |
"years": { |
| 21 |
"type": "boolean", |
| 22 |
"default": false |
| 23 |
}, |
| 24 |
"months": { |
| 25 |
"type": "boolean", |
| 26 |
"default": false |
| 27 |
}, |
| 28 |
"weeks": { |
| 29 |
"type": "boolean", |
| 30 |
"default": false |
| 31 |
}, |
| 32 |
"days": { |
| 33 |
"type": "boolean", |
| 34 |
"default": true |
| 35 |
}, |
| 36 |
"hours": { |
| 37 |
"type": "boolean", |
| 38 |
"default": true |
| 39 |
}, |
| 40 |
"minutes": { |
| 41 |
"type": "boolean", |
| 42 |
"default": true |
| 43 |
}, |
| 44 |
"seconds": { |
| 45 |
"type": "boolean", |
| 46 |
"default": true |
| 47 |
}, |
| 48 |
"backgroundColor": { |
| 49 |
"type": "string" |
| 50 |
}, |
| 51 |
"textColor": { |
| 52 |
"type": "string" |
| 53 |
}, |
| 54 |
"customTextColor": { |
| 55 |
"type": "string" |
| 56 |
}, |
| 57 |
"fontGroupID": { |
| 58 |
"type": "string", |
| 59 |
"default": "" |
| 60 |
}, |
| 61 |
"fontFamily": { |
| 62 |
"type": "string", |
| 63 |
"default": "" |
| 64 |
}, |
| 65 |
"fontSize": { |
| 66 |
"type": "string" |
| 67 |
}, |
| 68 |
"fontSizeTablet": { |
| 69 |
"type": "string", |
| 70 |
"default": "fs-tablet-100" |
| 71 |
}, |
| 72 |
"fontSizeMobile": { |
| 73 |
"type": "string", |
| 74 |
"default": "fs-mobile-100" |
| 75 |
}, |
| 76 |
"fontWeight": { |
| 77 |
"type": "string" |
| 78 |
}, |
| 79 |
"fontStyle": { |
| 80 |
"type": "string" |
| 81 |
}, |
| 82 |
"textTransform": { |
| 83 |
"type": "string" |
| 84 |
}, |
| 85 |
"lineHeight": { |
| 86 |
"type": "string" |
| 87 |
}, |
| 88 |
"letterSpacing": { |
| 89 |
"type": "string" |
| 90 |
}, |
| 91 |
"align": { |
| 92 |
"type": "string" |
| 93 |
}, |
| 94 |
"textAlignment": { |
| 95 |
"type": "string" |
| 96 |
}, |
| 97 |
"innerPadding": { |
| 98 |
"type": "string", |
| 99 |
"default": "default" |
| 100 |
}, |
| 101 |
"innerSpacings": { |
| 102 |
"type": "string", |
| 103 |
"default": "none" |
| 104 |
}, |
| 105 |
"className": { |
| 106 |
"type": "string" |
| 107 |
} |
| 108 |
}, |
| 109 |
"editorScript": "file:./index.js", |
| 110 |
"editorStyle": "file:./index.css", |
| 111 |
"style": [ |
| 112 |
"file:./style-index.css" |
| 113 |
], |
| 114 |
"viewScript": [ |
| 115 |
"jquery-countdown", |
| 116 |
"file:./view.js" |
| 117 |
] |
| 118 |
} |