From 3592551ac34487378321f96ba597a6072e863c72 Mon Sep 17 00:00:00 2001 From: Alireza Date: Fri, 4 Oct 2024 15:34:00 -0400 Subject: [PATCH] wip --- common/reviews/api/tools.api.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/common/reviews/api/tools.api.md b/common/reviews/api/tools.api.md index fa42b5ccc6..69160afb49 100644 --- a/common/reviews/api/tools.api.md +++ b/common/reviews/api/tools.api.md @@ -1727,7 +1727,7 @@ const createStackImageSynchronizer: typeof createImageSliceSynchronizer; function createSynchronizer(synchronizerId: string, eventName: string, eventHandler: ISynchronizerEventHandler, options?: SynchronizerOptions): Synchronizer; // @public (undocumented) -function createToolGroup(toolGroupId: string): ToolGroup; +function createToolGroup(toolGroupId: string): ToolGroup | undefined; // @public (undocumented) function createVOISynchronizer(synchronizerName: string, options: VOISynchronizerOptions): Synchronizer; @@ -5234,10 +5234,6 @@ export class StackScrollTool extends BaseTool { // (undocumented) mouseWheelCallback(evt: EventTypes_2.MouseWheelEventType): void; // (undocumented) - _rotate(evt: any): void; - // (undocumented) - _rotateDrag(evt: EventTypes_2.InteractionEventType): void; - // (undocumented) _scroll(evt: EventTypes_2.MouseWheelEventType): void; // (undocumented) _scrollDrag(evt: EventTypes_2.InteractionEventType): void; @@ -6268,6 +6264,17 @@ declare namespace voi { } } +// @public (undocumented) +export class VolumeRotateMouseWheelTool extends BaseTool { + constructor(toolProps?: PublicToolProps, defaultToolProps?: ToolProps); + // (undocumented) + _configuration: any; + // (undocumented) + mouseWheelCallback(evt: MouseWheelEventType): void; + // (undocumented) + static toolName: any; +} + // @public (undocumented) type VolumeScrollOutOfBoundsEventDetail = { volumeId: string;