PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / bracket / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/bracket/block.json

179 lines 4.3 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/bracket",
5 "title": "Tournament Bracket",
6 "description": "Visual single-elimination tournament or playoff bracket with clickable winner selection.",
7 "category": "bkbg-interactive",
8 "icon": "randomize",
9 "keywords": [
10 "bracket",
11 "tournament",
12 "playoff",
13 "competition",
14 "sports",
15 "elimination"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-bracket-editor",
19 "editorStyle": "bkbg-bracket-style",
20 "style": "bkbg-bracket-style",
21 "viewScript": "bkbg-bracket-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "bracketTitle": {
33 "type": "string",
34 "default": "Spring Championship 2026"
35 },
36 "showTitle": {
37 "type": "boolean",
38 "default": true
39 },
40 "bracketSize": {
41 "type": "number",
42 "default": 8
43 },
44 "teams": {
45 "type": "array",
46 "default": [
47 "Team Alpha",
48 "Team Beta",
49 "Team Gamma",
50 "Team Delta",
51 "Team Epsilon",
52 "Team Zeta",
53 "Team Eta",
54 "Team Theta"
55 ]
56 },
57 "winners": {
58 "type": "object",
59 "default": {}
60 },
61 "roundLabels": {
62 "type": "array",
63 "default": [
64 "Quarterfinals",
65 "Semifinals",
66 "Final"
67 ]
68 },
69 "winnerLabel": {
70 "type": "string",
71 "default": "🏆 Champion"
72 },
73 "showSeeds": {
74 "type": "boolean",
75 "default": true
76 },
77 "showRoundLabels": {
78 "type": "boolean",
79 "default": true
80 },
81 "borderRadius": {
82 "type": "number",
83 "default": 8
84 },
85 "matchPadding": {
86 "type": "number",
87 "default": 8
88 },
89 "bgColor": {
90 "type": "string",
91 "default": "#f8fafc"
92 },
93 "borderColor": {
94 "type": "string",
95 "default": "#e2e8f0"
96 },
97 "matchBg": {
98 "type": "string",
99 "default": "#ffffff"
100 },
101 "matchBorderColor": {
102 "type": "string",
103 "default": "#cbd5e1"
104 },
105 "teamColor": {
106 "type": "string",
107 "default": "#334155"
108 },
109 "winnerBg": {
110 "type": "string",
111 "default": "#fef9c3"
112 },
113 "winnerColor": {
114 "type": "string",
115 "default": "#713f12"
116 },
117 "winnerBorderColor": {
118 "type": "string",
119 "default": "#fbbf24"
120 },
121 "loserColor": {
122 "type": "string",
123 "default": "#cbd5e1"
124 },
125 "connectorColor": {
126 "type": "string",
127 "default": "#cbd5e1"
128 },
129 "roundLabelColor": {
130 "type": "string",
131 "default": "#64748b"
132 },
133 "accentColor": {
134 "type": "string",
135 "default": "#f59e0b"
136 },
137 "titleColor": {
138 "type": "string",
139 "default": "#0f172a"
140 },
141 "championBg": {
142 "type": "string",
143 "default": "#fffbeb"
144 },
145 "championBorderColor": {
146 "type": "string",
147 "default": "#f59e0b"
148 },
149 "championColor": {
150 "type": "string",
151 "default": "#92400e"
152 },
153 "bracketTitleFontSize": {
154 "type": "number",
155 "default": 22
156 },
157 "teamFontSize": {
158 "type": "number",
159 "default": 14
160 },
161 "roundLabelFontSize": {
162 "type": "number",
163 "default": 12
164 },
165 "typoTitle": {
166 "type": "object",
167 "default": {}
168 },
169 "typoTeam": {
170 "type": "object",
171 "default": {}
172 },
173 "typoLabel": {
174 "type": "object",
175 "default": {}
176 }
177 }
178 }
179