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

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

88 lines 2.1 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/avatar-group",
5 "title": "Avatar Group",
6 "category": "bkbg-business",
7 "icon": "groups",
8 "description": "Overlapping stack of user or team avatars with an optional +X counter bubble.",
9 "keywords": [
10 "avatar",
11 "group",
12 "users",
13 "team",
14 "overlap",
15 "stack",
16 "faces"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-avatar-group-editor",
20 "editorStyle": "bkbg-avatar-group-style",
21 "style": "bkbg-avatar-group-style",
22 "viewScript": "bkbg-avatar-group-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": []
28 },
29 "attributes": {
30 "avatars": {
31 "type": "array",
32 "default": []
33 },
34 "maxShown": {
35 "type": "number",
36 "default": 5
37 },
38 "avatarSize": {
39 "type": "number",
40 "default": 48
41 },
42 "overlap": {
43 "type": "number",
44 "default": 14
45 },
46 "direction": {
47 "type": "string",
48 "default": "right"
49 },
50 "borderColor": {
51 "type": "string",
52 "default": "#ffffff"
53 },
54 "borderWidth": {
55 "type": "number",
56 "default": 3
57 },
58 "counterBg": {
59 "type": "string",
60 "default": "#6c3fb5"
61 },
62 "counterText": {
63 "type": "string",
64 "default": "#ffffff"
65 },
66 "label": {
67 "type": "string",
68 "default": ""
69 },
70 "labelFontSize": {
71 "type": "number",
72 "default": 14
73 },
74 "counterFontSize": {
75 "type": "number",
76 "default": 13
77 },
78 "counterTypo": {
79 "type": "object",
80 "default": {}
81 },
82 "labelTypo": {
83 "type": "object",
84 "default": {}
85 }
86 }
87 }
88