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

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

141 lines 3.4 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/heart-rate-calculator",
5 "version": "1.0.0",
6 "title": "Heart Rate Calculator",
7 "category": "bkbg-calculators",
8 "icon": "heart",
9 "description": "Calculate target heart rate training zones based on age and formula.",
10 "keywords": [
11 "heart rate",
12 "training zones",
13 "fitness",
14 "cardio",
15 "workout"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-heart-rate-calculator-editor",
19 "style": "bkbg-heart-rate-calculator-style",
20 "viewScript": "bkbg-heart-rate-calculator-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "title": {
32 "type": "string",
33 "default": "Heart Rate Zone Calculator"
34 },
35 "subtitle": {
36 "type": "string",
37 "default": "Find your personalized training zones based on your age"
38 },
39 "defaultAge": {
40 "type": "integer",
41 "default": 30
42 },
43 "defaultFormula": {
44 "type": "string",
45 "default": "fox"
46 },
47 "accentColor": {
48 "type": "string",
49 "default": "#ef4444"
50 },
51 "sectionBg": {
52 "type": "string",
53 "default": "#fff7f7"
54 },
55 "cardBg": {
56 "type": "string",
57 "default": "#ffffff"
58 },
59 "inputBg": {
60 "type": "string",
61 "default": "#f9fafb"
62 },
63 "labelColor": {
64 "type": "string",
65 "default": "#374151"
66 },
67 "titleColor": {
68 "type": "string",
69 "default": "#111827"
70 },
71 "subtitleColor": {
72 "type": "string",
73 "default": "#6b7280"
74 },
75 "z1Color": {
76 "type": "string",
77 "default": "#6ee7b7"
78 },
79 "z2Color": {
80 "type": "string",
81 "default": "#34d399"
82 },
83 "z3Color": {
84 "type": "string",
85 "default": "#fbbf24"
86 },
87 "z4Color": {
88 "type": "string",
89 "default": "#f97316"
90 },
91 "z5Color": {
92 "type": "string",
93 "default": "#ef4444"
94 },
95 "showZoneIcon": {
96 "type": "boolean",
97 "default": true
98 },
99 "showPurpose": {
100 "type": "boolean",
101 "default": true
102 },
103 "titleFontSize": {
104 "type": "integer",
105 "default": 28
106 },
107 "titleFontWeight": {
108 "type": "string",
109 "default": "700"
110 },
111 "titleLineHeight": {
112 "type": "number",
113 "default": 1.2
114 },
115 "subtitleFontSize": {
116 "type": "integer",
117 "default": 16
118 },
119 "subtitleFontWeight": {
120 "type": "string",
121 "default": "400"
122 },
123 "subtitleLineHeight": {
124 "type": "number",
125 "default": 1.5
126 },
127 "contentMaxWidth": {
128 "type": "integer",
129 "default": 760
130 },
131 "typoTitle": {
132 "type": "object",
133 "default": {}
134 },
135 "typoSubtitle": {
136 "type": "object",
137 "default": {}
138 }
139 }
140 }
141