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 / cookie-consent / block.json

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

159 lines 4.0 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/cookie-consent",
5 "title": "Cookie Consent",
6 "description": "GDPR-compliant cookie consent banner with customizable position, layout, categories, and GTM integration.",
7 "category": "bkbg-marketing",
8 "icon": "shield",
9 "keywords": [
10 "cookie",
11 "gdpr",
12 "consent",
13 "privacy",
14 "banner",
15 "gtm"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-cookie-consent-editor",
19 "editorStyle": "bkbg-cookie-consent-style",
20 "style": "bkbg-cookie-consent-style",
21 "viewScript": "bkbg-cookie-consent-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": false,
26 "align": false
27 },
28 "attributes": {
29 "message": {
30 "type": "string",
31 "default": "We use cookies to enhance your experience, analyze site traffic, and serve personalized content. By clicking \"Accept All\", you consent to our use of cookies."
32 },
33 "acceptLabel": {
34 "type": "string",
35 "default": "Accept All"
36 },
37 "declineLabel": {
38 "type": "string",
39 "default": "Decline"
40 },
41 "customizeLabel": {
42 "type": "string",
43 "default": "Customize"
44 },
45 "showDecline": {
46 "type": "boolean",
47 "default": true
48 },
49 "showCustomize": {
50 "type": "boolean",
51 "default": false
52 },
53 "privacyLabel": {
54 "type": "string",
55 "default": "Privacy Policy"
56 },
57 "privacyUrl": {
58 "type": "string",
59 "default": ""
60 },
61 "position": {
62 "type": "string",
63 "default": "bottom"
64 },
65 "layout": {
66 "type": "string",
67 "default": "bar"
68 },
69 "cookieName": {
70 "type": "string",
71 "default": "bkbg_cookie_consent"
72 },
73 "cookieDays": {
74 "type": "number",
75 "default": 365
76 },
77 "showAnalytics": {
78 "type": "boolean",
79 "default": true
80 },
81 "showMarketing": {
82 "type": "boolean",
83 "default": true
84 },
85 "showFunctional": {
86 "type": "boolean",
87 "default": true
88 },
89 "analyticsLabel": {
90 "type": "string",
91 "default": "Analytics"
92 },
93 "marketingLabel": {
94 "type": "string",
95 "default": "Marketing"
96 },
97 "functionalLabel": {
98 "type": "string",
99 "default": "Functional"
100 },
101 "bgColor": {
102 "type": "string",
103 "default": "#1f2937"
104 },
105 "textColor": {
106 "type": "string",
107 "default": "#f9fafb"
108 },
109 "acceptBg": {
110 "type": "string",
111 "default": "#2563eb"
112 },
113 "acceptColor": {
114 "type": "string",
115 "default": "#ffffff"
116 },
117 "declineBg": {
118 "type": "string",
119 "default": "transparent"
120 },
121 "declineColor": {
122 "type": "string",
123 "default": "#9ca3af"
124 },
125 "declineBorderColor": {
126 "type": "string",
127 "default": "#4b5563"
128 },
129 "linkColor": {
130 "type": "string",
131 "default": "#93c5fd"
132 },
133 "borderRadius": {
134 "type": "number",
135 "default": 10
136 },
137 "padding": {
138 "type": "number",
139 "default": 16
140 },
141 "maxWidth": {
142 "type": "number",
143 "default": 900
144 },
145 "fontSize": {
146 "type": "number",
147 "default": 14
148 },
149 "animation": {
150 "type": "string",
151 "default": "slide"
152 },
153 "typoMessage": {
154 "type": "object",
155 "default": {}
156 }
157 }
158 }
159