basic-report 0.2.2__tar.gz → 0.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. {basic_report-0.2.2 → basic_report-0.4.0}/PKG-INFO +1 -1
  2. {basic_report-0.2.2 → basic_report-0.4.0}/pyproject.toml +1 -1
  3. basic_report-0.4.0/src/basic_report/__init__.py +22 -0
  4. basic_report-0.4.0/src/basic_report/configs/default.yaml +506 -0
  5. basic_report-0.4.0/src/basic_report/css_and_scripts/basic_report/section_title.css +41 -0
  6. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/heatmap.py +80 -42
  7. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/page.py +195 -5
  8. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/report.py +116 -8
  9. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/base.html +1 -0
  10. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/css/colors.css +12 -0
  11. basic_report-0.4.0/src/basic_report/templates/elements/cards.html +22 -0
  12. basic_report-0.4.0/src/basic_report/templates/elements/dictionary.html +10 -0
  13. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/report_ball_section.html +9 -9
  14. basic_report-0.4.0/src/basic_report/templates/elements/section_title.html +5 -0
  15. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/utils.py +6 -19
  16. basic_report-0.2.2/src/basic_report/__init__.py +0 -20
  17. basic_report-0.2.2/src/basic_report/configs/default.yaml +0 -243
  18. {basic_report-0.2.2 → basic_report-0.4.0}/LICENSE.md +0 -0
  19. {basic_report-0.2.2 → basic_report-0.4.0}/README.md +0 -0
  20. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/css_and_scripts/bootstrap/bootstrap.min.css +0 -0
  21. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/css_and_scripts/bootstrap/bootstrap.min.js +0 -0
  22. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/css_and_scripts/bootstrap/jquery-3.3.1.slim.min.js +0 -0
  23. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/css_and_scripts/bootstrap/popper.min.js +0 -0
  24. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/css_and_scripts/datatables/dataTables.bootstrap4.min.js +0 -0
  25. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/css_and_scripts/datatables/jquery.dataTables.min.js +0 -0
  26. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/css_and_scripts/heatmap/CalendarLabel.min.js +0 -0
  27. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/css_and_scripts/heatmap/Legend.min.js +0 -0
  28. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/css_and_scripts/heatmap/Tooltip.min.js +0 -0
  29. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/css_and_scripts/heatmap/cal-heatmap.css +0 -0
  30. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/css_and_scripts/heatmap/cal-heatmap.min.js +0 -0
  31. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/css_and_scripts/heatmap/d3.v7.min.js +0 -0
  32. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/css_and_scripts/heatmap/popper.min.js +0 -0
  33. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/css/accordion.css +0 -0
  34. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/css/heatmap.css +0 -0
  35. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/css/navbar.css +0 -0
  36. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/css/site.css +0 -0
  37. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/css/table.css +0 -0
  38. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/css/tabs.css +0 -0
  39. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/accordion.html +0 -0
  40. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/columns.html +0 -0
  41. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/global_links.html +0 -0
  42. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/header.html +0 -0
  43. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/image.html +0 -0
  44. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/list.html +0 -0
  45. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/navbar_left.html +0 -0
  46. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/navbar_right.html +0 -0
  47. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/navbar_top.html +0 -0
  48. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/report_header.html +0 -0
  49. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/sublevel.html +0 -0
  50. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/table.html +0 -0
  51. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/tabs.html +0 -0
  52. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/elements/text.html +0 -0
  53. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/heatmap/base.html +0 -0
  54. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/heatmap/button_next.html +0 -0
  55. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/heatmap/button_prev.html +0 -0
  56. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/heatmap/heatmap.html +0 -0
  57. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/heatmap/legend.html +0 -0
  58. {basic_report-0.2.2 → basic_report-0.4.0}/src/basic_report/templates/heatmap/script.html +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: basic-report
3
- Version: 0.2.2
3
+ Version: 0.4.0
4
4
  Summary: A lightweight Python package for generating clean, professional static HTML reports.
5
5
  Keywords: html,report,static,responsive,website
