Description
Problem
I am using React DND to handle dragging. I need it because redux is implemented under the hood which gives me the ability to have one drag layer and multiple layers subscribed to the movements.
I have a HOC that wraps a component and manages the x, y transform. So I am wrapping your lib with the x,y positioning. Your lib is being used for the wonderful handle logic that moves from the different corners.
I'll send the values to a higher level and rerender down to resize all the elements wrapped.
Solution
I'd simply like to see if we could remove the translate3d(-50%, -50%, 0)
set on the wrapperStyle
or have a way to override it.
Alternatives
I am considering managing my own state. However, I can't really do much because wrapperStyle
always overrides style
https://github.com/dekk-app/react-mops/blob/master/packages/react-mops/src/box.tsx#L283