Hi!
I’m trying to fix the following bug in my application:
it's impossible to move items between drop zones. Instead, I have to delete the item, create a new one, and then place it in the desired drop zone. It's also not possible to move an item from a drop zone to the root (where all the items are) or vice versa, from the root into a nested drop zone.
The puck documentation mentions the following:
"Restrictions: You can’t drag between DropZones that don’t share a parent component." (https://puckeditor.com/docs/api-reference/components/drop-zone)
This could explain the issue, but I noticed something in the package demo (https://demo.puckeditor.com/edit). There’s a "Flex" component with its own drop zone, and there, moving items between drop zones works as expected.
I started digging into the demo’s code to find differences between my app and the demo, but so far, I haven’t found anything conclusive.
I also tried creating a simplified version based on what I saw in the demo’s code, but moving items between drop zones still doesn’t work.
Has anyone encountered something similar?
I’d really appreciate any help!