| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/milestone", |
| 5 |
"title": "Milestone", |
| 6 |
"category": "bkbg-business", |
| 7 |
"icon": "chart-pie", |
| 8 |
"description": "Circular progress ring showing progress toward a numeric goal with animated ring and center label.", |
| 9 |
"keywords": [ |
| 10 |
"milestone", |
| 11 |
"goal", |
| 12 |
"progress", |
| 13 |
"ring", |
| 14 |
"circular", |
| 15 |
"chart" |
| 16 |
], |
| 17 |
"textdomain": "blockenberg", |
| 18 |
"editorScript": "bkbg-milestone-editor", |
| 19 |
"editorStyle": "bkbg-milestone-style", |
| 20 |
"style": "bkbg-milestone-style", |
| 21 |
"viewScript": "bkbg-milestone-frontend", |
| 22 |
"supports": { |
| 23 |
"html": false, |
| 24 |
"anchor": true, |
| 25 |
"className": true, |
| 26 |
"align": [] |
| 27 |
}, |
| 28 |
"attributes": { |
| 29 |
"current": { |
| 30 |
"type": "number", |
| 31 |
"default": 75 |
| 32 |
}, |
| 33 |
"goal": { |
| 34 |
"type": "number", |
| 35 |
"default": 100 |
| 36 |
}, |
| 37 |
"label": { |
| 38 |
"type": "string", |
| 39 |
"default": "Completion" |
| 40 |
}, |
| 41 |
"centerLabel": { |
| 42 |
"type": "string", |
| 43 |
"default": "auto" |
| 44 |
}, |
| 45 |
"customCenterLabel": { |
| 46 |
"type": "string", |
| 47 |
"default": "" |
| 48 |
}, |
| 49 |
"size": { |
| 50 |
"type": "number", |
| 51 |
"default": 160 |
| 52 |
}, |
| 53 |
"strokeWidth": { |
| 54 |
"type": "number", |
| 55 |
"default": 12 |
| 56 |
}, |
| 57 |
"ringColor": { |
| 58 |
"type": "string", |
| 59 |
"default": "#6c3fb5" |
| 60 |
}, |
| 61 |
"trackColor": { |
| 62 |
"type": "string", |
| 63 |
"default": "#e9e3ff" |
| 64 |
}, |
| 65 |
"textColor": { |
| 66 |
"type": "string", |
| 67 |
"default": "#222222" |
| 68 |
}, |
| 69 |
"labelSz": { |
| 70 |
"type": "number", |
| 71 |
"default": 14 |
| 72 |
}, |
| 73 |
"centerSz": { |
| 74 |
"type": "number", |
| 75 |
"default": 28 |
| 76 |
}, |
| 77 |
"glow": { |
| 78 |
"type": "boolean", |
| 79 |
"default": false |
| 80 |
}, |
| 81 |
"animateOnView": { |
| 82 |
"type": "boolean", |
| 83 |
"default": true |
| 84 |
}, |
| 85 |
"centerTypo": { |
| 86 |
"type": "object", |
| 87 |
"default": {} |
| 88 |
}, |
| 89 |
"labelTypo": { |
| 90 |
"type": "object", |
| 91 |
"default": {} |
| 92 |
} |
| 93 |
} |
| 94 |
} |
| 95 |
|