feat: Implemented filtering and searching
This commit is contained in:
parent
4806f3487a
commit
444d8c4c27
49 changed files with 841 additions and 290 deletions
8
src/mainview/types.d.ts
vendored
8
src/mainview/types.d.ts
vendored
|
|
@ -50,9 +50,15 @@ declare interface FocusParams
|
|||
onFocus?: (focusKey: string, node: HTMLElement, details: Record<string, any>) => void;
|
||||
}
|
||||
|
||||
declare interface InteractParamsArgs
|
||||
{
|
||||
event?: Event,
|
||||
focusKey?: string;
|
||||
}
|
||||
|
||||
declare interface InteractParams
|
||||
{
|
||||
onAction?: (e?: Event) => void;
|
||||
onAction?: (ctx: InteractParamsArgs) => void;
|
||||
}
|
||||
|
||||
declare interface FilterOption extends FocusParams, InteractParams
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue