PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / popup / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/popup/block.json

200 lines 4.8 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/popup",
5 "title": "Popup",
6 "category": "bkbg-marketing",
7 "icon": "external",
8 "description": "Popup/lightbox builder with a configurable trigger button and rich popup content \u2014 heading, text, image, CTA and close. Supports click, scroll-depth, time-delay and exit-intent triggers.",
9 "keywords": [
10 "popup",
11 "modal",
12 "lightbox",
13 "overlay",
14 "trigger",
15 "dialog"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-popup-editor",
19 "style": "bkbg-popup-style",
20 "viewScript": "bkbg-popup-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "triggerLabel": {
32 "type": "string",
33 "default": "Open Popup"
34 },
35 "triggerStyle": {
36 "type": "string",
37 "default": "filled"
38 },
39 "triggerSize": {
40 "type": "string",
41 "default": "md"
42 },
43 "triggerAlign": {
44 "type": "string",
45 "default": "center"
46 },
47 "triggerType": {
48 "type": "string",
49 "default": "click"
50 },
51 "scrollDepth": {
52 "type": "number",
53 "default": 40
54 },
55 "timeDelay": {
56 "type": "number",
57 "default": 3
58 },
59 "showOnce": {
60 "type": "string",
61 "default": "always"
62 },
63 "popupPosition": {
64 "type": "string",
65 "default": "center"
66 },
67 "popupSize": {
68 "type": "string",
69 "default": "md"
70 },
71 "popupWidth": {
72 "type": "number",
73 "default": 560
74 },
75 "popupAnimation": {
76 "type": "string",
77 "default": "scale"
78 },
79 "borderRadius": {
80 "type": "number",
81 "default": 16
82 },
83 "closeOnOverlay": {
84 "type": "boolean",
85 "default": true
86 },
87 "showCloseBtn": {
88 "type": "boolean",
89 "default": true
90 },
91 "imageUrl": {
92 "type": "string",
93 "default": ""
94 },
95 "imageId": {
96 "type": "number",
97 "default": 0
98 },
99 "imageAlt": {
100 "type": "string",
101 "default": ""
102 },
103 "imagePosition": {
104 "type": "string",
105 "default": "top"
106 },
107 "heading": {
108 "type": "string",
109 "default": "Get 20% Off Today"
110 },
111 "subtext": {
112 "type": "string",
113 "default": "Subscribe to our newsletter and get your exclusive discount code instantly."
114 },
115 "ctaLabel": {
116 "type": "string",
117 "default": "Claim Your Discount"
118 },
119 "ctaUrl": {
120 "type": "string",
121 "default": "#"
122 },
123 "ctaNewTab": {
124 "type": "boolean",
125 "default": false
126 },
127 "showCta": {
128 "type": "boolean",
129 "default": true
130 },
131 "ctaStyle": {
132 "type": "string",
133 "default": "filled"
134 },
135 "dismissLabel": {
136 "type": "string",
137 "default": "No thanks"
138 },
139 "showDismiss": {
140 "type": "boolean",
141 "default": true
142 },
143 "paddingTop": {
144 "type": "number",
145 "default": 0
146 },
147 "paddingBottom": {
148 "type": "number",
149 "default": 0
150 },
151 "overlayColor": {
152 "type": "string",
153 "default": "#000000"
154 },
155 "overlayOpacity": {
156 "type": "number",
157 "default": 60
158 },
159 "popupBg": {
160 "type": "string",
161 "default": "#ffffff"
162 },
163 "headingColor": {
164 "type": "string",
165 "default": "#111827"
166 },
167 "textColor": {
168 "type": "string",
169 "default": "#4b5563"
170 },
171 "btnBg": {
172 "type": "string",
173 "default": "#6366f1"
174 },
175 "btnColor": {
176 "type": "string",
177 "default": "#ffffff"
178 },
179 "triggerBg": {
180 "type": "string",
181 "default": "#6366f1"
182 },
183 "triggerColor": {
184 "type": "string",
185 "default": "#ffffff"
186 },
187 "dismissColor": {
188 "type": "string",
189 "default": "#9ca3af"
190 },
191 "headingTypo": {
192 "type": "object",
193 "default": {}
194 },
195 "bodyTypo": {
196 "type": "object",
197 "default": {}
198 }
199 }
200 }