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

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

177 lines 4.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/ideal-weight-calculator",
5 "version": "1.0.0",
6 "title": "Ideal Weight Calculator",
7 "category": "bkbg-calculators",
8 "icon": "heart",
9 "description": "Calculate ideal body weight using four major medical formulas — Hamwi, Devine, Robinson, and Miller — with a visual comparison and healthy BMI range.",
10 "keywords": [
11 "ideal weight",
12 "body weight",
13 "Hamwi",
14 "Devine",
15 "Robinson",
16 "Miller",
17 "BMI",
18 "health",
19 "calculator"
20 ],
21 "textdomain": "blockenberg",
22 "editorScript": "bkbg-ideal-weight-calculator-editor",
23 "style": "bkbg-ideal-weight-calculator-style",
24 "viewScript": "bkbg-ideal-weight-calculator-frontend",
25 "attributes": {
26 "title": {
27 "type": "string",
28 "default": "Ideal Weight Calculator"
29 },
30 "showTitle": {
31 "type": "boolean",
32 "default": true
33 },
34 "subtitle": {
35 "type": "string",
36 "default": "Calculate your ideal body weight using proven medical formulas"
37 },
38 "showSubtitle": {
39 "type": "boolean",
40 "default": true
41 },
42 "defaultUnit": {
43 "type": "string",
44 "default": "metric"
45 },
46 "defaultHeight": {
47 "type": "number",
48 "default": 170
49 },
50 "defaultGender": {
51 "type": "string",
52 "default": "male"
53 },
54 "showFormulas": {
55 "type": "boolean",
56 "default": true
57 },
58 "showBMIRange": {
59 "type": "boolean",
60 "default": true
61 },
62 "showChart": {
63 "type": "boolean",
64 "default": true
65 },
66 "accentColor": {
67 "type": "string",
68 "default": "#6c3fb5"
69 },
70 "cardBg": {
71 "type": "string",
72 "default": "#ffffff"
73 },
74 "resultBg": {
75 "type": "string",
76 "default": "#f5f3ff"
77 },
78 "resultBorder": {
79 "type": "string",
80 "default": "#ede9fe"
81 },
82 "hamwiColor": {
83 "type": "string",
84 "default": "#8b5cf6"
85 },
86 "devineColor": {
87 "type": "string",
88 "default": "#3b82f6"
89 },
90 "robinsonColor": {
91 "type": "string",
92 "default": "#10b981"
93 },
94 "millerColor": {
95 "type": "string",
96 "default": "#f59e0b"
97 },
98 "bmiRangeColor": {
99 "type": "string",
100 "default": "#22c55e"
101 },
102 "maleColor": {
103 "type": "string",
104 "default": "#3b82f6"
105 },
106 "femaleColor": {
107 "type": "string",
108 "default": "#ec4899"
109 },
110 "inputBorder": {
111 "type": "string",
112 "default": "#e5e7eb"
113 },
114 "labelColor": {
115 "type": "string",
116 "default": "#374151"
117 },
118 "titleColor": {
119 "type": "string",
120 "default": ""
121 },
122 "subtitleColor": {
123 "type": "string",
124 "default": ""
125 },
126 "sectionBg": {
127 "type": "string",
128 "default": ""
129 },
130 "titleSize": {
131 "type": "number",
132 "default": 28
133 },
134 "resultSize": {
135 "type": "number",
136 "default": 52
137 },
138 "titleTypo": {
139 "type": "object",
140 "default": {}
141 },
142 "subtitleTypo": {
143 "type": "object",
144 "default": {}
145 },
146 "cardRadius": {
147 "type": "number",
148 "default": 16
149 },
150 "inputRadius": {
151 "type": "number",
152 "default": 8
153 },
154 "maxWidth": {
155 "type": "number",
156 "default": 600
157 },
158 "paddingTop": {
159 "type": "number",
160 "default": 60
161 },
162 "paddingBottom": {
163 "type": "number",
164 "default": 60
165 }
166 },
167 "supports": {
168 "html": false,
169 "anchor": true,
170 "className": true,
171 "align": [
172 "wide",
173 "full"
174 ]
175 }
176 }
177