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 / typing-speed-test / block.json

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

126 lines 3.2 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/typing-speed-test",
5 "title": "Typing Speed Test",
6 "category": "bkbg-interactive",
7 "icon": "editor-spellcheck",
8 "description": "Interactive typing speed test. Measures WPM (words per minute), accuracy, and calculates a score. Choose from multiple difficulty levels, track errors in real time, and see a detailed results summary.",
9 "keywords": [
10 "typing",
11 "speed",
12 "wpm",
13 "test",
14 "accuracy",
15 "words per minute",
16 "keyboard"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-typing-speed-test-editor",
20 "style": "bkbg-typing-speed-test-style",
21 "viewScript": "bkbg-typing-speed-test-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "title": {
33 "type": "string",
34 "default": "Typing Speed Test"
35 },
36 "subtitle": {
37 "type": "string",
38 "default": "How fast can you type?"
39 },
40 "showTitle": {
41 "type": "boolean",
42 "default": true
43 },
44 "showSubtitle": {
45 "type": "boolean",
46 "default": true
47 },
48 "duration": {
49 "type": "number",
50 "default": 60
51 },
52 "defaultDifficulty": {
53 "type": "string",
54 "default": "medium"
55 },
56 "showLiveWpm": {
57 "type": "boolean",
58 "default": true
59 },
60 "showAccuracy": {
61 "type": "boolean",
62 "default": true
63 },
64 "showErrors": {
65 "type": "boolean",
66 "default": true
67 },
68 "showDifficultyBtn": {
69 "type": "boolean",
70 "default": true
71 },
72 "accentColor": {
73 "type": "string",
74 "default": "#8b5cf6"
75 },
76 "correctColor": {
77 "type": "string",
78 "default": "#22c55e"
79 },
80 "errorColor": {
81 "type": "string",
82 "default": "#ef4444"
83 },
84 "sectionBg": {
85 "type": "string",
86 "default": "#f5f3ff"
87 },
88 "cardBg": {
89 "type": "string",
90 "default": "#ffffff"
91 },
92 "textAreaBg": {
93 "type": "string",
94 "default": "#1e1b4b"
95 },
96 "textAreaColor": {
97 "type": "string",
98 "default": "#c4b5fd"
99 },
100 "titleColor": {
101 "type": "string",
102 "default": "#4c1d95"
103 },
104 "subtitleColor": {
105 "type": "string",
106 "default": "#6b7280"
107 },
108 "labelColor": {
109 "type": "string",
110 "default": "#374151"
111 },
112 "titleTypo": {
113 "type": "object",
114 "default": {}
115 },
116 "subtitleTypo": {
117 "type": "object",
118 "default": {}
119 },
120 "contentMaxWidth": {
121 "type": "number",
122 "default": 700
123 }
124 }
125 }
126