staticdash 2025.12__tar.gz → 2025.14__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.
- {staticdash-2025.12 → staticdash-2025.14}/PKG-INFO +1 -1
- {staticdash-2025.12 → staticdash-2025.14}/pyproject.toml +1 -1
- {staticdash-2025.12 → staticdash-2025.14}/staticdash/assets/css/style.css +1 -1
- {staticdash-2025.12 → staticdash-2025.14}/staticdash/dashboard.py +1 -1
- {staticdash-2025.12 → staticdash-2025.14}/staticdash.egg-info/PKG-INFO +1 -1
- {staticdash-2025.12 → staticdash-2025.14}/README.md +0 -0
- {staticdash-2025.12 → staticdash-2025.14}/setup.cfg +0 -0
- {staticdash-2025.12 → staticdash-2025.14}/staticdash/__init__.py +0 -0
- {staticdash-2025.12 → staticdash-2025.14}/staticdash/assets/js/script.js +0 -0
- {staticdash-2025.12 → staticdash-2025.14}/staticdash.egg-info/SOURCES.txt +0 -0
- {staticdash-2025.12 → staticdash-2025.14}/staticdash.egg-info/dependency_links.txt +0 -0
- {staticdash-2025.12 → staticdash-2025.14}/staticdash.egg-info/requires.txt +0 -0
- {staticdash-2025.12 → staticdash-2025.14}/staticdash.egg-info/top_level.txt +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "staticdash"
|
|
7
|
-
version = "2025.
|
|
7
|
+
version = "2025.14"
|
|
8
8
|
description = "A lightweight static HTML dashboard generator with Plotly and pandas support."
|
|
9
9
|
authors = [
|
|
10
10
|
{ name = "Brian Day", email = "brian.day1@gmail.com" }
|
|
@@ -341,7 +341,7 @@ table, .syntax-block, pre {
|
|
|
341
341
|
|
|
342
342
|
/* When open, show content */
|
|
343
343
|
.sidebar-group.open > .sidebar-children {
|
|
344
|
-
max-height:
|
|
344
|
+
max-height: none;
|
|
345
345
|
}
|
|
346
346
|
|
|
347
347
|
/* Enable transition only after page load */
|
|
@@ -361,7 +361,7 @@ class Dashboard:
|
|
|
361
361
|
raise ValueError("add_plot must be called with a plotly.graph_objects.Figure")
|
|
362
362
|
fig.update_layout(margin=dict(l=10, r=10, t=30, b=30), width=900, height=540)
|
|
363
363
|
with tempfile.NamedTemporaryFile(suffix=".png", delete=False) as tmpfile:
|
|
364
|
-
fig.write_image(tmpfile.name, width=
|
|
364
|
+
fig.write_image(tmpfile.name, width=600, height=360, scale=2, format="png", engine="kaleido")
|
|
365
365
|
with open(tmpfile.name, "rb") as imgf:
|
|
366
366
|
img_bytes = imgf.read()
|
|
367
367
|
img_buf = io.BytesIO(img_bytes)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|