| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/content-ticker", |
| 5 |
"title": "Content Ticker", |
| 6 |
"category": "bkbg-effects", |
| 7 |
"icon": "megaphone", |
| 8 |
"description": "A horizontal scrolling news/announcement ticker with a colored label prefix and clickable items.", |
| 9 |
"textdomain": "blockenberg", |
| 10 |
"editorScript": "bkbg-content-ticker-editor", |
| 11 |
"style": "bkbg-content-ticker-style", |
| 12 |
"viewScript": "bkbg-content-ticker-frontend", |
| 13 |
"supports": { |
| 14 |
"html": false, |
| 15 |
"anchor": true, |
| 16 |
"className": true, |
| 17 |
"align": [ |
| 18 |
"wide", |
| 19 |
"full" |
| 20 |
] |
| 21 |
}, |
| 22 |
"attributes": { |
| 23 |
"items": { |
| 24 |
"type": "array", |
| 25 |
"default": [ |
| 26 |
{ |
| 27 |
"text": "Welcome to our brand-new website — explore all our latest features!", |
| 28 |
"url": "" |
| 29 |
}, |
| 30 |
{ |
| 31 |
"text": "Big sale this weekend — up to 50% off across the entire store!", |
| 32 |
"url": "" |
| 33 |
}, |
| 34 |
{ |
| 35 |
"text": "We just published a new blog post — check it out now!", |
| 36 |
"url": "" |
| 37 |
}, |
| 38 |
{ |
| 39 |
"text": "Sign up for our newsletter and never miss an update!", |
| 40 |
"url": "" |
| 41 |
} |
| 42 |
] |
| 43 |
}, |
| 44 |
"prefix": { |
| 45 |
"type": "string", |
| 46 |
"default": "📢 Breaking" |
| 47 |
}, |
| 48 |
"showPrefix": { |
| 49 |
"type": "boolean", |
| 50 |
"default": true |
| 51 |
}, |
| 52 |
"speed": { |
| 53 |
"type": "number", |
| 54 |
"default": 60 |
| 55 |
}, |
| 56 |
"pauseOnHover": { |
| 57 |
"type": "boolean", |
| 58 |
"default": true |
| 59 |
}, |
| 60 |
"separator": { |
| 61 |
"type": "string", |
| 62 |
"default": " ◉ " |
| 63 |
}, |
| 64 |
"direction": { |
| 65 |
"type": "string", |
| 66 |
"default": "left" |
| 67 |
}, |
| 68 |
"height": { |
| 69 |
"type": "number", |
| 70 |
"default": 44 |
| 71 |
}, |
| 72 |
"fontSize": { |
| 73 |
"type": "number", |
| 74 |
"default": 14 |
| 75 |
}, |
| 76 |
"fontWeight": { |
| 77 |
"type": "number", |
| 78 |
"default": 400 |
| 79 |
}, |
| 80 |
"borderRadius": { |
| 81 |
"type": "number", |
| 82 |
"default": 6 |
| 83 |
}, |
| 84 |
"prefixPadding": { |
| 85 |
"type": "number", |
| 86 |
"default": 20 |
| 87 |
}, |
| 88 |
"prefixBg": { |
| 89 |
"type": "string", |
| 90 |
"default": "#ef4444" |
| 91 |
}, |
| 92 |
"prefixColor": { |
| 93 |
"type": "string", |
| 94 |
"default": "#ffffff" |
| 95 |
}, |
| 96 |
"tickerBg": { |
| 97 |
"type": "string", |
| 98 |
"default": "#1e1b4b" |
| 99 |
}, |
| 100 |
"tickerColor": { |
| 101 |
"type": "string", |
| 102 |
"default": "#e2e8f0" |
| 103 |
}, |
| 104 |
"linkColor": { |
| 105 |
"type": "string", |
| 106 |
"default": "#a5b4fc" |
| 107 |
}, |
| 108 |
"separatorColor": { |
| 109 |
"type": "string", |
| 110 |
"default": "#475569" |
| 111 |
}, |
| 112 |
"typoText": { |
| 113 |
"type": "object", |
| 114 |
"default": {} |
| 115 |
} |
| 116 |
} |
| 117 |
} |
| 118 |
|