[Library] Add Infinite Scrolling

Add infinite scrolling and fix selecting rows
This commit is contained in:
2025-05-04 16:45:21 +02:00
parent 35fd50c728
commit f0453a3daf
9 changed files with 127 additions and 43 deletions

View File

@@ -117,6 +117,12 @@ export interface FolderIssue {
description: string
}
export interface LibrarySearch {
searchTerm: string
page: number
pageSize: number
}
export type ChartData = SearchResult['data'][number]
export interface SearchResult {
found: number