| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "ghostkit/progress", |
| 5 |
"category": "ghostkit", |
| 6 |
"title": "Progress", |
| 7 |
"description": "Show the progress of your work, skills or earnings.", |
| 8 |
"keywords": ["progress", "bar"], |
| 9 |
"supports": { |
| 10 |
"html": false, |
| 11 |
"className": false, |
| 12 |
"anchor": true, |
| 13 |
"align": ["wide", "full"] |
| 14 |
}, |
| 15 |
"attributes": { |
| 16 |
"caption": { |
| 17 |
"type": "string", |
| 18 |
"source": "html", |
| 19 |
"selector": ".ghostkit-progress-caption", |
| 20 |
"default": "Progress Caption" |
| 21 |
}, |
| 22 |
"height": { |
| 23 |
"type": "number", |
| 24 |
"default": 15 |
| 25 |
}, |
| 26 |
"percent": { |
| 27 |
"type": "number", |
| 28 |
"default": 75 |
| 29 |
}, |
| 30 |
"borderRadius": { |
| 31 |
"type": "number" |
| 32 |
}, |
| 33 |
"striped": { |
| 34 |
"type": "boolean", |
| 35 |
"default": true |
| 36 |
}, |
| 37 |
"animateInViewport": { |
| 38 |
"type": "boolean", |
| 39 |
"default": false |
| 40 |
}, |
| 41 |
"showCount": { |
| 42 |
"type": "boolean", |
| 43 |
"default": false |
| 44 |
}, |
| 45 |
"countPrefix": { |
| 46 |
"type": "string", |
| 47 |
"default": "" |
| 48 |
}, |
| 49 |
"countSuffix": { |
| 50 |
"type": "string", |
| 51 |
"default": "%" |
| 52 |
}, |
| 53 |
"color": { |
| 54 |
"type": "string" |
| 55 |
}, |
| 56 |
"backgroundColor": { |
| 57 |
"type": "string" |
| 58 |
}, |
| 59 |
"hoverColor": { |
| 60 |
"type": "string" |
| 61 |
}, |
| 62 |
"hoverBackgroundColor": { |
| 63 |
"type": "string" |
| 64 |
} |
| 65 |
}, |
| 66 |
"style": ["ghostkit", "ghostkit-block-progress"], |
| 67 |
"viewScript": ["ghostkit", "ghostkit-block-progress"] |
| 68 |
} |
| 69 |
|