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

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

180 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/statistics-calculator",
5 "title": "Statistics Calculator",
6 "category": "bkbg-calculators",
7 "icon": "chart-bar",
8 "description": "Enter a dataset and instantly compute descriptive statistics: mean, median, mode, range, variance, standard deviation, quartiles, and more.",
9 "keywords": [
10 "statistics",
11 "mean",
12 "median",
13 "mode",
14 "standard deviation",
15 "variance",
16 "calculator",
17 "data",
18 "math"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-statistics-calculator-editor",
22 "style": "bkbg-statistics-calculator-style",
23 "viewScript": "bkbg-statistics-calculator-frontend",
24 "supports": {
25 "html": false,
26 "anchor": true,
27 "className": true,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "title": {
35 "type": "string",
36 "default": "Statistics Calculator"
37 },
38 "showTitle": {
39 "type": "boolean",
40 "default": true
41 },
42 "subtitle": {
43 "type": "string",
44 "default": "Enter numbers separated by commas or spaces to compute descriptive statistics."
45 },
46 "showSubtitle": {
47 "type": "boolean",
48 "default": true
49 },
50 "defaultData": {
51 "type": "string",
52 "default": "4, 8, 15, 16, 23, 42"
53 },
54 "showHistogram": {
55 "type": "boolean",
56 "default": true
57 },
58 "showSortedList": {
59 "type": "boolean",
60 "default": true
61 },
62 "showBoxPlot": {
63 "type": "boolean",
64 "default": true
65 },
66 "decimalPlaces": {
67 "type": "number",
68 "default": 4
69 },
70 "accentColor": {
71 "type": "string",
72 "default": "#6c3fb5"
73 },
74 "meanColor": {
75 "type": "string",
76 "default": "#6c3fb5"
77 },
78 "medianColor": {
79 "type": "string",
80 "default": "#0ea5e9"
81 },
82 "modeColor": {
83 "type": "string",
84 "default": "#10b981"
85 },
86 "stdDevColor": {
87 "type": "string",
88 "default": "#f59e0b"
89 },
90 "barColor": {
91 "type": "string",
92 "default": "#6c3fb5"
93 },
94 "cardBg": {
95 "type": "string",
96 "default": "#ffffff"
97 },
98 "sectionBg": {
99 "type": "string",
100 "default": "#f5f3ff"
101 },
102 "statCardBg": {
103 "type": "string",
104 "default": "#fafafa"
105 },
106 "titleColor": {
107 "type": "string",
108 "default": "#1e1b4b"
109 },
110 "subtitleColor": {
111 "type": "string",
112 "default": "#6b7280"
113 },
114 "labelColor": {
115 "type": "string",
116 "default": "#374151"
117 },
118 "inputBg": {
119 "type": "string",
120 "default": "#f9fafb"
121 },
122 "inputBorder": {
123 "type": "string",
124 "default": "#d1d5db"
125 },
126 "cardRadius": {
127 "type": "number",
128 "default": 16
129 },
130 "statRadius": {
131 "type": "number",
132 "default": 12
133 },
134 "inputRadius": {
135 "type": "number",
136 "default": 8
137 },
138 "titleSize": {
139 "type": "number",
140 "default": 26
141 },
142 "titleFontWeight": {
143 "type": "string",
144 "default": "800"
145 },
146 "subtitleFontSize": {
147 "type": "number",
148 "default": 14
149 },
150 "maxWidth": {
151 "type": "number",
152 "default": 680
153 },
154 "paddingTop": {
155 "type": "number",
156 "default": 60
157 },
158 "paddingBottom": {
159 "type": "number",
160 "default": 60
161 },
162 "titleLineHeight": {
163 "type": "number",
164 "default": 1.2
165 },
166 "subtitleLineHeight": {
167 "type": "number",
168 "default": 1.5
169 },
170 "titleTypo": {
171 "type": "object",
172 "default": {}
173 },
174 "subtitleTypo": {
175 "type": "object",
176 "default": {}
177 }
178 }
179 }
180