PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / announcement-strip / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/announcement-strip/block.json

123 lines 3.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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