feat: made the method isDragTowardWorkspace non private (#7529)

* removed internal from horizontal and vertical flyout

* feat : made the method isDragTowardWorkspace non private

* feat : made the method isDragTowardWorkspace non private

---------

Co-authored-by: Ramya Non-IU <ramyaram2092@outlook.com>
This commit is contained in:
Ramya Ramasamy
2023-09-22 14:28:48 -07:00
committed by GitHub
parent a4889732d6
commit 4437fdb089
2 changed files with 0 additions and 2 deletions

View File

@@ -306,7 +306,6 @@ export class HorizontalFlyout extends Flyout {
* @param currentDragDeltaXY How far the pointer has moved from the position
* at mouse down, in pixel units.
* @returns True if the drag is toward the workspace.
* @internal
*/
override isDragTowardWorkspace(currentDragDeltaXY: Coordinate): boolean {
const dx = currentDragDeltaXY.x;

View File

@@ -274,7 +274,6 @@ export class VerticalFlyout extends Flyout {
* @param currentDragDeltaXY How far the pointer has moved from the position
* at mouse down, in pixel units.
* @returns True if the drag is toward the workspace.
* @internal
*/
override isDragTowardWorkspace(currentDragDeltaXY: Coordinate): boolean {
const dx = currentDragDeltaXY.x;