Martin Pengelly-Phillips

Results 123 comments of Martin Pengelly-Phillips

I think the docs are outdated/out of sync. Add an additional class `outline-solid` for the outline to work. For example: `outline-solid outline-solid-red-400` You can also control width with `outline-[x]` and...

@jcuenod what in that link are you interested in for this issue? (I couldn't see anything that animated final transform.) What I am thinking about here is more like [this](https://5fc05e08a4a65d0021ae0bf2-ipdskkittb.chromatic.com/?path=/story/presets-sortable-vertical--basic-setup)...

Ah, gotcha. So you can use css transform transitions today for the swapping effect. The issue you'll see then is that on drop the dropped item will transition oddly, which...

Update on this - I'm exploring two approaches currently: A) Defer clearing drag state until after all `onDragEnd` handlers have executed. This removes the need to locally cache state for...

After extensive investigation, I'm going to pursue option (b) and have started foundations for that in [0.7.0](https://github.com/thisbeyond/solid-dnd/releases/tag/0.7.0). Option (a) ended up overcomplicating the code and expectations for consumers too much.

Need to find current best approach to testing from SolidJS community.

See also someone experimenting with this type of interface: https://codesandbox.io/embed/solid-nested-dnd-prototype-uu5jm?file=/src/App.tsx&codemirror=1

Ah, that link was just an example of what someone was trying to do - not a working implementation for Solid DnD. I've updated the comment to be clearer. I'll...

Thanks for the kind words. I haven't tried to do something similar yet. I'm sure the basic building blocks will make it possible in solid-dnd, but I'm also sure there...

Ah, understood. I'm making good progress on some improvements to solid dnd that might help for your use case. I'll post an update here once they are done.