If we create div tag inside div tag and set contentEditable="true" then draggable doesn't work.
It's not working because we have set this:
if (inputEvent.target.nodeName === "DIV") {
stop();
}
drag should stop only for the element which is set as contentEditable="true".
See attached gif:

@ajinkya-dev
This issue seems to be similar to https://github.com/daybrush/moveable/issues/148.
I'll add this feature soon.
@ajinkya-dev @daybrush
To check target element is contentEditable or not,
HTMLElement.isContentEditable is read-only property to check this
The HTMLElement.isContentEditable read-only property returns a Boolean that is true if the contents of the element are editable; otherwise it returns false.
@ajinkya-dev @jagannath7775
moveable's new version is released.
moveable 0.17.1react-moveable 0.20.1preact-moveable 0.19.1ngx-moveable 0.13.1svelte-moveable 0.8.1add dragArea, padding props.
https://daybrush.com/moveable/release/latest/doc/Moveable.html#dragArea
https://daybrush.com/moveable/release/latest/doc/Moveable.html#padding
Most helpful comment
@ajinkya-dev
This issue seems to be similar to https://github.com/daybrush/moveable/issues/148.
I'll add this feature soon.