feat(ui): Add pagination to books pages and improve spacing
- Added CursorPagination component with page size selector (20/50/100) - Updated /books page with pagination support - Updated /libraries/[id]/books with pagination - Improved layout margins (added pb-16 and responsive px) - Series page uses improved layout spacing
This commit is contained in:
@@ -19,6 +19,15 @@ export type IndexJobDto = {
|
||||
finished_at: string | null;
|
||||
error_opt: string | null;
|
||||
created_at: string;
|
||||
stats_json: {
|
||||
scanned_files: number;
|
||||
indexed_files: number;
|
||||
removed_files: number;
|
||||
errors: number;
|
||||
} | null;
|
||||
progress_percent: number | null;
|
||||
processed_files: number | null;
|
||||
total_files: number | null;
|
||||
};
|
||||
|
||||
export type TokenDto = {
|
||||
|
||||
Reference in New Issue
Block a user