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

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

213 lines 4.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/team-card",
4 "title": "Team Card",
5 "category": "bkbg-business",
6 "icon": "admin-users",
7 "description": "Standalone team member card with photo, name, role, bio, skills, and social links.",
8 "keywords": [
9 "team",
10 "member",
11 "person",
12 "card",
13 "bio",
14 "staff",
15 "profile",
16 "avatar"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-team-card-editor",
20 "editorStyle": "bkbg-team-card-style",
21 "style": "bkbg-team-card-style",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "name": {
31 "type": "string",
32 "default": "Alex Johnson"
33 },
34 "role": {
35 "type": "string",
36 "default": "Co-Founder & CEO"
37 },
38 "bio": {
39 "type": "string",
40 "default": "Alex brings 15+ years of experience building and scaling SaaS products from 0 to 100k users. Previously led product at two unicorn startups."
41 },
42 "photoUrl": {
43 "type": "string",
44 "default": ""
45 },
46 "photoId": {
47 "type": "number",
48 "default": 0
49 },
50 "photoSize": {
51 "type": "number",
52 "default": 120
53 },
54 "showPhoto": {
55 "type": "boolean",
56 "default": true
57 },
58 "twitterUrl": {
59 "type": "string",
60 "default": ""
61 },
62 "linkedinUrl": {
63 "type": "string",
64 "default": ""
65 },
66 "githubUrl": {
67 "type": "string",
68 "default": ""
69 },
70 "emailAddress": {
71 "type": "string",
72 "default": ""
73 },
74 "websiteUrl": {
75 "type": "string",
76 "default": ""
77 },
78 "showSocials": {
79 "type": "boolean",
80 "default": true
81 },
82 "skills": {
83 "type": "array",
84 "default": [
85 {
86 "label": "Product Strategy"
87 },
88 {
89 "label": "Growth"
90 },
91 {
92 "label": "Leadership"
93 }
94 ]
95 },
96 "showSkills": {
97 "type": "boolean",
98 "default": true
99 },
100 "style": {
101 "type": "string",
102 "default": "card"
103 },
104 "cardLayout": {
105 "type": "string",
106 "default": "portrait"
107 },
108 "accentColor": {
109 "type": "string",
110 "default": "#6c3fb5"
111 },
112 "maxWidth": {
113 "type": "number",
114 "default": 380
115 },
116 "cardRadius": {
117 "type": "number",
118 "default": 20
119 },
120 "cardPadding": {
121 "type": "number",
122 "default": 32
123 },
124 "photoRadius": {
125 "type": "number",
126 "default": 50
127 },
128 "nameTypo": {
129 "type": "object",
130 "default": {}
131 },
132 "roleTypo": {
133 "type": "object",
134 "default": {}
135 },
136 "bioTypo": {
137 "type": "object",
138 "default": {}
139 },
140 "skillSize": {
141 "type": "number",
142 "default": 12
143 },
144 "iconSize": {
145 "type": "number",
146 "default": 18
147 },
148 "align": {
149 "type": "string",
150 "default": "center"
151 },
152 "bgColor": {
153 "type": "string",
154 "default": "#ffffff"
155 },
156 "nameColor": {
157 "type": "string",
158 "default": "#0f172a"
159 },
160 "roleColor": {
161 "type": "string",
162 "default": "#6c3fb5"
163 },
164 "bioColor": {
165 "type": "string",
166 "default": "#475569"
167 },
168 "borderColor": {
169 "type": "string",
170 "default": "#e2e8f0"
171 },
172 "iconColor": {
173 "type": "string",
174 "default": "#64748b"
175 },
176 "skillBg": {
177 "type": "string",
178 "default": "#f1f5f9"
179 },
180 "skillColor": {
181 "type": "string",
182 "default": "#334155"
183 },
184 "nameLineHeight": {
185 "type": "number",
186 "default": 1.2
187 },
188 "bioLineHeight": {
189 "type": "number",
190 "default": 1.6
191 },
192 "nameSize": {
193 "type": "number",
194 "default": 22
195 },
196 "nameWeight": {
197 "type": "number",
198 "default": 700
199 },
200 "roleSize": {
201 "type": "number",
202 "default": 14
203 },
204 "roleWeight": {
205 "type": "number",
206 "default": 500
207 },
208 "bioSize": {
209 "type": "number",
210 "default": 15
211 }
212 }
213 }