| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/callout", |
| 5 |
"title": "Callout", |
| 6 |
"category": "bkbg-content", |
| 7 |
"icon": "megaphone", |
| 8 |
"description": "Highlighted panel for tips, warnings or success messages with icon, title and dismissible option.", |
| 9 |
"keywords": [ |
| 10 |
"callout", |
| 11 |
"tip", |
| 12 |
"warning", |
| 13 |
"info", |
| 14 |
"note", |
| 15 |
"panel", |
| 16 |
"highlight" |
| 17 |
], |
| 18 |
"textdomain": "blockenberg", |
| 19 |
"editorScript": "bkbg-callout-editor", |
| 20 |
"editorStyle": "bkbg-callout-style", |
| 21 |
"style": "bkbg-callout-style", |
| 22 |
"viewScript": "bkbg-callout-frontend", |
| 23 |
"supports": { |
| 24 |
"html": false, |
| 25 |
"anchor": true, |
| 26 |
"className": true, |
| 27 |
"align": [ |
| 28 |
"wide", |
| 29 |
"full" |
| 30 |
] |
| 31 |
}, |
| 32 |
"attributes": { |
| 33 |
"calloutType": { |
| 34 |
"type": "string", |
| 35 |
"default": "info" |
| 36 |
}, |
| 37 |
"showIcon": { |
| 38 |
"type": "boolean", |
| 39 |
"default": true |
| 40 |
}, |
| 41 |
"iconSvg": { |
| 42 |
"type": "string", |
| 43 |
"default": "" |
| 44 |
}, |
| 45 |
"title": { |
| 46 |
"type": "string", |
| 47 |
"default": "Did you know?" |
| 48 |
}, |
| 49 |
"body": { |
| 50 |
"type": "string", |
| 51 |
"default": "This is an important tip or note for your readers." |
| 52 |
}, |
| 53 |
"borderStyle": { |
| 54 |
"type": "string", |
| 55 |
"default": "left" |
| 56 |
}, |
| 57 |
"dismissible": { |
| 58 |
"type": "boolean", |
| 59 |
"default": false |
| 60 |
}, |
| 61 |
"bgColor": { |
| 62 |
"type": "string", |
| 63 |
"default": "" |
| 64 |
}, |
| 65 |
"borderColor": { |
| 66 |
"type": "string", |
| 67 |
"default": "" |
| 68 |
}, |
| 69 |
"textColor": { |
| 70 |
"type": "string", |
| 71 |
"default": "" |
| 72 |
}, |
| 73 |
"paddingV": { |
| 74 |
"type": "number", |
| 75 |
"default": 16 |
| 76 |
}, |
| 77 |
"paddingH": { |
| 78 |
"type": "number", |
| 79 |
"default": 20 |
| 80 |
}, |
| 81 |
"borderRadius": { |
| 82 |
"type": "number", |
| 83 |
"default": 6 |
| 84 |
}, |
| 85 |
"typoTitle": { |
| 86 |
"type": "object", |
| 87 |
"default": {} |
| 88 |
}, |
| 89 |
"typoBody": { |
| 90 |
"type": "object", |
| 91 |
"default": {} |
| 92 |
} |
| 93 |
} |
| 94 |
} |
| 95 |
|