[chore] Update primevue to 4.2.5 (#2304)

This commit is contained in:
Chenlei Hu
2025-01-20 16:22:24 -05:00
committed by GitHub
parent 8b9f0ddd1d
commit 34c267c755
13 changed files with 63 additions and 140 deletions

View File

@@ -11,6 +11,6 @@ export function electronAPI() {
return (window as any).electronAPI as ElectronAPI
}
export function showNativeMenu(options?: ElectronContextMenuOptions) {
electronAPI()?.showContextMenu(options)
export function showNativeMenu(event: MouseEvent) {
electronAPI()?.showContextMenu(event as ElectronContextMenuOptions)
}