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

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

168 lines 4.0 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/water-intake-calculator",
5 "version": "1.0.0",
6 "title": "Water Intake Calculator",
7 "category": "bkbg-calculators",
8 "icon": "admin-site-alt3",
9 "description": "Calculate recommended daily water intake based on body weight, activity level and climate.",
10 "keywords": [
11 "water",
12 "hydration",
13 "intake",
14 "health",
15 "fitness",
16 "calculator"
17 ],
18 "supports": {
19 "html": false,
20 "align": [
21 "wide",
22 "full"
23 ]
24 },
25 "textdomain": "blockenberg",
26 "editorScript": "bkbg-water-intake-calculator-editor",
27 "style": "bkbg-water-intake-calculator-style",
28 "viewScript": "bkbg-water-intake-calculator-frontend",
29 "attributes": {
30 "title": {
31 "type": "string",
32 "default": "Daily Water Intake Calculator"
33 },
34 "subtitle": {
35 "type": "string",
36 "default": "Find out how much water you should drink each day"
37 },
38 "showTitle": {
39 "type": "boolean",
40 "default": true
41 },
42 "showSubtitle": {
43 "type": "boolean",
44 "default": true
45 },
46 "defaultUnit": {
47 "type": "string",
48 "default": "kg"
49 },
50 "defaultWeight": {
51 "type": "number",
52 "default": 70
53 },
54 "defaultActivity": {
55 "type": "string",
56 "default": "moderate"
57 },
58 "defaultClimate": {
59 "type": "string",
60 "default": "temperate"
61 },
62 "showGlasses": {
63 "type": "boolean",
64 "default": true
65 },
66 "glassSize": {
67 "type": "number",
68 "default": 250
69 },
70 "showTips": {
71 "type": "boolean",
72 "default": true
73 },
74 "accentColor": {
75 "type": "string",
76 "default": "#3b82f6"
77 },
78 "cardBg": {
79 "type": "string",
80 "default": ""
81 },
82 "resultBg": {
83 "type": "string",
84 "default": "#3b82f6"
85 },
86 "resultColor": {
87 "type": "string",
88 "default": "#ffffff"
89 },
90 "glassColor": {
91 "type": "string",
92 "default": "#3b82f6"
93 },
94 "glassBg": {
95 "type": "string",
96 "default": "#eff6ff"
97 },
98 "tipsBg": {
99 "type": "string",
100 "default": "#f0fdf4"
101 },
102 "tipsBorder": {
103 "type": "string",
104 "default": "#bbf7d0"
105 },
106 "tipsColor": {
107 "type": "string",
108 "default": "#166534"
109 },
110 "labelColor": {
111 "type": "string",
112 "default": "#374151"
113 },
114 "inputBorder": {
115 "type": "string",
116 "default": "#e5e7eb"
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": 56
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": 500
157 },
158 "paddingTop": {
159 "type": "number",
160 "default": 60
161 },
162 "paddingBottom": {
163 "type": "number",
164 "default": 60
165 }
166 }
167 }
168