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

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

189 lines 4.5 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/contact-card",
5 "title": "Contact Card",
6 "category": "bkbg-business",
7 "description": "Business card block with photo, contact details, and social links. Multiple style variants.",
8 "keywords": [
9 "contact",
10 "vcard",
11 "profile",
12 "business card",
13 "team",
14 "social"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-contact-card-editor",
18 "editorStyle": "bkbg-contact-card-style",
19 "style": "bkbg-contact-card-style",
20 "viewScript": "bkbg-contact-card-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "name": {
32 "type": "string",
33 "default": "Sarah Johnson"
34 },
35 "jobTitle": {
36 "type": "string",
37 "default": "Lead Designer"
38 },
39 "company": {
40 "type": "string",
41 "default": "Acme Studio"
42 },
43 "email": {
44 "type": "string",
45 "default": "sarah@acme.studio"
46 },
47 "phone": {
48 "type": "string",
49 "default": "+1 (555) 234-5678"
50 },
51 "address": {
52 "type": "string",
53 "default": ""
54 },
55 "website": {
56 "type": "string",
57 "default": "https://acme.studio"
58 },
59 "photoUrl": {
60 "type": "string",
61 "default": ""
62 },
63 "photoId": {
64 "type": "number",
65 "default": 0
66 },
67 "showPhoto": {
68 "type": "boolean",
69 "default": true
70 },
71 "links": {
72 "type": "array",
73 "default": [
74 {
75 "platform": "linkedin",
76 "url": "#",
77 "label": "LinkedIn"
78 },
79 {
80 "platform": "dribbble",
81 "url": "#",
82 "label": "Dribbble"
83 },
84 {
85 "platform": "github",
86 "url": "#",
87 "label": "GitHub"
88 }
89 ]
90 },
91 "showLinks": {
92 "type": "boolean",
93 "default": true
94 },
95 "style": {
96 "type": "string",
97 "default": "card"
98 },
99 "cardOrientation": {
100 "type": "string",
101 "default": "vertical"
102 },
103 "maxWidth": {
104 "type": "number",
105 "default": 380
106 },
107 "align": {
108 "type": "string",
109 "default": "center"
110 },
111 "avatarSize": {
112 "type": "number",
113 "default": 88
114 },
115 "borderRadius": {
116 "type": "number",
117 "default": 16
118 },
119 "cardPadding": {
120 "type": "number",
121 "default": 28
122 },
123 "showShadow": {
124 "type": "boolean",
125 "default": true
126 },
127 "showDivider": {
128 "type": "boolean",
129 "default": true
130 },
131 "cardBg": {
132 "type": "string",
133 "default": "#ffffff"
134 },
135 "cardBorder": {
136 "type": "string",
137 "default": "#e5e7eb"
138 },
139 "nameColor": {
140 "type": "string",
141 "default": "#111827"
142 },
143 "titleColor": {
144 "type": "string",
145 "default": "#6b7280"
146 },
147 "companyColor": {
148 "type": "string",
149 "default": "#374151"
150 },
151 "iconBg": {
152 "type": "string",
153 "default": "#f1f5f9"
154 },
155 "iconColor": {
156 "type": "string",
157 "default": "#374151"
158 },
159 "linkColor": {
160 "type": "string",
161 "default": "#6366f1"
162 },
163 "dividerColor": {
164 "type": "string",
165 "default": "#f1f5f9"
166 },
167 "accentBg": {
168 "type": "string",
169 "default": "#6366f1"
170 },
171 "metaSize": {
172 "type": "number",
173 "default": 14
174 },
175 "nameSize": {
176 "type": "number",
177 "default": 20
178 },
179 "typoName": {
180 "type": "object",
181 "default": {}
182 },
183 "typoMeta": {
184 "type": "object",
185 "default": {}
186 }
187 }
188 }
189