staticdash 2025.30__tar.gz → 2025.32__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.30 → staticdash-2025.32}/PKG-INFO +1 -1
- {staticdash-2025.30 → staticdash-2025.32}/pyproject.toml +1 -1
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/dashboard.py +3 -3
- {staticdash-2025.30 → staticdash-2025.32}/staticdash.egg-info/PKG-INFO +1 -1
- {staticdash-2025.30 → staticdash-2025.32}/README.md +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/setup.cfg +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/setup.py +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/__init__.py +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/css/style.css +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/js/script.js +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/vendor/mathjax/tex-mml-chtml.js +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/vendor/plotly/plotly.min.js +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/vendor/prism/components/prism-bash.min.js +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/vendor/prism/components/prism-c.min.js +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/vendor/prism/components/prism-javascript.min.js +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/vendor/prism/components/prism-json.min.js +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/vendor/prism/components/prism-markup.min.js +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/vendor/prism/components/prism-python.min.js +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/vendor/prism/components/prism-sql.min.js +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/vendor/prism/prism-tomorrow.min.css +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/vendor/prism/prism.min.js +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash.egg-info/SOURCES.txt +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash.egg-info/dependency_links.txt +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/staticdash.egg-info/requires.txt +0 -0
- {staticdash-2025.30 → staticdash-2025.32}/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.32"
|
|
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" }
|
|
@@ -296,7 +296,7 @@ class Dashboard:
|
|
|
296
296
|
with div(cls="sidebar-children"):
|
|
297
297
|
self._render_sidebar(page.children, prefix, current_slug)
|
|
298
298
|
else:
|
|
299
|
-
a(page.title, cls=
|
|
299
|
+
a(page.title, cls="nav-link", href=page_href)
|
|
300
300
|
|
|
301
301
|
def publish(self, output_dir="output"):
|
|
302
302
|
output_dir = os.path.abspath(output_dir)
|
|
@@ -314,11 +314,11 @@ class Dashboard:
|
|
|
314
314
|
head.add(link(rel="stylesheet", href=f"{rel_prefix}assets/css/style.css"))
|
|
315
315
|
head.add(script(type="text/javascript", src=f"{rel_prefix}assets/js/script.js"))
|
|
316
316
|
|
|
317
|
-
# MathJax: config for $...$ and $$...$$, then
|
|
317
|
+
# MathJax: config for $...$ and $$...$$, then **SVG** bundle (no webfonts needed)
|
|
318
318
|
head.add(raw_util(
|
|
319
319
|
"<script>window.MathJax={tex:{inlineMath:[['$','$'],['\\\\(','\\\\)']],displayMath:[['$$','$$'],['\\\\[','\\\\]']]}};</script>"
|
|
320
320
|
))
|
|
321
|
-
head.add(script(src=f"{rel_prefix}assets/vendor/mathjax/tex-
|
|
321
|
+
head.add(script(src=f"{rel_prefix}assets/vendor/mathjax/tex-svg.js"))
|
|
322
322
|
|
|
323
323
|
# Prism (theme + core + languages) — all local
|
|
324
324
|
head.add(link(rel="stylesheet", href=f"{rel_prefix}assets/vendor/prism/prism-tomorrow.min.css"))
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/vendor/prism/components/prism-c.min.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/vendor/prism/components/prism-sql.min.js
RENAMED
|
File without changes
|
{staticdash-2025.30 → staticdash-2025.32}/staticdash/assets/vendor/prism/prism-tomorrow.min.css
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|