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

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

194 lines 3.4 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/scientific-calculator",
5 "version": "1.0.0",
6 "title": "Scientific Calculator",
7 "category": "bkbg-calculators",
8 "icon": "dashboard",
9 "description": "A fully functional scientific calculator with standard arithmetic, trigonometric, logarithmic, and power functions, memory storage, and history log.",
10 "keywords": [
11 "calculator",
12 "scientific",
13 "math",
14 "trigonometry",
15 "algebra",
16 "sine",
17 "cosine"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-scientific-calculator-editor",
21 "style": "bkbg-scientific-calculator-style",
22 "viewScript": "bkbg-scientific-calculator-frontend",
23 "attributes": {
24 "title": {
25 "type": "string",
26 "default": "Scientific Calculator"
27 },
28 "showTitle": {
29 "type": "boolean",
30 "default": true
31 },
32 "subtitle": {
33 "type": "string",
34 "default": "Perform advanced mathematical calculations"
35 },
36 "showSubtitle": {
37 "type": "boolean",
38 "default": true
39 },
40 "angleMode": {
41 "type": "string",
42 "default": "deg"
43 },
44 "showHistory": {
45 "type": "boolean",
46 "default": true
47 },
48 "historyMax": {
49 "type": "number",
50 "default": 10
51 },
52 "showMemory": {
53 "type": "boolean",
54 "default": true
55 },
56 "precision": {
57 "type": "number",
58 "default": 10
59 },
60 "accentColor": {
61 "type": "string",
62 "default": "#6c3fb5"
63 },
64 "cardBg": {
65 "type": "string",
66 "default": "#1a1a2e"
67 },
68 "displayBg": {
69 "type": "string",
70 "default": "#0d0d1a"
71 },
72 "displayColor": {
73 "type": "string",
74 "default": "#ffffff"
75 },
76 "btnNumBg": {
77 "type": "string",
78 "default": "#2d2d4a"
79 },
80 "btnNumColor": {
81 "type": "string",
82 "default": "#ffffff"
83 },
84 "btnOpBg": {
85 "type": "string",
86 "default": "#3d2d6a"
87 },
88 "btnOpColor": {
89 "type": "string",
90 "default": "#c4b5fd"
91 },
92 "btnFnBg": {
93 "type": "string",
94 "default": "#1e2a4a"
95 },
96 "btnFnColor": {
97 "type": "string",
98 "default": "#93c5fd"
99 },
100 "btnEqBg": {
101 "type": "string",
102 "default": "#6c3fb5"
103 },
104 "btnEqColor": {
105 "type": "string",
106 "default": "#ffffff"
107 },
108 "btnClearBg": {
109 "type": "string",
110 "default": "#7f1d1d"
111 },
112 "btnClearColor": {
113 "type": "string",
114 "default": "#fecaca"
115 },
116 "historyBg": {
117 "type": "string",
118 "default": "#111128"
119 },
120 "historyColor": {
121 "type": "string",
122 "default": "#9ca3af"
123 },
124 "memColor": {
125 "type": "string",
126 "default": "#86efac"
127 },
128 "titleColor": {
129 "type": "string",
130 "default": ""
131 },
132 "subtitleColor": {
133 "type": "string",
134 "default": ""
135 },
136 "sectionBg": {
137 "type": "string",
138 "default": ""
139 },
140 "titleSize": {
141 "type": "number",
142 "default": 28
143 },
144 "displaySize": {
145 "type": "number",
146 "default": 36
147 },
148 "btnSize": {
149 "type": "number",
150 "default": 15
151 },
152 "cardRadius": {
153 "type": "number",
154 "default": 20
155 },
156 "btnRadius": {
157 "type": "number",
158 "default": 10
159 },
160 "maxWidth": {
161 "type": "number",
162 "default": 420
163 },
164 "paddingTop": {
165 "type": "number",
166 "default": 60
167 },
168 "paddingBottom": {
169 "type": "number",
170 "default": 60
171 },
172 "titleFontWeight": {
173 "type": "number",
174 "default": 700
175 },
176 "titleTypo": {
177 "type": "object",
178 "default": {}
179 },
180 "subtitleTypo": {
181 "type": "object",
182 "default": {}
183 }
184 },
185 "supports": {
186 "html": false,
187 "anchor": true,
188 "className": true,
189 "align": [
190 "wide",
191 "full"
192 ]
193 }
194 }