Merge remote-tracking branch 'origin/main' into profile-modal
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful

This commit is contained in:
Twig 2025-08-04 20:20:20 +02:00
commit 83d4f02c3a
Signed by: twig
SSH key fingerprint: SHA256:nBO+OwpTkd8LYhe38PIqdxmDvkIg9Vw2EbrRZM97dkU
18 changed files with 147 additions and 73 deletions

View file

@ -102,5 +102,14 @@ export interface ModalProps {
export interface ContextMenuItem {
name: string,
icon?: string,
type: "normal" | "danger"
callback: (...args: any[]) => any;
}
export interface ContextMenuInterface {
show: boolean,
pointerX: number,
pointerY: number,
items: ContextMenuItem[]
}