12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "$schema": "https://schemas.wp.org/trunk/block.json",
- "apiVersion": 2,
- "name": "core/separator",
- "title": "Separator",
- "category": "design",
- "description": "Create a break between ideas or sections with a horizontal separator.",
- "keywords": [ "horizontal-line", "hr", "divider" ],
- "textdomain": "default",
- "attributes": {
- "opacity": {
- "type": "string",
- "default": "alpha-channel"
- }
- },
- "supports": {
- "anchor": true,
- "align": [ "center", "wide", "full" ],
- "color": {
- "__experimentalSkipSerialization": true,
- "gradients": true,
- "background": true,
- "text": false,
- "__experimentalDefaultControls": {
- "background": true
- }
- }
- },
- "styles": [
- { "name": "default", "label": "Default", "isDefault": true },
- { "name": "wide", "label": "Wide Line" },
- { "name": "dots", "label": "Dots" }
- ],
- "editorStyle": "wp-block-separator-editor",
- "style": "wp-block-separator"
- }
|