| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/phone-button", |
| 5 |
"title": "Phone Button", |
| 6 |
"category": "bkbg-marketing", |
| 7 |
"description": "A floating or inline click-to-call / WhatsApp button with pulse animation.", |
| 8 |
"keywords": [ |
| 9 |
"phone", |
| 10 |
"call", |
| 11 |
"whatsapp", |
| 12 |
"contact", |
| 13 |
"floating", |
| 14 |
"button" |
| 15 |
], |
| 16 |
"textdomain": "blockenberg", |
| 17 |
"editorScript": "bkbg-phone-button-editor", |
| 18 |
"style": "bkbg-phone-button-style", |
| 19 |
"viewScript": "bkbg-phone-button-frontend", |
| 20 |
"supports": { |
| 21 |
"html": false, |
| 22 |
"anchor": true, |
| 23 |
"className": true, |
| 24 |
"align": [ |
| 25 |
"wide", |
| 26 |
"full" |
| 27 |
] |
| 28 |
}, |
| 29 |
"attributes": { |
| 30 |
"phoneNumber": { |
| 31 |
"type": "string", |
| 32 |
"default": "+1234567890" |
| 33 |
}, |
| 34 |
"whatsappNumber": { |
| 35 |
"type": "string", |
| 36 |
"default": "" |
| 37 |
}, |
| 38 |
"whatsappMessage": { |
| 39 |
"type": "string", |
| 40 |
"default": "Hello! I'd like to get in touch." |
| 41 |
}, |
| 42 |
"mode": { |
| 43 |
"type": "string", |
| 44 |
"default": "both" |
| 45 |
}, |
| 46 |
"layout": { |
| 47 |
"type": "string", |
| 48 |
"default": "floating" |
| 49 |
}, |
| 50 |
"position": { |
| 51 |
"type": "string", |
| 52 |
"default": "bottom-right" |
| 53 |
}, |
| 54 |
"showPulse": { |
| 55 |
"type": "boolean", |
| 56 |
"default": true |
| 57 |
}, |
| 58 |
"buttonText": { |
| 59 |
"type": "string", |
| 60 |
"default": "Call us" |
| 61 |
}, |
| 62 |
"showText": { |
| 63 |
"type": "boolean", |
| 64 |
"default": false |
| 65 |
}, |
| 66 |
"buttonSize": { |
| 67 |
"type": "number", |
| 68 |
"default": 56 |
| 69 |
}, |
| 70 |
"iconSize": { |
| 71 |
"type": "number", |
| 72 |
"default": 26 |
| 73 |
}, |
| 74 |
"borderRadius": { |
| 75 |
"type": "number", |
| 76 |
"default": 999 |
| 77 |
}, |
| 78 |
"gap": { |
| 79 |
"type": "number", |
| 80 |
"default": 14 |
| 81 |
}, |
| 82 |
"shadowStrength": { |
| 83 |
"type": "number", |
| 84 |
"default": 30 |
| 85 |
}, |
| 86 |
"scrollOffset": { |
| 87 |
"type": "number", |
| 88 |
"default": 0 |
| 89 |
}, |
| 90 |
"phoneBg": { |
| 91 |
"type": "string", |
| 92 |
"default": "#6366f1" |
| 93 |
}, |
| 94 |
"phoneColor": { |
| 95 |
"type": "string", |
| 96 |
"default": "#ffffff" |
| 97 |
}, |
| 98 |
"phonePulseBg": { |
| 99 |
"type": "string", |
| 100 |
"default": "#6366f1" |
| 101 |
}, |
| 102 |
"whatsappBg": { |
| 103 |
"type": "string", |
| 104 |
"default": "#25d366" |
| 105 |
}, |
| 106 |
"whatsappColor": { |
| 107 |
"type": "string", |
| 108 |
"default": "#ffffff" |
| 109 |
}, |
| 110 |
"whatsappPulseBg": { |
| 111 |
"type": "string", |
| 112 |
"default": "#25d366" |
| 113 |
}, |
| 114 |
"labelBg": { |
| 115 |
"type": "string", |
| 116 |
"default": "#1e1b4b" |
| 117 |
}, |
| 118 |
"labelColor": { |
| 119 |
"type": "string", |
| 120 |
"default": "#ffffff" |
| 121 |
}, |
| 122 |
"labelTypo": { |
| 123 |
"type": "object", |
| 124 |
"default": {} |
| 125 |
} |
| 126 |
} |
| 127 |
} |