| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/tooltip", |
| 5 |
"title": "Tooltip", |
| 6 |
"category": "bkbg-content", |
| 7 |
"icon": "info", |
| 8 |
"description": "Display a word or phrase with a hover tooltip popup — great for definitions, abbreviations, and inline explanations.", |
| 9 |
"keywords": [ |
| 10 |
"tooltip", |
| 11 |
"popover", |
| 12 |
"hint", |
| 13 |
"definition", |
| 14 |
"abbreviation", |
| 15 |
"hover", |
| 16 |
"info" |
| 17 |
], |
| 18 |
"textdomain": "blockenberg", |
| 19 |
"editorScript": "bkbg-tooltip-editor", |
| 20 |
"editorStyle": "bkbg-tooltip-style", |
| 21 |
"style": "bkbg-tooltip-style", |
| 22 |
"viewScript": "bkbg-tooltip-frontend", |
| 23 |
"supports": { |
| 24 |
"html": false, |
| 25 |
"anchor": true, |
| 26 |
"className": true, |
| 27 |
"align": [ |
| 28 |
"wide", |
| 29 |
"full" |
| 30 |
] |
| 31 |
}, |
| 32 |
"attributes": { |
| 33 |
"triggerText": { |
| 34 |
"type": "string", |
| 35 |
"default": "Hover over me" |
| 36 |
}, |
| 37 |
"tooltipContent": { |
| 38 |
"type": "string", |
| 39 |
"default": "This is the tooltip explanation. Add any helpful context here." |
| 40 |
}, |
| 41 |
"position": { |
| 42 |
"type": "string", |
| 43 |
"default": "top" |
| 44 |
}, |
| 45 |
"triggerStyle": { |
| 46 |
"type": "string", |
| 47 |
"default": "underline-dotted" |
| 48 |
}, |
| 49 |
"maxWidth": { |
| 50 |
"type": "number", |
| 51 |
"default": 260 |
| 52 |
}, |
| 53 |
"showArrow": { |
| 54 |
"type": "boolean", |
| 55 |
"default": true |
| 56 |
}, |
| 57 |
"animationType": { |
| 58 |
"type": "string", |
| 59 |
"default": "fade" |
| 60 |
}, |
| 61 |
"align": { |
| 62 |
"type": "string", |
| 63 |
"default": "left" |
| 64 |
}, |
| 65 |
"triggerTypo": { |
| 66 |
"type": "object", |
| 67 |
"default": {} |
| 68 |
}, |
| 69 |
"tooltipTypo": { |
| 70 |
"type": "object", |
| 71 |
"default": {} |
| 72 |
}, |
| 73 |
"tooltipPadding": { |
| 74 |
"type": "number", |
| 75 |
"default": 12 |
| 76 |
}, |
| 77 |
"tooltipRadius": { |
| 78 |
"type": "number", |
| 79 |
"default": 8 |
| 80 |
}, |
| 81 |
"triggerColor": { |
| 82 |
"type": "string", |
| 83 |
"default": "#6366f1" |
| 84 |
}, |
| 85 |
"underlineColor": { |
| 86 |
"type": "string", |
| 87 |
"default": "#6366f1" |
| 88 |
}, |
| 89 |
"highlightBg": { |
| 90 |
"type": "string", |
| 91 |
"default": "#ede9fe" |
| 92 |
}, |
| 93 |
"tooltipBg": { |
| 94 |
"type": "string", |
| 95 |
"default": "#1e293b" |
| 96 |
}, |
| 97 |
"tooltipColor": { |
| 98 |
"type": "string", |
| 99 |
"default": "#f8fafc" |
| 100 |
} |
| 101 |
} |
| 102 |
} |
| 103 |
|