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

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

201 lines 4.9 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/email-signature",
5 "version": "1.0.0",
6 "title": "Email Signature",
7 "category": "bkbg-business",
8 "icon": "email",
9 "description": "Design and preview a rich HTML email signature with avatar, name, title, company, phone, email, website, social links, and an optional branded banner or divider. Outputs email-client-safe table-based HTML.",
10 "keywords": [
11 "email signature",
12 "email",
13 "signature",
14 "contact",
15 "business card",
16 "gmail signature"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-email-signature-editor",
20 "style": "bkbg-email-signature-style",
21 "supports": {
22 "html": false
23 },
24 "attributes": {
25 "name": {
26 "type": "string",
27 "default": "Sarah Mitchell"
28 },
29 "title": {
30 "type": "string",
31 "default": "Head of Marketing"
32 },
33 "company": {
34 "type": "string",
35 "default": "Luminary Technologies"
36 },
37 "phone": {
38 "type": "string",
39 "default": "+1 (555) 234-5678"
40 },
41 "email": {
42 "type": "string",
43 "default": "sarah@luminary.io"
44 },
45 "website": {
46 "type": "string",
47 "default": "luminary.io"
48 },
49 "showPhone": {
50 "type": "boolean",
51 "default": true
52 },
53 "showEmail": {
54 "type": "boolean",
55 "default": true
56 },
57 "showWebsite": {
58 "type": "boolean",
59 "default": true
60 },
61 "avatarUrl": {
62 "type": "string",
63 "default": ""
64 },
65 "avatarId": {
66 "type": "integer",
67 "default": 0
68 },
69 "avatarSize": {
70 "type": "integer",
71 "default": 72
72 },
73 "showAvatar": {
74 "type": "boolean",
75 "default": true
76 },
77 "avatarRadius": {
78 "type": "integer",
79 "default": 50
80 },
81 "showBanner": {
82 "type": "boolean",
83 "default": false
84 },
85 "bannerUrl": {
86 "type": "string",
87 "default": ""
88 },
89 "bannerId": {
90 "type": "integer",
91 "default": 0
92 },
93 "bannerLink": {
94 "type": "string",
95 "default": "#"
96 },
97 "bannerWidth": {
98 "type": "integer",
99 "default": 400
100 },
101 "twitterUrl": {
102 "type": "string",
103 "default": ""
104 },
105 "linkedinUrl": {
106 "type": "string",
107 "default": ""
108 },
109 "githubUrl": {
110 "type": "string",
111 "default": ""
112 },
113 "instagramUrl": {
114 "type": "string",
115 "default": ""
116 },
117 "youtubeUrl": {
118 "type": "string",
119 "default": ""
120 },
121 "showSocials": {
122 "type": "boolean",
123 "default": true
124 },
125 "style": {
126 "type": "string",
127 "default": "modern"
128 },
129 "dividerStyle": {
130 "type": "string",
131 "default": "line"
132 },
133 "nameSize": {
134 "type": "integer",
135 "default": 17
136 },
137 "nameWeight": {
138 "type": "integer",
139 "default": 700
140 },
141 "nameLineHeight": {
142 "type": "number",
143 "default": 1.2
144 },
145 "titleSize": {
146 "type": "integer",
147 "default": 13
148 },
149 "titleWeight": {
150 "type": "string",
151 "default": "600"
152 },
153 "titleLineHeight": {
154 "type": "number",
155 "default": 1.4
156 },
157 "infoSize": {
158 "type": "integer",
159 "default": 13
160 },
161 "socialIconSize": {
162 "type": "integer",
163 "default": 16
164 },
165 "accentColor": {
166 "type": "string",
167 "default": "#6c3fb5"
168 },
169 "nameColor": {
170 "type": "string",
171 "default": "#0f172a"
172 },
173 "titleColor": {
174 "type": "string",
175 "default": "#6c3fb5"
176 },
177 "companyColor": {
178 "type": "string",
179 "default": "#374151"
180 },
181 "infoColor": {
182 "type": "string",
183 "default": "#64748b"
184 },
185 "dividerColor": {
186 "type": "string",
187 "default": "#e2e8f0"
188 },
189 "socialColor": {
190 "type": "string",
191 "default": "#64748b"
192 },
193 "bgColor": {
194 "type": "string",
195 "default": "#ffffff"
196 },
197 "typoName": { "type": "object", "default": {} },
198 "typoJobTitle": { "type": "object", "default": {} }
199 }
200 }
201