Declan Warn

Results 8 comments of Declan Warn

Hi @davidfloegel, Thanks for the input! I really like the idea of using render props instead. Being able to sort and group props is not something I've considered, but it...

> Update: This workaround, however, removes the image from the drag preview in Firefox on the first drag after page load. Hey @nikischin are you still seeing this behaviour in...

Hey @ivanjeremic in Pragmatic drag and drop we rely on the browser to tell us when you are over an element. The browser only considers you to be 'over' the...

Hey @psychedelicious the `preventUnhandled` utility will ensure that every drop on the page is handled, even if you drop outside of a drop target. I think this is what you...

If the flash is because of gaps between drop targets then stickiness could prevent this: https://atlassian.design/components/pragmatic-drag-and-drop/core-package/drop-targets#getissticky ```js dropTargetForElements({ element: myElement, getIsSticky: () => true, }); ```

Hey @dborysov to give some extra context the code for Pragmatic drag and drop lives in a monorepo that uses React 18. This GitHub repo is just a mirror. That...

We've released new versions of most of our packages 😄 These packages no longer declare `react` in `peerDependencies`: - Flourish (`@atlaskit/pragmatic-drag-and-drop-flourish`) - RBD autoscroller (`@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-autoscroll`) These packages now allow `react@^19.0.0`...

Hey @hungify I don't think this will ever be built into the core library, but I don't see why it couldn't be built on top of it. We are very...