* Gets the current position in pixels the draggable outside of a drop container.
()
| 667 | * Gets the current position in pixels the draggable outside of a drop container. |
| 668 | */ |
| 669 | getFreeDragPosition(): Readonly<Point> { |
| 670 | const position = this.isDragging() ? this._activeTransform : this._passiveTransform; |
| 671 | return {x: position.x, y: position.y}; |
| 672 | } |
| 673 | |
| 674 | /** |
| 675 | * Sets the current position in pixels the draggable outside of a drop container. |
nothing calls this directly
no test coverage detected