| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"name": "blockenberg/reading-progress", |
| 4 |
"title": "Reading Progress", |
| 5 |
"category": "bkbg-blog", |
| 6 |
"description": "A fixed reading progress bar that fills as the visitor scrolls.", |
| 7 |
"keywords": [ |
| 8 |
"progress", |
| 9 |
"reading", |
| 10 |
"scroll", |
| 11 |
"bar" |
| 12 |
], |
| 13 |
"textdomain": "blockenberg", |
| 14 |
"editorScript": "bkbg-reading-progress-editor", |
| 15 |
"editorStyle": "bkbg-reading-progress-style", |
| 16 |
"style": "bkbg-reading-progress-style", |
| 17 |
"viewScript": "bkbg-reading-progress-frontend", |
| 18 |
"supports": { |
| 19 |
"html": false, |
| 20 |
"anchor": false, |
| 21 |
"className": false, |
| 22 |
"align": [] |
| 23 |
}, |
| 24 |
"attributes": { |
| 25 |
"height": { |
| 26 |
"type": "number", |
| 27 |
"default": 4 |
| 28 |
}, |
| 29 |
"position": { |
| 30 |
"type": "string", |
| 31 |
"default": "top" |
| 32 |
}, |
| 33 |
"color": { |
| 34 |
"type": "string", |
| 35 |
"default": "#2563eb" |
| 36 |
}, |
| 37 |
"bgColor": { |
| 38 |
"type": "string", |
| 39 |
"default": "#e5e7eb" |
| 40 |
}, |
| 41 |
"showPercentage": { |
| 42 |
"type": "boolean", |
| 43 |
"default": false |
| 44 |
}, |
| 45 |
"zIndex": { |
| 46 |
"type": "number", |
| 47 |
"default": 9999 |
| 48 |
}, |
| 49 |
"animation": { |
| 50 |
"type": "string", |
| 51 |
"default": "smooth" |
| 52 |
}, |
| 53 |
"gradientEnd": { |
| 54 |
"type": "string", |
| 55 |
"default": "" |
| 56 |
}, |
| 57 |
"useGradient": { |
| 58 |
"type": "boolean", |
| 59 |
"default": false |
| 60 |
}, |
| 61 |
"labelTypo": { |
| 62 |
"type": "object", |
| 63 |
"default": {} |
| 64 |
} |
| 65 |
} |
| 66 |
} |
| 67 |
|