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

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

256 lines 6.3 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/bio-card",
5 "version": "1.0.0",
6 "title": "Bio Card",
7 "category": "bkbg-business",
8 "icon": "id",
9 "description": "Rich individual profile card with photo, name, role, bio text, skill tags, social links, availability badge, and CTA button.",
10 "keywords": [
11 "bio",
12 "profile",
13 "person",
14 "card",
15 "about",
16 "team",
17 "author",
18 "speaker",
19 "freelancer"
20 ],
21 "textdomain": "blockenberg",
22 "editorScript": "bkbg-bio-card-editor",
23 "editorStyle": "bkbg-bio-card-style",
24 "style": "bkbg-bio-card-style",
25 "viewScript": "bkbg-bio-card-frontend",
26 "supports": {
27 "html": false,
28 "anchor": true,
29 "className": true,
30 "align": [
31 "wide",
32 "full"
33 ]
34 },
35 "attributes": {
36 "photoUrl": {
37 "type": "string",
38 "default": ""
39 },
40 "photoId": {
41 "type": "number",
42 "default": 0
43 },
44 "photoShape": {
45 "type": "string",
46 "default": "circle"
47 },
48 "photoSize": {
49 "type": "number",
50 "default": 120
51 },
52 "photoBorderWidth": {
53 "type": "number",
54 "default": 3
55 },
56 "photoBorderColor": {
57 "type": "string",
58 "default": "#6c3fb5"
59 },
60 "name": {
61 "type": "string",
62 "default": "Alex Johnson"
63 },
64 "nameTag": {
65 "type": "string",
66 "default": "h3"
67 },
68 "role": {
69 "type": "string",
70 "default": "UX Designer & Developer"
71 },
72 "company": {
73 "type": "string",
74 "default": ""
75 },
76 "bio": {
77 "type": "string",
78 "default": "Passionate about crafting intuitive digital experiences. 10+ years building products that users love, from early-stage startups to Fortune 500 companies."
79 },
80 "showAvailability": {
81 "type": "boolean",
82 "default": true
83 },
84 "availabilityStatus": {
85 "type": "string",
86 "default": "available"
87 },
88 "availabilityLabel": {
89 "type": "string",
90 "default": "Available for freelance"
91 },
92 "skills": {
93 "type": "array",
94 "default": [
95 {
96 "id": "sk1",
97 "label": "UX Design",
98 "color": "#6c3fb5"
99 },
100 {
101 "id": "sk2",
102 "label": "React",
103 "color": "#3b82f6"
104 },
105 {
106 "id": "sk3",
107 "label": "Figma",
108 "color": "#f59e0b"
109 },
110 {
111 "id": "sk4",
112 "label": "TypeScript",
113 "color": "#10b981"
114 },
115 {
116 "id": "sk5",
117 "label": "Prototyping",
118 "color": "#ef4444"
119 }
120 ]
121 },
122 "showSkills": {
123 "type": "boolean",
124 "default": true
125 },
126 "socialLinks": {
127 "type": "array",
128 "default": [
129 {
130 "id": "sl1",
131 "platform": "twitter",
132 "url": "#"
133 },
134 {
135 "id": "sl2",
136 "platform": "linkedin",
137 "url": "#"
138 },
139 {
140 "id": "sl3",
141 "platform": "github",
142 "url": "#"
143 }
144 ]
145 },
146 "showSocial": {
147 "type": "boolean",
148 "default": true
149 },
150 "ctaText": {
151 "type": "string",
152 "default": "Get in Touch"
153 },
154 "ctaUrl": {
155 "type": "string",
156 "default": "#"
157 },
158 "ctaTarget": {
159 "type": "boolean",
160 "default": false
161 },
162 "showCta": {
163 "type": "boolean",
164 "default": true
165 },
166 "ctaStyle": {
167 "type": "string",
168 "default": "filled"
169 },
170 "layout": {
171 "type": "string",
172 "default": "card-center"
173 },
174 "cardBg": {
175 "type": "string",
176 "default": "#ffffff"
177 },
178 "cardRadius": {
179 "type": "number",
180 "default": 20
181 },
182 "cardPadding": {
183 "type": "number",
184 "default": 40
185 },
186 "showShadow": {
187 "type": "boolean",
188 "default": true
189 },
190 "maxWidth": {
191 "type": "number",
192 "default": 480
193 },
194 "nameSize": {
195 "type": "number",
196 "default": 24
197 },
198 "roleSize": {
199 "type": "number",
200 "default": 14
201 },
202 "bioSize": {
203 "type": "number",
204 "default": 15
205 },
206 "skillTagSize": {
207 "type": "number",
208 "default": 12
209 },
210 "skillTagRadius": {
211 "type": "number",
212 "default": 99
213 },
214 "nameColor": {
215 "type": "string",
216 "default": "#1e293b"
217 },
218 "roleColor": {
219 "type": "string",
220 "default": "#6b7280"
221 },
222 "bioColor": {
223 "type": "string",
224 "default": "#374151"
225 },
226 "accentColor": {
227 "type": "string",
228 "default": "#6c3fb5"
229 },
230 "bgColor": {
231 "type": "string",
232 "default": ""
233 },
234 "paddingTop": {
235 "type": "number",
236 "default": 40
237 },
238 "paddingBottom": {
239 "type": "number",
240 "default": 40
241 },
242 "nameTypo": {
243 "type": "object",
244 "default": {}
245 },
246 "roleTypo": {
247 "type": "object",
248 "default": {}
249 },
250 "bioTypo": {
251 "type": "object",
252 "default": {}
253 }
254 }
255 }
256