| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/announcement-strip", |
| 5 |
"title": "Announcement Strip", |
| 6 |
"category": "bkbg-marketing", |
| 7 |
"icon": "megaphone", |
| 8 |
"description": "A thin dismissible announcement bar — ideal above the site header for promotions, launches, or alerts.", |
| 9 |
"textdomain": "blockenberg", |
| 10 |
"editorScript": "bkbg-announcement-strip-editor", |
| 11 |
"style": "bkbg-announcement-strip-style", |
| 12 |
"viewScript": "bkbg-announcement-strip-frontend", |
| 13 |
"attributes": { |
| 14 |
"text": { |
| 15 |
"type": "string", |
| 16 |
"default": "🎉 We just launched something big — save 40% this week only!" |
| 17 |
}, |
| 18 |
"linkLabel": { |
| 19 |
"type": "string", |
| 20 |
"default": "Learn more →" |
| 21 |
}, |
| 22 |
"linkUrl": { |
| 23 |
"type": "string", |
| 24 |
"default": "#" |
| 25 |
}, |
| 26 |
"linkTarget": { |
| 27 |
"type": "string", |
| 28 |
"default": "_self" |
| 29 |
}, |
| 30 |
"showLink": { |
| 31 |
"type": "boolean", |
| 32 |
"default": true |
| 33 |
}, |
| 34 |
"showClose": { |
| 35 |
"type": "boolean", |
| 36 |
"default": true |
| 37 |
}, |
| 38 |
"closeId": { |
| 39 |
"type": "string", |
| 40 |
"default": "anst-1" |
| 41 |
}, |
| 42 |
"closeDays": { |
| 43 |
"type": "number", |
| 44 |
"default": 7 |
| 45 |
}, |
| 46 |
"style": { |
| 47 |
"type": "string", |
| 48 |
"default": "gradient" |
| 49 |
}, |
| 50 |
"textAlign": { |
| 51 |
"type": "string", |
| 52 |
"default": "center" |
| 53 |
}, |
| 54 |
"paddingY": { |
| 55 |
"type": "number", |
| 56 |
"default": 11 |
| 57 |
}, |
| 58 |
"fontSize": { |
| 59 |
"type": "number", |
| 60 |
"default": 14 |
| 61 |
}, |
| 62 |
"showBadge": { |
| 63 |
"type": "boolean", |
| 64 |
"default": true |
| 65 |
}, |
| 66 |
"badgeText": { |
| 67 |
"type": "string", |
| 68 |
"default": "New" |
| 69 |
}, |
| 70 |
"showCountdown": { |
| 71 |
"type": "boolean", |
| 72 |
"default": false |
| 73 |
}, |
| 74 |
"countdownDate": { |
| 75 |
"type": "string", |
| 76 |
"default": "" |
| 77 |
}, |
| 78 |
"bgColor": { |
| 79 |
"type": "string", |
| 80 |
"default": "#6c3fb5" |
| 81 |
}, |
| 82 |
"bgGradient": { |
| 83 |
"type": "string", |
| 84 |
"default": "linear-gradient(90deg,#6c3fb5 0%,#2563eb 100%)" |
| 85 |
}, |
| 86 |
"textColor": { |
| 87 |
"type": "string", |
| 88 |
"default": "#ffffff" |
| 89 |
}, |
| 90 |
"linkColor": { |
| 91 |
"type": "string", |
| 92 |
"default": "#fde68a" |
| 93 |
}, |
| 94 |
"badgeBg": { |
| 95 |
"type": "string", |
| 96 |
"default": "rgba(255,255,255,0.22)" |
| 97 |
}, |
| 98 |
"badgeColor": { |
| 99 |
"type": "string", |
| 100 |
"default": "#ffffff" |
| 101 |
}, |
| 102 |
"textTypo": { |
| 103 |
"type": "object", |
| 104 |
"default": {} |
| 105 |
} |
| 106 |
}, |
| 107 |
"supports": { |
| 108 |
"html": false, |
| 109 |
"align": [ |
| 110 |
"full" |
| 111 |
] |
| 112 |
}, |
| 113 |
"keywords": [ |
| 114 |
"announcement", |
| 115 |
"bar", |
| 116 |
"strip", |
| 117 |
"promo", |
| 118 |
"banner", |
| 119 |
"top bar", |
| 120 |
"notification" |
| 121 |
] |
| 122 |
} |
| 123 |
|