@fileverse-dev/dsheet 2.1.3-package-cleanup-5 → 2.1.3-package-cleanup-6

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.
@@ -114,6 +114,7 @@ export interface CommentCellUIProps {
114
114
  sheetEditorRef?: React.RefObject<SheetEditorRef>;
115
115
  currentUserName?: string;
116
116
  removeCommentFromCell: (row: number, col: number) => void;
117
+ closePopup?: () => void;
117
118
  dragHandler: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
118
119
  isHover?: boolean;
119
120
  disabled?: boolean;
@@ -14,6 +14,7 @@ type SheetEditorRefLike = {
14
14
  * Used on top-level comment delete and on top-level comment resolve.
15
15
  */
16
16
  export declare const hideCellCommentMarker: (sheetEditorRef: SheetEditorRefLike, row: number, col: number) => void;
17
+ export declare const closeCellCommentPopup: (sheetEditorRef: SheetEditorRefLike) => void;
17
18
  /**
18
19
  * Restores the comment indicator on a cell.
19
20
  *