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

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

113 lines 2.0 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/sudoku",
5 "title": "Sudoku",
6 "category": "bkbg-interactive",
7 "icon": "grid-view",
8 "description": "Interactive Sudoku puzzle with difficulty levels, hints, mistake tracking, and timer. Full WYSIWYG preview in editor.",
9 "keywords": [
10 "sudoku",
11 "puzzle",
12 "game",
13 "number",
14 "logic",
15 "brain"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-sudoku-editor",
19 "style": "bkbg-sudoku-style",
20 "viewScript": "bkbg-sudoku-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": "Sudoku"
34 },
35 "subtitle": {
36 "type": "string",
37 "default": "Fill the grid so every row, column and 3\u00d73 box contains the digits 1\u20139"
38 },
39 "defaultDifficulty": {
40 "type": "string",
41 "default": "medium"
42 },
43 "showTimer": {
44 "type": "boolean",
45 "default": true
46 },
47 "showMistakes": {
48 "type": "boolean",
49 "default": true
50 },
51 "highlightRelated": {
52 "type": "boolean",
53 "default": true
54 },
55 "highlightSameNumber": {
56 "type": "boolean",
57 "default": true
58 },
59 "maxMistakes": {
60 "type": "number",
61 "default": 3
62 },
63 "hintsAllowed": {
64 "type": "number",
65 "default": 3
66 },
67 "accentColor": {
68 "type": "string",
69 "default": "#6366f1"
70 },
71 "givenColor": {
72 "type": "string",
73 "default": "#1e1b4b"
74 },
75 "enteredColor": {
76 "type": "string",
77 "default": "#6366f1"
78 },
79 "errorColor": {
80 "type": "string",
81 "default": "#ef4444"
82 },
83 "highlightBg": {
84 "type": "string",
85 "default": "#e0e7ff"
86 },
87 "selectedBg": {
88 "type": "string",
89 "default": "#c7d2fe"
90 },
91 "gridBg": {
92 "type": "string",
93 "default": "#ffffff"
94 },
95 "sectionBg": {
96 "type": "string",
97 "default": "#f5f3ff"
98 },
99 "titleColor": {
100 "type": "string",
101 "default": "#1e1b4b"
102 },
103 "titleTypo": {
104 "type": "object",
105 "default": {}
106 },
107 "subtitleTypo": {
108 "type": "object",
109 "default": {}
110 }
111 }
112 }
113