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

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

205 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/team-slider",
5 "version": "1.0.0",
6 "title": "Team Slider",
7 "category": "bkbg-business",
8 "description": "Team members in an interactive carousel. Each member has avatar, name, role, bio, social links, and department tag.",
9 "keywords": [
10 "team",
11 "slider",
12 "carousel",
13 "members",
14 "staff",
15 "people"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-team-slider-editor",
19 "style": "bkbg-team-slider-style",
20 "viewScript": "bkbg-team-slider-frontend",
21 "supports": {
22 "html": false,
23 "align": [
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "heading": {
30 "type": "string",
31 "default": ""
32 },
33 "showHeading": {
34 "type": "boolean",
35 "default": false
36 },
37 "members": {
38 "type": "array",
39 "default": [
40 {
41 "name": "Jane Doe",
42 "role": "CEO & Founder",
43 "bio": "",
44 "imageUrl": "",
45 "imageId": 0,
46 "imageAlt": "",
47 "tag": "",
48 "linkedin": "",
49 "twitter": "",
50 "email": "",
51 "website": ""
52 }
53 ]
54 },
55 "perView": {
56 "type": "integer",
57 "default": 3
58 },
59 "autoplay": {
60 "type": "boolean",
61 "default": false
62 },
63 "autoplayDelay": {
64 "type": "integer",
65 "default": 4000
66 },
67 "showArrows": {
68 "type": "boolean",
69 "default": true
70 },
71 "showDots": {
72 "type": "boolean",
73 "default": true
74 },
75 "showBio": {
76 "type": "boolean",
77 "default": true
78 },
79 "showSocials": {
80 "type": "boolean",
81 "default": true
82 },
83 "showTag": {
84 "type": "boolean",
85 "default": true
86 },
87 "cardStyle": {
88 "type": "string",
89 "default": "default"
90 },
91 "avatarSize": {
92 "type": "integer",
93 "default": 80
94 },
95 "avatarRadius": {
96 "type": "integer",
97 "default": 50
98 },
99 "cardRadius": {
100 "type": "integer",
101 "default": 12
102 },
103 "paddingTop": {
104 "type": "integer",
105 "default": 0
106 },
107 "paddingBottom": {
108 "type": "integer",
109 "default": 0
110 },
111 "bgColor": {
112 "type": "string",
113 "default": ""
114 },
115 "cardBg": {
116 "type": "string",
117 "default": "#ffffff"
118 },
119 "cardBorder": {
120 "type": "string",
121 "default": "#e5e7eb"
122 },
123 "nameColor": {
124 "type": "string",
125 "default": "#111827"
126 },
127 "roleColor": {
128 "type": "string",
129 "default": "#6366f1"
130 },
131 "bioColor": {
132 "type": "string",
133 "default": "#6b7280"
134 },
135 "tagBg": {
136 "type": "string",
137 "default": "#ede9fe"
138 },
139 "tagColor": {
140 "type": "string",
141 "default": "#6366f1"
142 },
143 "socialColor": {
144 "type": "string",
145 "default": "#6b7280"
146 },
147 "socialHover": {
148 "type": "string",
149 "default": "#6366f1"
150 },
151 "dotColor": {
152 "type": "string",
153 "default": "#d1d5db"
154 },
155 "dotActive": {
156 "type": "string",
157 "default": "#6366f1"
158 },
159 "arrowBg": {
160 "type": "string",
161 "default": "#ffffff"
162 },
163 "arrowColor": {
164 "type": "string",
165 "default": "#374151"
166 },
167 "accentColor": {
168 "type": "string",
169 "default": "#6366f1"
170 },
171 "nameTypo": {
172 "type": "object",
173 "default": {}
174 },
175 "bioTypo": {
176 "type": "object",
177 "default": {}
178 },
179 "headingFontSize": {
180 "type": "number",
181 "default": 28
182 },
183 "nameFontSize": {
184 "type": "number",
185 "default": 17
186 },
187 "nameFontWeight": {
188 "type": "string",
189 "default": "700"
190 },
191 "roleFontSize": {
192 "type": "number",
193 "default": 13
194 },
195 "bioFontSize": {
196 "type": "number",
197 "default": 13
198 },
199 "bioLineHeight": {
200 "type": "number",
201 "default": 1.6
202 }
203 }
204 }
205