diff --git a/core/flyout_horizontal.ts b/core/flyout_horizontal.ts index 9d827f4ea..372b40c84 100644 --- a/core/flyout_horizontal.ts +++ b/core/flyout_horizontal.ts @@ -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; diff --git a/core/flyout_vertical.ts b/core/flyout_vertical.ts index b3e656d0c..a4bfec158 100644 --- a/core/flyout_vertical.ts +++ b/core/flyout_vertical.ts @@ -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;