fh-matui 0.9.10__tar.gz → 0.9.11__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.
- {fh_matui-0.9.10/fh_matui.egg-info → fh_matui-0.9.11}/PKG-INFO +1 -1
- fh_matui-0.9.11/fh_matui/__init__.py +1 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/fh_matui/datatable.py +7 -23
- {fh_matui-0.9.10 → fh_matui-0.9.11/fh_matui.egg-info}/PKG-INFO +1 -1
- {fh_matui-0.9.10 → fh_matui-0.9.11}/settings.ini +1 -1
- fh_matui-0.9.10/fh_matui/__init__.py +0 -1
- {fh_matui-0.9.10 → fh_matui-0.9.11}/LICENSE +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/MANIFEST.in +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/README.md +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/fh_matui/_modidx.py +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/fh_matui/app_pages.py +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/fh_matui/components.py +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/fh_matui/core.py +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/fh_matui/foundations.py +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/fh_matui/web_pages.py +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/fh_matui.egg-info/SOURCES.txt +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/fh_matui.egg-info/dependency_links.txt +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/fh_matui.egg-info/entry_points.txt +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/fh_matui.egg-info/not-zip-safe +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/fh_matui.egg-info/requires.txt +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/fh_matui.egg-info/top_level.txt +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/pyproject.toml +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/setup.cfg +0 -0
- {fh_matui-0.9.10 → fh_matui-0.9.11}/setup.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.9.10"
|
|
@@ -280,31 +280,15 @@ def DataTable(
|
|
|
280
280
|
cls=ButtonT.primary
|
|
281
281
|
)
|
|
282
282
|
|
|
283
|
-
# Pagination controls
|
|
283
|
+
# Pagination controls (using reusable Pagination component)
|
|
284
284
|
pagination = None
|
|
285
285
|
if total_pages > 1:
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
hx_get=f"{base_route}?{prev_params}",
|
|
293
|
-
hx_target=f"#{container_id}",
|
|
294
|
-
hx_push_url="true",
|
|
295
|
-
disabled=page == 1,
|
|
296
|
-
cls="circle"
|
|
297
|
-
),
|
|
298
|
-
Span(f"Page {page} of {total_pages}", cls="middle"),
|
|
299
|
-
Button(
|
|
300
|
-
Icon("navigate_next"),
|
|
301
|
-
hx_get=f"{base_route}?{next_params}",
|
|
302
|
-
hx_target=f"#{container_id}",
|
|
303
|
-
hx_push_url="true",
|
|
304
|
-
disabled=page == total_pages,
|
|
305
|
-
cls="circle"
|
|
306
|
-
),
|
|
307
|
-
cls="row center-align"
|
|
286
|
+
pagination_params = urlencode({"search": search, "page_size": page_size})
|
|
287
|
+
pagination = Pagination(
|
|
288
|
+
current_page=page,
|
|
289
|
+
total_pages=total_pages,
|
|
290
|
+
hx_get=f"{base_route}?{pagination_params}",
|
|
291
|
+
hx_target=f"#{container_id}"
|
|
308
292
|
)
|
|
309
293
|
|
|
310
294
|
# Search form
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.9.9"
|
|
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
|
|
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
|