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

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

191 lines 3.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/grade-calculator",
5 "title": "Grade Calculator",
6 "category": "bkbg-calculators",
7 "icon": "awards",
8 "description": "Calculate weighted average grades across multiple subjects or assignments. Shows overall grade with letter and percentage.",
9 "keywords": [
10 "grade",
11 "average",
12 "weighted",
13 "gpa",
14 "score",
15 "assignment",
16 "calculator",
17 "school"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-grade-calculator-editor",
21 "style": "bkbg-grade-calculator-style",
22 "viewScript": "bkbg-grade-calculator-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "title": {
34 "type": "string",
35 "default": "Grade Calculator"
36 },
37 "subtitle": {
38 "type": "string",
39 "default": "Calculate your weighted average grade across all subjects"
40 },
41 "showTitle": {
42 "type": "boolean",
43 "default": true
44 },
45 "showSubtitle": {
46 "type": "boolean",
47 "default": true
48 },
49 "gradeMode": {
50 "type": "string",
51 "default": "weighted"
52 },
53 "showLetterGrade": {
54 "type": "boolean",
55 "default": true
56 },
57 "showGradeScale": {
58 "type": "boolean",
59 "default": true
60 },
61 "showBreakdown": {
62 "type": "boolean",
63 "default": true
64 },
65 "accentColor": {
66 "type": "string",
67 "default": "#6c3fb5"
68 },
69 "cardBg": {
70 "type": "string",
71 "default": "#ffffff"
72 },
73 "resultBg": {
74 "type": "string",
75 "default": "#6c3fb5"
76 },
77 "resultColor": {
78 "type": "string",
79 "default": "#ffffff"
80 },
81 "gradeAColor": {
82 "type": "string",
83 "default": "#10b981"
84 },
85 "gradeBColor": {
86 "type": "string",
87 "default": "#3b82f6"
88 },
89 "gradeCColor": {
90 "type": "string",
91 "default": "#f59e0b"
92 },
93 "gradeDColor": {
94 "type": "string",
95 "default": "#ef4444"
96 },
97 "gradeFColor": {
98 "type": "string",
99 "default": "#6b7280"
100 },
101 "rowBg": {
102 "type": "string",
103 "default": "#f9fafb"
104 },
105 "rowBorder": {
106 "type": "string",
107 "default": "#e5e7eb"
108 },
109 "scaleBg": {
110 "type": "string",
111 "default": "#f3f4f6"
112 },
113 "scaleBorder": {
114 "type": "string",
115 "default": "#e5e7eb"
116 },
117 "inputBorder": {
118 "type": "string",
119 "default": "#e5e7eb"
120 },
121 "labelColor": {
122 "type": "string",
123 "default": "#374151"
124 },
125 "titleColor": {
126 "type": "string",
127 "default": ""
128 },
129 "subtitleColor": {
130 "type": "string",
131 "default": ""
132 },
133 "sectionBg": {
134 "type": "string",
135 "default": ""
136 },
137 "titleSize": {
138 "type": "number",
139 "default": 28
140 },
141 "resultSize": {
142 "type": "number",
143 "default": 64
144 },
145 "letterSize": {
146 "type": "number",
147 "default": 48
148 },
149 "cardRadius": {
150 "type": "number",
151 "default": 16
152 },
153 "inputRadius": {
154 "type": "number",
155 "default": 8
156 },
157 "maxWidth": {
158 "type": "number",
159 "default": 640
160 },
161 "paddingTop": {
162 "type": "number",
163 "default": 60
164 },
165 "paddingBottom": {
166 "type": "number",
167 "default": 60
168 },
169 "titleLineHeight": {
170 "type": "number",
171 "default": 1.2
172 },
173 "resultFontWeight": {
174 "type": "string",
175 "default": "800"
176 },
177 "typoTitle": {
178 "type": "object",
179 "default": {}
180 },
181 "typoResult": {
182 "type": "object",
183 "default": {}
184 },
185 "typoLetter": {
186 "type": "object",
187 "default": {}
188 }
189 }
190 }
191