From 4437fdb0896adfc947230eee0717f1c452af5065 Mon Sep 17 00:00:00 2001 From: Ramya Ramasamy Date: Fri, 22 Sep 2023 14:28:48 -0700 Subject: [PATCH] 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 --- core/flyout_horizontal.ts | 1 - core/flyout_vertical.ts | 1 - 2 files changed, 2 deletions(-) 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;