@fileverse-dev/ddoc 3.2.6-sg-3 → 3.2.6-sg-5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,5 @@
1
1
  export declare const FLOATING_COMMENT_CARD_GAP = 8;
2
+ export declare const FLOATING_COMMENT_BOTTOM_SPACE = 48;
2
3
  export declare const enum FloatingLayoutInvalidationFlag {
3
4
  None = 0,
4
5
  Anchor = 1,
@@ -4,5 +4,5 @@ interface CommentReplyInputProps {
4
4
  replyCount: number;
5
5
  isCollaborationEnabled: boolean;
6
6
  }
7
- export declare const CommentReplyInput: ({ commentId, replyCount, isCollaborationEnabled, }: CommentReplyInputProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const CommentReplyInput: ({ commentId, replyCount, isCollaborationEnabled, commentUsername, }: CommentReplyInputProps) => import("react/jsx-runtime").JSX.Element;
8
8
  export {};
@@ -1 +1 @@
1
- export declare function useIsSelectedContentDeleted(commentId: string | undefined, selectedContent: string | undefined, commentTabId: string | undefined): boolean;
1
+ export declare function useIsSelectedContentDeleted(commentId: string | undefined, selectedContent: string | undefined, commentTabId: string | undefined, isSuggestion?: boolean): boolean;
@@ -47,6 +47,7 @@ export declare function resolveCommentAnchorRangeInState(anchor: Pick<CommentAnc
47
47
  */
48
48
  export declare function resolveCommentAnchorPointInState(anchor: Pick<CommentAnchor, 'anchorFrom'>, state: EditorState): number | null;
49
49
  export declare function resolveCommentAnchorRangeForAnalysis(anchor: Pick<CommentAnchor, 'id' | 'anchorFrom' | 'anchorTo'>, state: EditorState): CommentAnchorRange | null;
50
+ export declare function resolveCommentAnchorPointForAnalysis(anchor: Pick<CommentAnchor, 'id' | 'anchorFrom'>, state: EditorState): number | null;
50
51
  /**
51
52
  * Analyze transaction changes to classify each active anchor's mutation status.
52
53
  *