Hi
I'm trying to implement a component that handles inner components , this inner components needs to be movable with the mouse (inside the limits of the parent component) , resizable and must not intersect between each other when the user resizes or moves it. The problem is that every time an inner component is moved or resized needs to know the position of their "brothers" , but as we all know every component can access only its shadow dom and must not be able to query the properties of the parent or the "brothers" , at least from the javascript of the inner components , so i need to understand which is the best way to think this problem and implement it.
Regards , Gonzalo.