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

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

119 lines 2.9 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/bingo-card",
5 "title": "Bingo Card",
6 "category": "bkbg-interactive",
7 "icon": "grid-view",
8 "description": "Interactive 5×5 Bingo card with number calling, win detection, and celebration animations.",
9 "keywords": [
10 "bingo",
11 "game",
12 "card",
13 "lottery",
14 "fun",
15 "interactive"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-bingo-card-editor",
19 "style": "bkbg-bingo-card-style",
20 "viewScript": "bkbg-bingo-card-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "title": {
32 "type": "string",
33 "default": "Bingo!"
34 },
35 "subtitle": {
36 "type": "string",
37 "default": "Mark called numbers on your card"
38 },
39 "showTitle": {
40 "type": "boolean",
41 "default": true
42 },
43 "showSubtitle": {
44 "type": "boolean",
45 "default": true
46 },
47 "showCaller": {
48 "type": "boolean",
49 "default": true
50 },
51 "showCalledList": {
52 "type": "boolean",
53 "default": true
54 },
55 "autoCall": {
56 "type": "boolean",
57 "default": false
58 },
59 "autoCallInterval": {
60 "type": "number",
61 "default": 5
62 },
63 "accentColor": {
64 "type": "string",
65 "default": "#f59e0b"
66 },
67 "markedColor": {
68 "type": "string",
69 "default": "#f59e0b"
70 },
71 "bingoColor": {
72 "type": "string",
73 "default": "#22c55e"
74 },
75 "freeColor": {
76 "type": "string",
77 "default": "#6366f1"
78 },
79 "headerBg": {
80 "type": "string",
81 "default": "#1e3a5f"
82 },
83 "headerColor": {
84 "type": "string",
85 "default": "#ffffff"
86 },
87 "cellBg": {
88 "type": "string",
89 "default": "#ffffff"
90 },
91 "cellColor": {
92 "type": "string",
93 "default": "#1f2937"
94 },
95 "sectionBg": {
96 "type": "string",
97 "default": "#f8fafc"
98 },
99 "borderColor": {
100 "type": "string",
101 "default": "#e2e8f0"
102 },
103 "titleColor": {
104 "type": "string",
105 "default": "#1e3a5f"
106 },
107 "titleFontSize": {
108 "type": "number",
109 "default": 32
110 },
111 "contentMaxWidth": {
112 "type": "number",
113 "default": 600
114 },
115 "titleTypo": { "type": "object", "default": {} },
116 "subtitleTypo": { "type": "object", "default": {} }
117 }
118 }
119