Vlad Prodan

Results 7 comments of Vlad Prodan

@Kris-Pelteshki Can you please explain ? how did you resolve "error TS5042: Option 'project' cannot be mixed" issue?

I read README, but what's next? > this is not my repository, although I value the work it was put into this project. [@virus231](https://github.com/virus231) => you seem to have missed...

@debabin Hello ```markdown Here's a basic implementation of `useRightClick` hook: ```typescript import { useRef, useEffect } from 'react'; export function useRightClick(handler: (event: MouseEvent) => void) { const ref = useRef(null);...

@debabin Thanks for your input! I see your point. useContextMenu covers more advanced cases like touch delay and scroll lock out of the box, while useRightClick is just a basic...

I appreciate your perspective. A unified useContextMenu hook that handles both desktop and mobile interactions sounds like a solid direction. This would avoid redundancy and give users more control over...