| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "boldblocks/icon-separator", |
| 5 |
"title": "Icon Separator", |
| 6 |
"category": "design", |
| 7 |
"description": "A simple horizontal separator with icon.", |
| 8 |
"keywords": ["separator", "icon", "divider", "svg", "image"], |
| 9 |
"attributes": { |
| 10 |
"icon": { |
| 11 |
"type": "string" |
| 12 |
}, |
| 13 |
"iconWidth": { |
| 14 |
"type": "object" |
| 15 |
}, |
| 16 |
"iconSpacing": { |
| 17 |
"type": "object" |
| 18 |
}, |
| 19 |
"iconPosition": { |
| 20 |
"type": "string" |
| 21 |
}, |
| 22 |
"iconFillColor": { |
| 23 |
"type": "object" |
| 24 |
}, |
| 25 |
"iconStrokeColor": { |
| 26 |
"type": "object" |
| 27 |
}, |
| 28 |
"width": { |
| 29 |
"type": "object" |
| 30 |
}, |
| 31 |
"margin": { |
| 32 |
"type": "object" |
| 33 |
}, |
| 34 |
"justifyAlignment": { |
| 35 |
"type": "string" |
| 36 |
}, |
| 37 |
"border": { |
| 38 |
"type": "object", |
| 39 |
"default": { |
| 40 |
"width": "1px", |
| 41 |
"style": "solid" |
| 42 |
} |
| 43 |
} |
| 44 |
}, |
| 45 |
"supports": { |
| 46 |
"html": false, |
| 47 |
"align": true, |
| 48 |
"interactivity": { |
| 49 |
"clientNavigation": true |
| 50 |
} |
| 51 |
}, |
| 52 |
"textdomain": "icon-separator", |
| 53 |
"editorScript": "file:./index.js", |
| 54 |
"style": "file:./style-index.css" |
| 55 |
} |
| 56 |
|