Puru Vijay

Results 184 comments of Puru Vijay

Hey! Sorry for the late reply. Regarding your problem, is there anything stopping you from using `import { Draggable } from 'https://unpkg.com/@neodrag/[email protected]/dist/min/index.js'`?

Ah! I'll add a UMD in that case

I have plans to add a `delay` option. That will require some amount of touching/pressing before dragging begins. Would that satisfy your needs?

Hi @santiagopuentep now that v2.0 is very close and you have requested it, I'll be straight: I don't really understand the API design you want. Can you suggest some rough...

`deadzone` could be a nice name. But I find your idea of a generic solution more appealing. I am thinking it could maybe resemble this: ```ts start: ({ shadowOffsetX, shadowOffsetY...

Hi! Sorry for the delay, I kinda got busy with life and other more pressing projects for a while. I can't promise when this would be released. If you think...

Hey man! I test things out by going to `packages/svelte/demo` folder and running `pnpm dev` in that, while having `pnpm compile:watch` in `packages/svelte` running at all times. If you're not...

It is because your `options` variable isn't watching `position`. Instead of `let options`, use `$: options`. Let me know if that helps :)

> Hey I am writing a tiny svelte library which changes size of the elements for which I change transform style of the element, > I also rely on this...