| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"textdomain": "getwid", |
| 5 |
"name": "getwid/progress-bar", |
| 6 |
"description": "Shows progress with a horizontal bar.", |
| 7 |
"category": "getwid-blocks", |
| 8 |
"title": "Progress Bar", |
| 9 |
"supports": { |
| 10 |
"align": [ |
| 11 |
"wide", |
| 12 |
"full" |
| 13 |
], |
| 14 |
"html": false |
| 15 |
}, |
| 16 |
"attributes": { |
| 17 |
"align": { |
| 18 |
"type": "string" |
| 19 |
}, |
| 20 |
"backgroundColor": { |
| 21 |
"type": "string" |
| 22 |
}, |
| 23 |
"textColor": { |
| 24 |
"type": "string" |
| 25 |
}, |
| 26 |
"customBackgroundColor": { |
| 27 |
"type": "string" |
| 28 |
}, |
| 29 |
"customTextColor": { |
| 30 |
"type": "string" |
| 31 |
}, |
| 32 |
"fillAmount": { |
| 33 |
"type": "string", |
| 34 |
"source": "attribute", |
| 35 |
"selector": ".wp-block-getwid-progress-bar__wrapper", |
| 36 |
"attribute": "data-fill-amount", |
| 37 |
"default": "75" |
| 38 |
}, |
| 39 |
"title": { |
| 40 |
"type": "string", |
| 41 |
"source": "html", |
| 42 |
"selector": ".wp-block-getwid-progress-bar__title" |
| 43 |
}, |
| 44 |
"isAnimated": { |
| 45 |
"type": "string", |
| 46 |
"source": "attribute", |
| 47 |
"selector": ".wp-block-getwid-progress-bar__wrapper", |
| 48 |
"attribute": "data-is-animated", |
| 49 |
"default": "true" |
| 50 |
} |
| 51 |
}, |
| 52 |
"editorScript": "file:./index.js", |
| 53 |
"editorStyle": "file:./index.css", |
| 54 |
"style": "file:./style-index.css", |
| 55 |
"viewScript": [ |
| 56 |
"waypoints", |
| 57 |
"file:./view.js" |
| 58 |
] |
| 59 |
} |