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 / promo-banner / block.json

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

95 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/promo-banner",
5 "title": "Promo Banner",
6 "category": "bkbg-marketing",
7 "icon": "megaphone",
8 "description": "Dismissible announcement ribbon with message, link/button, gradient background and cookie memory.",
9 "keywords": [
10 "promo",
11 "banner",
12 "announcement",
13 "ribbon",
14 "deal",
15 "alert",
16 "bar"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-promo-banner-editor",
20 "editorStyle": "bkbg-promo-banner-style",
21 "style": "bkbg-promo-banner-style",
22 "viewScript": "bkbg-promo-banner-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "message": {
34 "type": "string",
35 "default": "\ud83c\udf89 Limited time offer \u2014 Save 20% today!"
36 },
37 "linkLabel": {
38 "type": "string",
39 "default": "Shop Now"
40 },
41 "linkUrl": {
42 "type": "string",
43 "default": "#"
44 },
45 "linkNewTab": {
46 "type": "boolean",
47 "default": false
48 },
49 "showLink": {
50 "type": "boolean",
51 "default": true
52 },
53 "showClose": {
54 "type": "boolean",
55 "default": true
56 },
57 "cookieDays": {
58 "type": "number",
59 "default": 3
60 },
61 "position": {
62 "type": "string",
63 "default": "top"
64 },
65 "bgColor": {
66 "type": "string",
67 "default": "#6c3fb5"
68 },
69 "bgColor2": {
70 "type": "string",
71 "default": "#e91e8c"
72 },
73 "useGradient": {
74 "type": "boolean",
75 "default": true
76 },
77 "textColor": {
78 "type": "string",
79 "default": "#ffffff"
80 },
81 "msgTypo": {
82 "type": "object",
83 "default": {}
84 },
85 "paddingV": {
86 "type": "number",
87 "default": 12
88 },
89 "animation": {
90 "type": "string",
91 "default": "slideDown"
92 }
93 }
94 }
95