()
| 249 | |
| 250 | // HACK: To get `react-draggable` state x and y. |
| 251 | getDraggablePosition(): { x: number; y: number } { |
| 252 | const { x, y } = (this.draggable as any).state; |
| 253 | return { x, y }; |
| 254 | } |
| 255 | |
| 256 | getParent() { |
| 257 | return this.resizable && (this.resizable as any).parentNode; |
no outgoing calls
no test coverage detected