Skip to content

Commit

Permalink
feat: made the method isDragTowardWorkspace non private (#7529)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
ramyaram2092 and Ramya Non-IU authored Sep 22, 2023
1 parent a488973 commit 4437fdb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion core/flyout_horizontal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion core/flyout_vertical.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4437fdb

Please sign in to comment.