Skip to content

Commit

Permalink
fix api-check
Browse files Browse the repository at this point in the history
  • Loading branch information
m00n620 committed Sep 12, 2024
1 parent 260f2fc commit 38aac18
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions common/reviews/api/core.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -879,6 +879,8 @@ export enum EVENTS {
// (undocumented)
STACK_NEW_IMAGE = "CORNERSTONE_STACK_NEW_IMAGE",
// (undocumented)
STACK_SCROLL_OUT_OF_BOUNDS = "STACK_SCROLL_OUT_OF_BOUNDS",
// (undocumented)
STACK_VIEWPORT_NEW_STACK = "CORNERSTONE_STACK_VIEWPORT_NEW_STACK",
// (undocumented)
STACK_VIEWPORT_SCROLL = "CORNERSTONE_STACK_VIEWPORT_SCROLL",
Expand Down Expand Up @@ -956,6 +958,8 @@ declare namespace EventTypes {
StackViewportNewStackEventDetail,
StackViewportScrollEvent,
StackViewportScrollEventDetail,
StackScrollOutOfBoundsEvent,
StackScrollOutOfBoundsEventDetail,
CameraResetEvent,
CameraResetEventDetail
}
Expand Down Expand Up @@ -3091,6 +3095,15 @@ type StackNewImageEventDetail = {
renderingEngineId: string;
};

// @public (undocumented)
type StackScrollOutOfBoundsEvent = CustomEvent_2<StackScrollOutOfBoundsEventDetail>;

// @public (undocumented)
type StackScrollOutOfBoundsEventDetail = {
imageIdIndex: number;
direction: number;
};

// @public (undocumented)
export class StackViewport extends Viewport implements StackViewport, IImagesLoader {
constructor(props: ViewportInput);
Expand Down

0 comments on commit 38aac18

Please sign in to comment.