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

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

157 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/flashcard",
5 "title": "Flashcard",
6 "category": "bkbg-interactive",
7 "icon": "book-alt",
8 "description": "Interactive flashcard deck for studying. Click to flip cards, navigate with arrows or buttons, shuffle deck, mark cards as known, and track progress.",
9 "keywords": [
10 "flashcard",
11 "study",
12 "quiz",
13 "learning",
14 "flip",
15 "education",
16 "memory"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-flashcard-editor",
20 "style": "bkbg-flashcard-style",
21 "viewScript": "bkbg-flashcard-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": "Flashcard Deck"
35 },
36 "subtitle": {
37 "type": "string",
38 "default": "Click a card to reveal the answer"
39 },
40 "showTitle": {
41 "type": "boolean",
42 "default": true
43 },
44 "showSubtitle": {
45 "type": "boolean",
46 "default": true
47 },
48 "cards": {
49 "type": "string",
50 "default": "[{\"id\":\"1\",\"front\":\"What is the capital of France?\",\"back\":\"Paris\",\"known\":false},{\"id\":\"2\",\"front\":\"What is 7 × 8?\",\"back\":\"56\",\"known\":false},{\"id\":\"3\",\"front\":\"Who wrote Romeo and Juliet?\",\"back\":\"William Shakespeare\",\"known\":false},{\"id\":\"4\",\"front\":\"What is H₂O?\",\"back\":\"Water\",\"known\":false},{\"id\":\"5\",\"front\":\"What year did WWII end?\",\"back\":\"1945\",\"known\":false}]"
51 },
52 "showProgress": {
53 "type": "boolean",
54 "default": true
55 },
56 "showShuffleBtn": {
57 "type": "boolean",
58 "default": true
59 },
60 "showKnownBtn": {
61 "type": "boolean",
62 "default": true
63 },
64 "showKeyboardHint": {
65 "type": "boolean",
66 "default": true
67 },
68 "cardHeight": {
69 "type": "number",
70 "default": 220
71 },
72 "accentColor": {
73 "type": "string",
74 "default": "#6366f1"
75 },
76 "cardFrontBg": {
77 "type": "string",
78 "default": "#ffffff"
79 },
80 "cardBackBg": {
81 "type": "string",
82 "default": "#4f46e5"
83 },
84 "cardBackColor": {
85 "type": "string",
86 "default": "#ffffff"
87 },
88 "knownColor": {
89 "type": "string",
90 "default": "#22c55e"
91 },
92 "sectionBg": {
93 "type": "string",
94 "default": "#f5f3ff"
95 },
96 "cardBg": {
97 "type": "string",
98 "default": "#ffffff"
99 },
100 "titleColor": {
101 "type": "string",
102 "default": "#3730a3"
103 },
104 "subtitleColor": {
105 "type": "string",
106 "default": "#6b7280"
107 },
108 "labelColor": {
109 "type": "string",
110 "default": "#374151"
111 },
112 "titleFontSize": {
113 "type": "number",
114 "default": 26
115 },
116 "titleFontWeight": {
117 "type": "string",
118 "default": "700"
119 },
120 "titleLineHeight": {
121 "type": "number",
122 "default": 1.2
123 },
124 "subtitleFontSize": {
125 "type": "number",
126 "default": 15
127 },
128 "subtitleFontWeight": {
129 "type": "string",
130 "default": "400"
131 },
132 "subtitleLineHeight": {
133 "type": "number",
134 "default": 1.5
135 },
136 "cardFontSize": {
137 "type": "number",
138 "default": 18
139 },
140 "cardFontWeight": {
141 "type": "string",
142 "default": "500"
143 },
144 "cardLineHeight": {
145 "type": "number",
146 "default": 1.5
147 },
148 "contentMaxWidth": {
149 "type": "number",
150 "default": 660
151 },
152 "typoTitle": { "type": "object", "default": {} },
153 "typoSubtitle": { "type": "object", "default": {} },
154 "typoCard": { "type": "object", "default": {} }
155 }
156 }
157