6
6
  Author: Björn Scholz
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "basic-report"
7
- version = "0.2.2"
7
+ version = "0.4.0"
8
8
  description = "A lightweight Python package for generating clean, professional static HTML reports."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -0,0 +1,22 @@
1
+ from pathlib import Path
2
+
3
+ # Make the package dir available in the module
4
+ PACKAGE_DIR = Path(__file__).parent
5
+ PACKAGE_NAME = PACKAGE_DIR.name
6
+ CONFIG_DIR = PACKAGE_DIR / 'configs'
7
+ TEMPLATE_DIR = PACKAGE_DIR / 'templates'
8
+ SCRIPTS_DIR = PACKAGE_DIR / 'css_and_scripts'
9
+
10
+ # ruff: disable[E402]
11
+ from .report import Report as Report
12
+ from .heatmap import (
13
+ CalendarDomain as CalendarDomain,
14
+ CalendarLabel as CalendarLabel,
15
+ CalendarSubDomain as CalendarSubDomain,
16
+ CalendarDate as CalendarDate,
17
+ CalendarData as CalendarData,
18
+ CalendarColor as CalendarColor,
19
+ CalendarMisc as CalendarMisc,
20
+ CalendarHeatmap as CalendarHeatmap,
21
+ )
22
+ # ruff: enable[E402]
@@ -0,0 +1,506 @@
1
+ timezone: 'Europe/Berlin'
2
+
3
+ css:
4
+ site:
5
+ dark:
6
+ site_face_color: '#fefefa'
7
+ site_background_color: '#1f1f1f'
8
+ light:
9
+ site_face_color: '#1f1f1f'
10
+ site_background_color: '#fefefa'
11
+
12
+ tabs:
13
+ dark:
14
+ tab_border_bottom_color: '#414951'
15
+ tab_border_bottom_size: '2px'
16
+ tab_inactive_font_color: '#7a848c'
17
+ tab_inactive_font_weight: 'lighter'
18
+ tab_hover_font_color: '#dae2ef'
19
+ tab_active_font_color: '#dae2ef'
20
+ tab_active_font_weight: 'bolder'
21
+ tab_active_background_color: 'none'
22
+ tab_active_border_bottom_color: '#dae2ef'
23
+ tab_active_border_bottom_size: '2px'
24
+ light:
25
+ tab_border_bottom_color: '#abb1bc'
26
+ tab_border_bottom_size: '2px'
27
+ tab_inactive_font_color: '#abb1bc'
28
+ tab_inactive_font_weight: 'lighter'
29
+ tab_hover_font_color: '#414951'
30
+ tab_active_font_color: '#414951'
31
+ tab_active_font_weight: 'bolder'
32
+ tab_active_background_color: 'none'
33
+ tab_active_border_bottom_color: '#414951'
34
+ tab_active_border_bottom_size: '2px'
35
+
36
+ accordion:
37
+ dark:
38
+ accordion_border_color: '#414951'
39
+ accordion_border_size: '1px'
40
+ accordion_link_color: '#dae2ef'
41
+ accordion_header_background_color: '#2a2d2e'
42
+ accordion_body_top_border_color: '#dae2ef'
43
+ accordion_body_top_border_size: '1px'
44
+ accordion_body_background_color: '#313131'
45
+ accordion_body_font_color: '#dae2ef'
46
+ light:
47
+ accordion_border_color: '#cbcbc7'
48
+ accordion_border_size: '1px'
49
+ accordion_link_color: '#91989d'
50
+ accordion_header_background_color: '#f1f1ed'
51
+ accordion_body_top_border_color: '#bebeba'
52
+ accordion_body_top_border_size: '1px'
53
+ accordion_body_background_color: '#fefffa'
54
+ accordion_body_font_color: '#828995'
55
+
56
+ table:
57
+ dark:
58
+ table_controls_background_color: '#2a2d2e'
59
+ table_controls_border_color: '#555'
60
+ table_controls_font_color: '#dae2ef'
61
+ table_pagination_border_color: '#313131'
62
+ table_pagination_hover_border_color: '#66b2ff'
63
+ table_pagination_hover_font_color: '#66b2ff'
64
+ table_pagination_active_background_color: '#66b2ff'
65
+ table_pagination_active_border_color: '#66b2ff'
66
+ table_pagination_active_font_color: '#000'
67
+ light:
68
+ table_controls_background_color: '#f1f1ed'
69
+ table_controls_border_color: '#dee2e6'
70
+ table_controls_font_color: '#414951'
71
+ table_pagination_border_color: '#313131'
72
+ table_pagination_hover_border_color: '#66b2ff'
73
+ table_pagination_hover_font_color: '#66b2ff'
74
+ table_pagination_active_background_color: '#66b2ff'
75
+ table_pagination_active_border_color: '#66b2ff'
76
+ table_pagination_active_font_color: '#000'
77
+
78
+ default_color_profiles:
79
+ dark:
80
+ report_header: steel
81
+ header: slate
82
+ sub-header: slate
83
+ table: slate
84
+ report_ball: slate
85
+ text: slate
86
+ navbar: slate
87
+ section_title:
88
+ text: slate
89
+ bars: slate
90
+ dictionary:
91
+ key: light-gray
92
+ value: slate
93
+ card:
94
+ text: steel
95
+ background: dark-gray
96
+ border: steel
97
+ header_text: medium-gray
98
+ header_background: ultra-dark-gray
99
+ header_border: steel
100
+ footer_text: medium-gray
101
+ footer_background: ultra-dark-gray
102
+ footer_border: steel
103
+
104
+ light:
105
+ report_header: steel
106
+ header: slate
107
+ sub-header: slate
108
+ table: slate
109
+ report_ball: slate
110
+ text: slate
111
+ navbar: slate
112
+ section_title:
113
+ text: slate
114
+ bars: slate
115
+ dictionary:
116
+ key: steel
117
+ value: slate
118
+ card:
119
+ text: slate
120
+ background: white
121
+ border: slate
122
+ header_text: slate
123
+ header_background: ultra-light-gray
124
+ header_border: slate
125
+ footer_text: slate
126
+ footer_background: ultra-light-gray
127
+ footer_border: slate
128
+
129
+ custom_colors:
130
+ black:
131
+ border_dark: '#000'
132
+ border_light: '#000'
133
+ font_and_background: '#000'
134
+ face_color: '#fff0f3'
135
+ link: '#449adc'
136
+ hover: '#b7dbff'
137
+
138
+ white:
139
+ border_dark: '#000'
140
+ border_light: '#1e1e1e'
141
+ font_and_background: '#fff'
142
+ face_color: '#52595d'
143
+ link: '#449adc'
144
+ hover: '#b7dbff'
145
+
146
+ ultra-light-gray:
147
+ border_dark: '#000'
148
+ border_light: '#1e1e1e'
149
+ font_and_background: '#d3d3d3'
150
+ face_color: '#52595d'
151
+ link: '#449adc'
152
+ hover: '#b7dbff'
153
+
154
+ light-gray:
155
+ border_dark: '#000'
156
+ border_light: '#1e1e1e'
157
+ font_and_background: '#a9a9a9'
158
+ face_color: '#52595d'
159
+ link: '#449adc'
160
+ hover: '#b7dbff'
161
+
162
+ medium-gray:
163
+ border_dark: '#000'
164
+ border_light: '#1e1e1e'
165
+ font_and_background: '#686a6c'
166
+ face_color: '#fff0f3'
167
+ link: '#449adc'
168
+ hover: '#b7dbff'
169
+
170
+ dark-gray:
171
+ border_dark: '#000'
172
+ border_light: '#1e1e1e'
173
+ font_and_background: '#3a3b3c'
174
+ face_color: '#fff0f3'
175
+ link: '#449adc'
176
+ hover: '#b7dbff'
177
+
178
+ ultra-dark-gray:
179
+ border_dark: '#000'
180
+ border_light: '#1e1e1e'
181
+ font_and_background: '#1c1c1c'
182
+ face_color: '#fff0f3'
183
+ link: '#449adc'
184
+ hover: '#b7dbff'
185
+
186
+ steel:
187
+ border_dark: '#000'
188
+ border_light: '#1e1e1e'
189
+ font_and_background: '#495057'
190
+ face_color: '#fff0f3'
191
+ link: '#ced4da'
192
+ hover: '#212529'
193
+
194
+ slate:
195
+ border_dark: '#000'
196
+ border_light: '#1e1e1e'
197
+ font_and_background: '#708090'
198
+ face_color: '#fff0f3'
199
+ link: '#abc4dc'
200
+ hover: '#374550'
201
+
202
+ broccoli:
203
+ border_dark: '#000'
204
+ border_light: '#1e1e1e'
205
+ font_and_background: '#026c3d'
206
+ face_color: '#fff0f3'
207
+ link: '#a1c5a1'
208
+ hover: '#001f11'
209
+
210
+ forest:
211
+ border_dark: '#000'
212
+ border_light: '#1e1e1e'
213
+ font_and_background: '#5d805d'
214
+ face_color: '#fff0f3'
215
+ link: '#c2c5aa'
216
+ hover: '#253325'
217
+
218
+ basil:
219
+ border_dark: '#000'
220
+ border_light: '#1e1e1e'
221
+ font_and_background: '#829f82'
222
+ face_color: '#fff0f3'
223
+ link: '#516351'
224
+ hover: '#191f19'
225
+
226
+ alpine:
227
+ border_dark: '#000'
228
+ border_light: '#1e1e1e'
229
+ font_and_background: '#1b5448'
230
+ face_color: '#fff0f3'
231
+ link: '#8cc8c8'
232
+ hover: '#14364a'
233
+
234
+ teal:
235
+ border_dark: '#000'
236
+ border_light: '#1e1e1e'
237
+ font_and_background: '#045d5d'
238
+ face_color: '#fff0f3'
239
+ link: '#a9d6e5'
240
+ hover: '#14364a'
241
+
242
+ lagoon:
243
+ border_dark: '#000'
244
+ border_light: '#1e1e1e'
245
+ font_and_background: '#8cc8c8'
246
+ face_color: '#fff0f3'
247
+ link: '#045d5d'
248
+ hover: '#0a201c'
249
+
250
+ navy:
251
+ border_dark: '#000'
252
+ border_light: '#1e1e1e'
253
+ font_and_background: '#003366'
254
+ face_color: '#fff0f3'
255
+ link: '#a9d6e5'
256
+ hover: '#14364a'
257
+
258
+ ocean:
259
+ border_dark: '#000'
260
+ border_light: '#1e1e1e'
261
+ font_and_background: '#2a6f97'
262
+ face_color: '#fff0f3'
263
+ link: '#a9d6e5'
264
+ hover: '#14364a'
265
+
266
+ sky:
267
+ border_dark: '#000'
268
+ border_light: '#1e1e1e'
269
+ font_and_background: '#87afc7'
270
+ face_color: '#fff0f3'
271
+ link: '#4c6270'
272
+ hover: '#14364a'
273
+
274
+ burgundy:
275
+ border_dark: '#000'
276
+ border_light: '#1e1e1e'
277
+ font_and_background: '#800020'
278
+ face_color: '#fff0f3'
279
+ link: '#ff8fa3'
280
+ hover: '#ac605e'
281
+
282
+ cherry:
283
+ border_dark: '#000'
284
+ border_light: '#1e1e1e'
285
+ font_and_background: '#c9184a'
286
+ face_color: '#fff0f3'
287
+ link: '#ff8fa3'
288
+ hover: '#800f2f'
289
+
290
+ peach:
291
+ border_dark: '#000'
292
+ border_light: '#1e1e1e'
293
+ font_and_background: '#f98b88'
294
+ face_color: '#fff0f3'
295
+ link: '#800020'
296
+ hover: '#c9184a'
297
+
298
+ cocoa:
299
+ border_dark: '#000'
300
+ border_light: '#1e1e1e'
301
+ font_and_background: '#35281e'
302
+ face_color: '#fff0f3'
303
+ link: '#e6b8a2'
304
+ hover: '#50362a'
305
+
306
+ earth:
307
+ border_dark: '#000'
308
+ border_light: '#1e1e1e'
309
+ font_and_background: '#9d6b53'
310
+ face_color: '#fff0f3'
311
+ link: '#e6b8a2'
312
+ hover: '#50362a'
313
+
314
+ cappuccino:
315
+ border_dark: '#000'
316
+ border_light: '#1e1e1e'
317
+ font_and_background: '#c09881'
318
+ face_color: '#fff0f3'
319
+ link: '#ffc394'
320
+ hover: '#1e1611'
321
+
322
+ papaya:
323
+ border_dark: '#000'
324
+ border_light: '#1e1e1e'
325
+ font_and_background: '#ff5f1f'
326
+ face_color: '#fff0f3'
327
+ link: '#ffc16a'
328
+ hover: '#582820'
329
+
330
+ sunset:
331
+ border_dark: '#000'
332
+ border_light: '#1e1e1e'
333
+ font_and_background: '#f25c54'
334
+ face_color: '#fff0f3'
335
+ link: '#ffc16a'
336
+ hover: '#582820'
337
+
338
+ coral:
339
+ border_dark: '#000'
340
+ border_light: '#1e1e1e'
341
+ font_and_background: '#f9966b'
342
+ face_color: '#fff0f3'
343
+ link: '#ffd9c2'
344
+ hover: '#582820'
345
+
346
+ saffron:
347
+ border_dark: '#000'
348
+ border_light: '#1e1e1e'
349
+ font_and_background: '#fbb917'
350
+ face_color: '#fff'
351
+ link: '#ffe2bd'
352
+ hover: '#eb6758'
353
+
354
+ sunrise:
355
+ border_dark: '#000'
356
+ border_light: '#1e1e1e'
357
+ font_and_background: '#f3b360'
358
+ face_color: '#fff'
359
+ link: '#ffe2bd'
360
+ hover: '#eb6758'
361
+
362
+ vanilla:
363
+ border_dark: '#000'
364
+ border_light: '#1e1e1e'
365
+ font_and_background: '#f3e5ab'
366
+ face_color: '#52595d'
367
+ link: '#9d6b53'
368
+ hover: '#eb6758'
369
+
370
+ ice:
371
+ border_dark: '#000'
372
+ border_light: '#1e1e1e'
373
+ font_and_background: '#f0f8ff'
374
+ face_color: '#4a7b9d'
375
+ link: '#449adc'
376
+ hover: '#b7dbff'
377
+
378
+ parchment:
379
+ border_dark: '#000'
380
+ border_light: '#1e1e1e'
381
+ font_and_background: '#fefbe3'
382
+ face_color: '#8b6a4d'
383
+ link: '#cca67a'
384
+ hover: '#e1cdad'
385
+
386
+ mpg-green:
387
+ border_dark: '#000'
388
+ border_light: '#1e1e1e'
389
+ font_and_background: '#006c66'
390
+ face_color: '#fff0f3'
391
+ link: '#00b8ae'
392
+ hover: '#00201e'
393
+
394
+ mpg-secondary-green:
395
+ border_dark: '#000'
396
+ border_light: '#1e1e1e'
397
+ font_and_background: '#005555'
398
+ face_color: '#fff0f3'
399
+ link: '#00a1a1'
400
+ hover: '#00201e'
401
+
402
+ mpg-blue:
403
+ border_dark: '#000'
404
+ border_light: '#1e1e1e'
405
+ font_and_background: '#29485d'
406
+ face_color: '#fff0f3'
407
+ link: '#5aa0cf'
408
+ hover: '#000d13'
409
+
410
+ mpg-secondary-blue:
411
+ border_dark: '#000'
412
+ border_light: '#1e1e1e'
413
+ font_and_background: '#006699'
414
+ face_color: '#fff0f3'
415
+ link: '#57b0ff'
416
+ hover: '#000d13'
417
+
418
+ mpg-lime:
419
+ border_dark: '#000'
420
+ border_light: '#1e1e1e'
421
+ font_and_background: '#cadb2a'
422
+ face_color: '#52595d'
423
+ link: '#6a7416'
424
+ hover: '#000d13'
425
+
426
+ mpg-secondary-lime:
427
+ border_dark: '#000'
428
+ border_light: '#1e1e1e'
429
+ font_and_background: '#d9e371'
430
+ face_color: '#52595d'
431
+ link: '#5e6330'
432
+ hover: '#000d13'
433
+
434
+ mpg-orange:
435
+ border_dark: '#000'
436
+ border_light: '#1e1e1e'
437
+ font_and_background: '#f58220'
438
+ face_color: '#fff0f3'
439
+ link: '#ffd15e'
440
+ hover: '#000d13'
441
+
442
+ mpg-secondary-orange:
443
+ border_dark: '#000'
444
+ border_light: '#1e1e1e'
445
+ font_and_background: '#f8a35c'
446
+ face_color: '#fff0f3'
447
+ link: '#774e2c'
448
+ hover: '#000d13'
449
+
450
+ heatmap:
451
+ misc:
452
+ range: 5
453
+ animation_duration: 200
454
+ vertical_orientation: False
455
+ tooltip_enabled: True
456
+ tooltip_function: 'predefined:date+value'
457
+ tooltip_precision: 2
458
+ legend_width: 300
459
+ legend_label: 'Test Legend'
460
+ legend_font_size: 14
461
+ legend_font_weight: 450
462
+
463
+ domain:
464
+ type: 'month' # hour, day, week, month, year
465
+ gutter: 4
466
+ padding: [0,0,0,0]
467
+ dynamic_dimensions: False
468
+ sort: 'asc'
469
+
470
+ label:
471
+ text: 'MMM' # YY, YYYY, M, MM, MMM, MMMM, D, DD, d, dd, ddd, dddd, H, HH, h, hh, null
472
+ position: 'bottom' # top, right, bottom, left
473
+ align: 'middle' # start, middle, end
474
+ offset: [0, 0]
475
+ rotate: null
476
+ width: 100
477
+ height: 100
478
+ font_size: 16
479
+ font_weight: 450
480
+
481
+ subdomain:
482
+ type: 'day' # minute, hour, day, week, month, xDay, ghDay
483
+ gutter: 2
484
+ width: 30
485
+ height: 30
486
+ radius: 0
487
+ sort: 'asc' # asc, desc
488
+ label: 'D' #M, MM, MMM, MMMM, D, DD, d, dd, ddd, dddd, H, HH, h, hh, m, mm, null
489
+ font_size: 14
490
+ font_weight: 450
491
+ background_color: '#ededed'
492
+
493
+ date:
494
+ start: '2026-03-01'
495
+ min: null
496
+ max: null
497
+ highlight: ['today']
498
+ weekstart: 1
499
+ timezone: 'Europe/Berlin'
500
+
501
+ color:
502
+ domain: [0, 10] # Plot range, for linear interpolation use min max. For thresholds use more
503
+ scheme: 'YlOrRd' # https://d3js.org/d3-scale-chromatic, set to null if range is used
504
+ range: null # Hex codes to use as colormap, set to null if scheme is used
505
+ interpolate: null # rgb, hsl, lab, hcl, null
506
+ type: 'linear' # https://cal-heatmap.com/docs/options/scale#type
@@ -0,0 +1,41 @@
1
+ .section-title {
2
+ display: flex;
3
+ align-items: center;
4
+ gap: 10px;
5
+ margin: 0 1em 10px 1em;
6
+ font-weight: 500;
7
+ letter-spacing: 2px;
8
+ }
9
+
10
+ .section-title::before,
11
+ .section-title::after {
12
+ content: "";
13
+ height: 2px;
14
+ background: #616161;
15
+ flex: 0 1 80px;
16
+ min-width: 0;
17
+ }
18
+
19
+ .section-title.center {
20
+ justify-content: center;
21
+ }
22
+
23
+ .section-title.left {
24
+ justify-content: flex-start;
25
+ }
26
+
27
+ .section-title.left::before {
28
+ display: none;
29
+ }
30
+
31
+ .section-title.left::after {
32
+ flex: 0 1 80px;
33
+ }
34
+
35
+ .section-title.right {
36
+ justify-content: flex-end;
37
+ }
38
+
39
+ .section-title.right::after {
40
+ display: none;
41
+ }