| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/step-progress", |
| 5 |
"title": "Step Progress", |
| 6 |
"category": "bkbg-content", |
| 7 |
"icon": "editor-ol", |
| 8 |
"description": "Horizontal wizard progress bar showing current step out of N with labels and colors.", |
| 9 |
"keywords": [ |
| 10 |
"step", |
| 11 |
"progress", |
| 12 |
"wizard", |
| 13 |
"steps", |
| 14 |
"process", |
| 15 |
"bar" |
| 16 |
], |
| 17 |
"textdomain": "blockenberg", |
| 18 |
"editorScript": "bkbg-step-progress-editor", |
| 19 |
"editorStyle": "bkbg-step-progress-style", |
| 20 |
"style": "bkbg-step-progress-style", |
| 21 |
"viewScript": "bkbg-step-progress-frontend", |
| 22 |
"supports": { |
| 23 |
"html": false, |
| 24 |
"anchor": true, |
| 25 |
"className": true, |
| 26 |
"align": [ |
| 27 |
"wide", |
| 28 |
"full" |
| 29 |
] |
| 30 |
}, |
| 31 |
"attributes": { |
| 32 |
"steps": { |
| 33 |
"type": "array", |
| 34 |
"default": [ |
| 35 |
{ |
| 36 |
"label": "Setup" |
| 37 |
}, |
| 38 |
{ |
| 39 |
"label": "Configure" |
| 40 |
}, |
| 41 |
{ |
| 42 |
"label": "Review" |
| 43 |
}, |
| 44 |
{ |
| 45 |
"label": "Done" |
| 46 |
} |
| 47 |
] |
| 48 |
}, |
| 49 |
"currentStep": { |
| 50 |
"type": "number", |
| 51 |
"default": 2 |
| 52 |
}, |
| 53 |
"showNumbers": { |
| 54 |
"type": "boolean", |
| 55 |
"default": true |
| 56 |
}, |
| 57 |
"barHeight": { |
| 58 |
"type": "number", |
| 59 |
"default": 4 |
| 60 |
}, |
| 61 |
"circleSize": { |
| 62 |
"type": "number", |
| 63 |
"default": 36 |
| 64 |
}, |
| 65 |
"completedColor": { |
| 66 |
"type": "string", |
| 67 |
"default": "#22c55e" |
| 68 |
}, |
| 69 |
"activeColor": { |
| 70 |
"type": "string", |
| 71 |
"default": "#6c3fb5" |
| 72 |
}, |
| 73 |
"pendingColor": { |
| 74 |
"type": "string", |
| 75 |
"default": "#e5e7eb" |
| 76 |
}, |
| 77 |
"labelSz": { |
| 78 |
"type": "number", |
| 79 |
"default": 13 |
| 80 |
}, |
| 81 |
"connectorStyle": { |
| 82 |
"type": "string", |
| 83 |
"default": "solid" |
| 84 |
}, |
| 85 |
"labelFontWeight": { |
| 86 |
"type": "string", |
| 87 |
"default": "400" |
| 88 |
}, |
| 89 |
"labelLineHeight": { |
| 90 |
"type": "number", |
| 91 |
"default": 1.4 |
| 92 |
}, |
| 93 |
"labelTypo": { |
| 94 |
"type": "object", |
| 95 |
"default": {} |
| 96 |
} |
| 97 |
} |
| 98 |
} |
| 99 |
|