| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "ghostkit/button", |
| 5 |
"category": "ghostkit", |
| 6 |
"title": "Buttons", |
| 7 |
"description": "Change important links to buttons to get more click rate.", |
| 8 |
"keywords": ["btn", "button"], |
| 9 |
"supports": { |
| 10 |
"html": false, |
| 11 |
"className": false, |
| 12 |
"anchor": true |
| 13 |
}, |
| 14 |
"attributes": { |
| 15 |
"align": { |
| 16 |
"type": "string", |
| 17 |
"default": "none" |
| 18 |
}, |
| 19 |
"count": { |
| 20 |
"type": "number", |
| 21 |
"default": 1 |
| 22 |
}, |
| 23 |
"gap": { |
| 24 |
"type": "string", |
| 25 |
"default": "md" |
| 26 |
}, |
| 27 |
"gapCustom": { |
| 28 |
"type": "number" |
| 29 |
}, |
| 30 |
"gapCustomVertical": { |
| 31 |
"type": "number" |
| 32 |
} |
| 33 |
}, |
| 34 |
"style": ["ghostkit", "ghostkit-block-button"], |
| 35 |
"viewScript": ["ghostkit", "ghostkit-block-button"] |
| 36 |
} |
| 37 |
|