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

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

175 lines 3.0 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/sleep-calculator",
5 "title": "Sleep Calculator",
6 "category": "bkbg-calculators",
7 "icon": "clock",
8 "description": "Calculate optimal sleep and wake times based on 90-minute REM sleep cycles. Find when to sleep or when to wake up to feel fully rested.",
9 "keywords": [
10 "sleep",
11 "wake",
12 "REM",
13 "cycle",
14 "bedtime",
15 "alarm",
16 "rest",
17 "health",
18 "calculator"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-sleep-calculator-editor",
22 "style": "bkbg-sleep-calculator-style",
23 "viewScript": "bkbg-sleep-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": "Sleep Calculator"
37 },
38 "subtitle": {
39 "type": "string",
40 "default": "Wake up refreshed. Based on 90-minute sleep cycles."
41 },
42 "showTitle": {
43 "type": "boolean",
44 "default": true
45 },
46 "showSubtitle": {
47 "type": "boolean",
48 "default": true
49 },
50 "mode": {
51 "type": "string",
52 "default": "wake"
53 },
54 "onsetDelay": {
55 "type": "number",
56 "default": 14
57 },
58 "cyclesMin": {
59 "type": "number",
60 "default": 4
61 },
62 "cyclesMax": {
63 "type": "number",
64 "default": 6
65 },
66 "showTips": {
67 "type": "boolean",
68 "default": true
69 },
70 "useNow": {
71 "type": "boolean",
72 "default": true
73 },
74 "accentColor": {
75 "type": "string",
76 "default": "#6c3fb5"
77 },
78 "cardBg": {
79 "type": "string",
80 "default": "#ffffff"
81 },
82 "resultBg": {
83 "type": "string",
84 "default": "#f5f3ff"
85 },
86 "resultBorder": {
87 "type": "string",
88 "default": "#ede9fe"
89 },
90 "bestColor": {
91 "type": "string",
92 "default": "#6c3fb5"
93 },
94 "goodColor": {
95 "type": "string",
96 "default": "#3b82f6"
97 },
98 "okColor": {
99 "type": "string",
100 "default": "#f59e0b"
101 },
102 "cycleTagBg": {
103 "type": "string",
104 "default": "#ede9fe"
105 },
106 "cycleTagColor": {
107 "type": "string",
108 "default": "#6c3fb5"
109 },
110 "tipBg": {
111 "type": "string",
112 "default": "#fef9c3"
113 },
114 "tipColor": {
115 "type": "string",
116 "default": "#713f12"
117 },
118 "titleColor": {
119 "type": "string",
120 "default": "#1e1b4b"
121 },
122 "subtitleColor": {
123 "type": "string",
124 "default": "#6b7280"
125 },
126 "labelColor": {
127 "type": "string",
128 "default": "#374151"
129 },
130 "sectionBg": {
131 "type": "string",
132 "default": ""
133 },
134 "titleSize": {
135 "type": "number",
136 "default": 28
137 },
138 "timeSize": {
139 "type": "number",
140 "default": 36
141 },
142 "cardRadius": {
143 "type": "number",
144 "default": 16
145 },
146 "inputRadius": {
147 "type": "number",
148 "default": 8
149 },
150 "maxWidth": {
151 "type": "number",
152 "default": 580
153 },
154 "paddingTop": {
155 "type": "number",
156 "default": 60
157 },
158 "paddingBottom": {
159 "type": "number",
160 "default": 60
161 },
162 "titleFontWeight": {
163 "type": "number",
164 "default": 700
165 },
166 "titleTypo": {
167 "type": "object",
168 "default": {}
169 },
170 "subtitleTypo": {
171 "type": "object",
172 "default": {}
173 }
174 }
175 }