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

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.13, at blocks/study-notes/block.json

256 lines 7.4 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/study-notes",
5 "title": "Study Notes",
6 "category": "bkbg-blog",
7 "icon": "edit-page",
8 "description": "Cornell-style structured study notes with cue column, notes column, summary, and key terms.",
9 "keywords": [
10 "study",
11 "notes",
12 "cornell",
13 "lecture",
14 "academic",
15 "learning",
16 "class",
17 "education",
18 "summary"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-study-notes-editor",
22 "editorStyle": "bkbg-study-notes-style",
23 "style": "bkbg-study-notes-style",
24 "viewScript": "bkbg-study-notes-frontend",
25 "supports": {
26 "html": false,
27 "anchor": true,
28 "className": true,
29 "align": [
30 "wide",
31 "full"
32 ]
33 },
34 "attributes": {
35 "subject": {
36 "type": "string",
37 "default": "Biology 101"
38 },
39 "topic": {
40 "type": "string",
41 "default": "Cell Division & Mitosis"
42 },
43 "source": {
44 "type": "string",
45 "default": "Prof. Johnson — Lecture 12"
46 },
47 "noteDate": {
48 "type": "string",
49 "default": "February 24, 2026"
50 },
51 "showSubject": {
52 "type": "boolean",
53 "default": true
54 },
55 "showSource": {
56 "type": "boolean",
57 "default": true
58 },
59 "showDate": {
60 "type": "boolean",
61 "default": true
62 },
63 "layout": {
64 "type": "string",
65 "default": "cornell"
66 },
67 "cueWidth": {
68 "type": "number",
69 "default": 30
70 },
71 "notes": {
72 "type": "array",
73 "default": [
74 {
75 "cue": "What is mitosis?",
76 "content": "Mitosis is the process of cell division where one cell divides into two genetically identical daughter cells. It occurs in somatic (body) cells and is used for growth, repair, and asexual reproduction."
77 },
78 {
79 "cue": "Phases of mitosis",
80 "content": "PMAT — Prophase: chromosomes condense, spindle forms. Metaphase: chromosomes align at cell equator. Anaphase: sister chromatids pulled to opposite poles. Telophase: nuclear envelopes reform, chromosomes decondense."
81 },
82 {
83 "cue": "Cytokinesis",
84 "content": "Division of the cytoplasm following mitosis. In animal cells: cleavage furrow. In plant cells: cell plate forms from Golgi vesicles. Results in two complete daughter cells."
85 },
86 {
87 "cue": "Cell cycle checkpoints",
88 "content": "G1 checkpoint: checks for DNA damage, sufficient nutrients, and cell size. G2 checkpoint: verifies DNA replication is complete. Spindle assembly checkpoint (M): ensures all chromosomes are attached to spindle fibers."
89 }
90 ]
91 },
92 "summary": {
93 "type": "string",
94 "default": "Mitosis is a four-phase process (PMAT) producing two genetically identical cells. The cell cycle is tightly regulated by checkpoints at G1, G2, and the spindle assembly checkpoint to ensure proper division and prevent mutations."
95 },
96 "showSummary": {
97 "type": "boolean",
98 "default": true
99 },
100 "summaryLabel": {
101 "type": "string",
102 "default": "Summary"
103 },
104 "keyTerms": {
105 "type": "array",
106 "default": [
107 {
108 "term": "Centromere",
109 "definition": "Region of chromosome where sister chromatids are joined; kinetochore attaches here."
110 },
111 {
112 "term": "Spindle fibers",
113 "definition": "Microtubule structures that pull chromosomes to opposite poles during anaphase."
114 },
115 {
116 "term": "Cytokinesis",
117 "definition": "Physical division of the cytoplasm following nuclear division."
118 }
119 ]
120 },
121 "showKeyTerms": {
122 "type": "boolean",
123 "default": true
124 },
125 "keyTermsLabel": {
126 "type": "string",
127 "default": "Key Terms"
128 },
129 "tags": {
130 "type": "array",
131 "default": [
132 "mitosis",
133 "cell cycle",
134 "PMAT",
135 "checkpoints"
136 ]
137 },
138 "showTags": {
139 "type": "boolean",
140 "default": true
141 },
142 "fontSize": {
143 "type": "number",
144 "default": 14
145 },
146 "titleFontSize": {
147 "type": "number",
148 "default": 20
149 },
150 "lineHeight": {
151 "type": "number",
152 "default": 170
153 },
154 "fontWeight": {
155 "type": "string",
156 "default": "400"
157 },
158 "borderRadius": {
159 "type": "number",
160 "default": 10
161 },
162 "bgColor": {
163 "type": "string",
164 "default": "#ffffff"
165 },
166 "borderColor": {
167 "type": "string",
168 "default": "#d1d5db"
169 },
170 "headerBg": {
171 "type": "string",
172 "default": "#1e3a5f"
173 },
174 "headerColor": {
175 "type": "string",
176 "default": "#ffffff"
177 },
178 "cueBg": {
179 "type": "string",
180 "default": "#f8fafc"
181 },
182 "cueColor": {
183 "type": "string",
184 "default": "#1e40af"
185 },
186 "cueBorderColor": {
187 "type": "string",
188 "default": "#e2e8f0"
189 },
190 "notesBg": {
191 "type": "string",
192 "default": "#ffffff"
193 },
194 "notesColor": {
195 "type": "string",
196 "default": "#374151"
197 },
198 "rowBorderColor": {
199 "type": "string",
200 "default": "#e5e7eb"
201 },
202 "summaryBg": {
203 "type": "string",
204 "default": "#fefce8"
205 },
206 "summaryColor": {
207 "type": "string",
208 "default": "#1c1917"
209 },
210 "summaryBorderColor": {
211 "type": "string",
212 "default": "#fde68a"
213 },
214 "keyTermsBg": {
215 "type": "string",
216 "default": "#f0f9ff"
217 },
218 "keyTermsColor": {
219 "type": "string",
220 "default": "#0f172a"
221 },
222 "keyTermsBorderColor": {
223 "type": "string",
224 "default": "#bae6fd"
225 },
226 "termColor": {
227 "type": "string",
228 "default": "#0369a1"
229 },
230 "tagBg": {
231 "type": "string",
232 "default": "#e0e7ff"
233 },
234 "tagColor": {
235 "type": "string",
236 "default": "#3730a3"
237 },
238 "accentColor": {
239 "type": "string",
240 "default": "#3b82f6"
241 },
242 "summarySize": {
243 "type": "number",
244 "default": 12
245 },
246 "titleTypo": {
247 "type": "object",
248 "default": {}
249 },
250 "textTypo": {
251 "type": "object",
252 "default": {}
253 }
254 }
255 }
256