| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 2, |
| 4 |
"name": "core/separator", |
| 5 |
"title": "Separator", |
| 6 |
"category": "design", |
| 7 |
"description": "Create a break between ideas or sections with a horizontal separator.", |
| 8 |
"keywords": [ "horizontal-line", "hr", "divider" ], |
| 9 |
"textdomain": "default", |
| 10 |
"attributes": { |
| 11 |
"color": { |
| 12 |
"type": "string" |
| 13 |
}, |
| 14 |
"customColor": { |
| 15 |
"type": "string" |
| 16 |
} |
| 17 |
}, |
| 18 |
"supports": { |
| 19 |
"anchor": true, |
| 20 |
"align": [ "center", "wide", "full" ] |
| 21 |
}, |
| 22 |
"styles": [ |
| 23 |
{ "name": "default", "label": "Default", "isDefault": true }, |
| 24 |
{ "name": "wide", "label": "Wide Line" }, |
| 25 |
{ "name": "dots", "label": "Dots" } |
| 26 |
], |
| 27 |
"editorStyle": "wp-block-separator-editor", |
| 28 |
"style": "wp-block-separator" |
| 29 |
} |
| 30 |
|