feat: TitlesFilterPanel component
All checks were successful
Build and Deploy Go App / build (push) Successful in 6m16s
Build and Deploy Go App / deploy (push) Successful in 37s

This commit is contained in:
nihonium 2025-12-04 05:52:31 +03:00
parent ab29c33f5b
commit 4dd60f3b19
Signed by: nihonium
GPG key ID: 0251623741027CFC
3 changed files with 142 additions and 6 deletions

View file

@ -20,6 +20,7 @@ export class DefaultService {
* @param cursor
* @param sort
* @param sortForward
* @param extSearch
* @param word
* @param status List of title statuses to filter
* @param rating
@ -35,6 +36,7 @@ export class DefaultService {
cursor?: string,
sort?: TitleSort,
sortForward: boolean = true,
extSearch: boolean = false,
word?: string,
status?: Array<TitleStatus>,
rating?: number,
@ -57,6 +59,7 @@ export class DefaultService {
'cursor': cursor,
'sort': sort,
'sort_forward': sortForward,
'ext_search': extSearch,
'word': word,
'status': status,
'rating': rating,