| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/hotspot-image", |
| 5 |
"title": "Hotspot Image", |
| 6 |
"category": "bkbg-media", |
| 7 |
"icon": "location-alt", |
| 8 |
"description": "Image with interactive hotspot pins that reveal tooltips on hover or click.", |
| 9 |
"keywords": [ |
| 10 |
"hotspot", |
| 11 |
"image", |
| 12 |
"pin", |
| 13 |
"tooltip", |
| 14 |
"annotation", |
| 15 |
"interactive" |
| 16 |
], |
| 17 |
"textdomain": "blockenberg", |
| 18 |
"editorScript": "bkbg-hotspot-image-editor", |
| 19 |
"editorStyle": "bkbg-hotspot-image-style", |
| 20 |
"style": "bkbg-hotspot-image-style", |
| 21 |
"viewScript": "bkbg-hotspot-image-frontend", |
| 22 |
"supports": { |
| 23 |
"html": false, |
| 24 |
"anchor": true, |
| 25 |
"className": true, |
| 26 |
"align": [ |
| 27 |
"wide", |
| 28 |
"full" |
| 29 |
] |
| 30 |
}, |
| 31 |
"attributes": { |
| 32 |
"imageUrl": { |
| 33 |
"type": "string", |
| 34 |
"default": "" |
| 35 |
}, |
| 36 |
"imageId": { |
| 37 |
"type": "number", |
| 38 |
"default": 0 |
| 39 |
}, |
| 40 |
"imageAlt": { |
| 41 |
"type": "string", |
| 42 |
"default": "" |
| 43 |
}, |
| 44 |
"hotspots": { |
| 45 |
"type": "array", |
| 46 |
"default": [ |
| 47 |
{ |
| 48 |
"x": 30, |
| 49 |
"y": 40, |
| 50 |
"title": "Feature One", |
| 51 |
"content": "Description of this highlighted area.", |
| 52 |
"tooltipPos": "right" |
| 53 |
}, |
| 54 |
{ |
| 55 |
"x": 65, |
| 56 |
"y": 25, |
| 57 |
"title": "Feature Two", |
| 58 |
"content": "Another annotation tooltip here.", |
| 59 |
"tooltipPos": "bottom" |
| 60 |
} |
| 61 |
] |
| 62 |
}, |
| 63 |
"trigger": { |
| 64 |
"type": "string", |
| 65 |
"default": "hover" |
| 66 |
}, |
| 67 |
"markerStyle": { |
| 68 |
"type": "string", |
| 69 |
"default": "pulse" |
| 70 |
}, |
| 71 |
"markerColor": { |
| 72 |
"type": "string", |
| 73 |
"default": "#6c3fb5" |
| 74 |
}, |
| 75 |
"tooltipBg": { |
| 76 |
"type": "string", |
| 77 |
"default": "#1e1e2e" |
| 78 |
}, |
| 79 |
"tooltipText": { |
| 80 |
"type": "string", |
| 81 |
"default": "#ffffff" |
| 82 |
}, |
| 83 |
"markerSize": { |
| 84 |
"type": "number", |
| 85 |
"default": 18 |
| 86 |
}, |
| 87 |
"borderRadius": { |
| 88 |
"type": "number", |
| 89 |
"default": 12 |
| 90 |
}, |
| 91 |
"titleTypo": { |
| 92 |
"type": "object", |
| 93 |
"default": {} |
| 94 |
}, |
| 95 |
"contentTypo": { |
| 96 |
"type": "object", |
| 97 |
"default": {} |
| 98 |
} |
| 99 |
} |
| 100 |
} |
| 101 |
|