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

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

189 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/author-profile",
5 "version": "1.0.0",
6 "title": "Author Profile",
7 "category": "bkbg-business",
8 "description": "Extended author bio card with avatar, name, role, bio, stats, and social links.",
9 "keywords": [
10 "author",
11 "bio",
12 "profile",
13 "team",
14 "social",
15 "about"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-author-profile-editor",
19 "style": "bkbg-author-profile-style",
20 "attributes": {
21 "name": {
22 "type": "string",
23 "default": "Dr. Sarah Chen"
24 },
25 "role": {
26 "type": "string",
27 "default": "AI Research Lead & Author"
28 },
29 "bio": {
30 "type": "string",
31 "default": "Sarah is a leading researcher in applied machine learning with 12+ years of experience building AI products at scale. She has published over 40 papers and speaks at NeurIPS, ICLR, and beyond."
32 },
33 "avatarUrl": {
34 "type": "string",
35 "default": ""
36 },
37 "avatarInitials": {
38 "type": "string",
39 "default": "SC"
40 },
41 "avatarColor": {
42 "type": "string",
43 "default": "#6366f1"
44 },
45 "avatarSize": {
46 "type": "number",
47 "default": 80
48 },
49 "showAvatar": {
50 "type": "boolean",
51 "default": true
52 },
53 "showRole": {
54 "type": "boolean",
55 "default": true
56 },
57 "showBio": {
58 "type": "boolean",
59 "default": true
60 },
61 "showStats": {
62 "type": "boolean",
63 "default": true
64 },
65 "showSocial": {
66 "type": "boolean",
67 "default": true
68 },
69 "layout": {
70 "type": "string",
71 "default": "horizontal"
72 },
73 "stats": {
74 "type": "array",
75 "default": [
76 {
77 "label": "Articles",
78 "value": "142"
79 },
80 {
81 "label": "Followers",
82 "value": "8.4K"
83 },
84 {
85 "label": "Avg. Read",
86 "value": "6 min"
87 }
88 ]
89 },
90 "socialLinks": {
91 "type": "array",
92 "default": [
93 {
94 "icon": "🐦",
95 "iconType": "custom-char",
96 "iconDashicon": "",
97 "iconImageUrl": "",
98 "label": "Twitter",
99 "url": ""
100 },
101 {
102 "icon": "💼",
103 "iconType": "custom-char",
104 "iconDashicon": "",
105 "iconImageUrl": "",
106 "label": "LinkedIn",
107 "url": ""
108 },
109 {
110 "icon": "✍️",
111 "iconType": "custom-char",
112 "iconDashicon": "",
113 "iconImageUrl": "",
114 "label": "Substack",
115 "url": ""
116 }
117 ]
118 },
119 "bgColor": {
120 "type": "string",
121 "default": "#ffffff"
122 },
123 "cardBg": {
124 "type": "string",
125 "default": "#f9fafb"
126 },
127 "borderColor": {
128 "type": "string",
129 "default": "#e5e7eb"
130 },
131 "nameColor": {
132 "type": "string",
133 "default": "#111827"
134 },
135 "roleColor": {
136 "type": "string",
137 "default": "#6366f1"
138 },
139 "textColor": {
140 "type": "string",
141 "default": "#374151"
142 },
143 "statValueColor": {
144 "type": "string",
145 "default": "#111827"
146 },
147 "statLabelColor": {
148 "type": "string",
149 "default": "#6b7280"
150 },
151 "borderRadius": {
152 "type": "number",
153 "default": 16
154 },
155 "padding": {
156 "type": "number",
157 "default": 28
158 },
159 "fontSize": {
160 "type": "number",
161 "default": 14
162 },
163 "nameFontSize": {
164 "type": "number",
165 "default": 20
166 },
167 "nameTypo": {
168 "type": "object",
169 "default": {}
170 },
171 "roleTypo": {
172 "type": "object",
173 "default": {}
174 },
175 "bioTypo": {
176 "type": "object",
177 "default": {}
178 },
179 "statValueTypo": {
180 "type": "object",
181 "default": {}
182 },
183 "statLabelTypo": {
184 "type": "object",
185 "default": {}
186 }
187 }
188 }
189