simple-module-dashboard 0.0.2__tar.gz → 0.0.3__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 (18) hide show
  1. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/.gitignore +4 -0
  2. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/PKG-INFO +6 -6
  3. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/pyproject.toml +6 -6
  4. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/LICENSE +0 -0
  5. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/README.md +0 -0
  6. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/dashboard/__init__.py +0 -0
  7. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/dashboard/endpoints/__init__.py +0 -0
  8. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/dashboard/endpoints/api.py +0 -0
  9. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/dashboard/endpoints/views.py +0 -0
  10. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/dashboard/locales/en.json +0 -0
  11. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/dashboard/locales/es.json +0 -0
  12. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/dashboard/module.py +0 -0
  13. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/dashboard/pages/Home.tsx +0 -0
  14. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/dashboard/py.typed +0 -0
  15. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/dashboard/stats.py +0 -0
  16. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/package.json +0 -0
  17. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/tests/test_dashboard.py +0 -0
  18. {simple_module_dashboard-0.0.2 → simple_module_dashboard-0.0.3}/tsconfig.json +0 -0
@@ -36,6 +36,10 @@ uploads/
36
36
  # Vite
37
37
  host/static/dist/
38
38
 
39
+ # VitePress (docs)
40
+ docs/.vitepress/cache/
41
+ docs/.vitepress/dist/
42
+
39
43
  # Auto-generated frontend module manifest (regenerated by the host at boot
40
44
  # or via `make gen-pages`).
41
45
  host/client_app/modules.manifest.json
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simple_module_dashboard
3
- Version: 0.0.2
3
+ Version: 0.0.3
4
4
  Summary: Admin landing page and sidebar menu host for authenticated users of a simple_module app
5
5
  Project-URL: Homepage, https://github.com/antosubash/simple_module_python
6
6
  Project-URL: Repository, https://github.com/antosubash/simple_module_python
@@ -21,11 +21,11 @@ Classifier: Topic :: Internet :: WWW/HTTP
21
21
  Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
22
22
  Classifier: Typing :: Typed
23
23
  Requires-Python: >=3.12
24
- Requires-Dist: simple-module-core==0.0.2
25
- Requires-Dist: simple-module-db==0.0.2
26
- Requires-Dist: simple-module-hosting==0.0.2
27
- Requires-Dist: simple-module-products==0.0.2
28
- Requires-Dist: simple-module-users==0.0.2
24
+ Requires-Dist: simple-module-core==0.0.3
25
+ Requires-Dist: simple-module-db==0.0.3
26
+ Requires-Dist: simple-module-hosting==0.0.3
27
+ Requires-Dist: simple-module-products==0.0.3
28
+ Requires-Dist: simple-module-users==0.0.3
29
29
  Description-Content-Type: text/markdown
30
30
 
31
31
  # simple_module_dashboard
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "simple_module_dashboard"
3
- version = "0.0.2"
3
+ version = "0.0.3"
4
4
  description = "Admin landing page and sidebar menu host for authenticated users of a simple_module app"
5
5
  readme = "README.md"
6
6
  license = "MIT"
@@ -21,11 +21,11 @@ classifiers = [
21
21
  "Typing :: Typed",
22
22
  ]
23
23
  dependencies = [
24
- "simple_module_core==0.0.2",
25
- "simple_module_db==0.0.2",
26
- "simple_module_hosting==0.0.2",
27
- "simple_module_products==0.0.2",
28
- "simple_module_users==0.0.2",
24
+ "simple_module_core==0.0.3",
25
+ "simple_module_db==0.0.3",
26
+ "simple_module_hosting==0.0.3",
27
+ "simple_module_products==0.0.3",
28
+ "simple_module_users==0.0.3",
29
29
  ]
30
30
 
31
31
  [project.entry-points.simple_module]