| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/reading-time", |
| 5 |
"title": "Reading Time", |
| 6 |
"category": "bkbg-blog", |
| 7 |
"icon": "clock", |
| 8 |
"description": "Displays estimated reading time calculated from the post content. Fully customizable styling.", |
| 9 |
"keywords": [ |
| 10 |
"reading time", |
| 11 |
"read", |
| 12 |
"estimate", |
| 13 |
"minutes", |
| 14 |
"clock" |
| 15 |
], |
| 16 |
"textdomain": "blockenberg", |
| 17 |
"editorScript": "bkbg-reading-time-editor", |
| 18 |
"editorStyle": "bkbg-reading-time-style", |
| 19 |
"style": "bkbg-reading-time-style", |
| 20 |
"viewScript": "bkbg-reading-time-frontend", |
| 21 |
"supports": { |
| 22 |
"html": false, |
| 23 |
"anchor": true, |
| 24 |
"className": true, |
| 25 |
"align": [ |
| 26 |
"wide", |
| 27 |
"full" |
| 28 |
] |
| 29 |
}, |
| 30 |
"attributes": { |
| 31 |
"wpm": { |
| 32 |
"type": "number", |
| 33 |
"default": 200 |
| 34 |
}, |
| 35 |
"prefix": { |
| 36 |
"type": "string", |
| 37 |
"default": "" |
| 38 |
}, |
| 39 |
"suffix": { |
| 40 |
"type": "string", |
| 41 |
"default": "min read" |
| 42 |
}, |
| 43 |
"showIcon": { |
| 44 |
"type": "boolean", |
| 45 |
"default": true |
| 46 |
}, |
| 47 |
"icon": { |
| 48 |
"type": "string", |
| 49 |
"default": "clock" |
| 50 |
}, |
| 51 |
"displayStyle": { |
| 52 |
"type": "string", |
| 53 |
"default": "badge" |
| 54 |
}, |
| 55 |
"textAlign": { |
| 56 |
"type": "string", |
| 57 |
"default": "left" |
| 58 |
}, |
| 59 |
"badgeTypo": { |
| 60 |
"type": "object", |
| 61 |
"default": {} |
| 62 |
}, |
| 63 |
"bgColor": { |
| 64 |
"type": "string", |
| 65 |
"default": "#ede9fc" |
| 66 |
}, |
| 67 |
"textColor": { |
| 68 |
"type": "string", |
| 69 |
"default": "#6c3fb5" |
| 70 |
}, |
| 71 |
"borderRadius": { |
| 72 |
"type": "number", |
| 73 |
"default": 40 |
| 74 |
}, |
| 75 |
"paddingX": { |
| 76 |
"type": "number", |
| 77 |
"default": 14 |
| 78 |
}, |
| 79 |
"paddingY": { |
| 80 |
"type": "number", |
| 81 |
"default": 6 |
| 82 |
} |
| 83 |
} |
| 84 |
} |
| 85 |
|