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

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

137 lines 3.4 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/newsletter",
5 "title": "Newsletter Signup",
6 "category": "bkbg-marketing",
7 "icon": "email",
8 "description": "Email opt-in form that stores subscribers via the built-in /subscribe REST endpoint.",
9 "keywords": [
10 "newsletter",
11 "subscribe",
12 "email",
13 "opt-in"
14 ],
15 "textdomain": "blockenberg",
16 "editorScript": "bkbg-newsletter-editor",
17 "style": "bkbg-newsletter-style",
18 "viewScript": "bkbg-newsletter-frontend",
19 "supports": {
20 "html": false,
21 "align": [
22 "wide",
23 "full"
24 ]
25 },
26 "attributes": {
27 "heading": {
28 "type": "string",
29 "default": "Stay in the Loop"
30 },
31 "subheading": {
32 "type": "string",
33 "default": "Get the latest updates delivered straight to your inbox."
34 },
35 "showName": {
36 "type": "boolean",
37 "default": false
38 },
39 "placeholderEmail": {
40 "type": "string",
41 "default": "Your email address"
42 },
43 "placeholderName": {
44 "type": "string",
45 "default": "Your name"
46 },
47 "submitLabel": {
48 "type": "string",
49 "default": "Subscribe"
50 },
51 "successMessage": {
52 "type": "string",
53 "default": "🎉 You're subscribed! Thank you."
54 },
55 "errorMessage": {
56 "type": "string",
57 "default": "Please enter a valid email address."
58 },
59 "layout": {
60 "type": "string",
61 "default": "vertical"
62 },
63 "style": {
64 "type": "string",
65 "default": "card"
66 },
67 "showIcon": {
68 "type": "boolean",
69 "default": true
70 },
71 "bgColor": {
72 "type": "string",
73 "default": "#f0f9ff"
74 },
75 "textColor": {
76 "type": "string",
77 "default": "#1e3a5f"
78 },
79 "headingColor": {
80 "type": "string",
81 "default": "#0f172a"
82 },
83 "subtitleColor": {
84 "type": "string",
85 "default": "#475569"
86 },
87 "fieldBg": {
88 "type": "string",
89 "default": "#ffffff"
90 },
91 "fieldBorderColor": {
92 "type": "string",
93 "default": "#cbd5e1"
94 },
95 "btnBg": {
96 "type": "string",
97 "default": "#2563eb"
98 },
99 "btnColor": {
100 "type": "string",
101 "default": "#ffffff"
102 },
103 "borderRadius": {
104 "type": "number",
105 "default": 12
106 },
107 "btnRadius": {
108 "type": "number",
109 "default": 8
110 },
111 "maxWidth": {
112 "type": "number",
113 "default": 560
114 },
115 "headingSize": {
116 "type": "number",
117 "default": 26
118 },
119 "subtitleSize": {
120 "type": "number",
121 "default": 15
122 },
123 "padding": {
124 "type": "number",
125 "default": 40
126 },
127 "headingTypo": {
128 "type": "object",
129 "default": {}
130 },
131 "subtitleTypo": {
132 "type": "object",
133 "default": {}
134 }
135 }
136 }
137