tiptop-editor 2.3.3 → 2.3.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.
- package/dist/components/comment/CommentSelectionMenu.d.ts +2 -1
- package/dist/tiptop-editor.es.js +2222 -2203
- package/dist/tiptop-editor.umd.js +14 -14
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -4,7 +4,8 @@ import { Editor } from '@tiptap/react';
|
|
|
4
4
|
* view / review mode (`editable: false`). Rendered automatically by
|
|
5
5
|
* `TiptopEditor` when `showCommentMenu: true` is set.
|
|
6
6
|
*/
|
|
7
|
-
declare const CommentSelectionMenu: ({ editor }: {
|
|
7
|
+
declare const CommentSelectionMenu: ({ editor, label }: {
|
|
8
8
|
editor: Editor;
|
|
9
|
+
label?: string;
|
|
9
10
|
}) => import("react/jsx-runtime").JSX.Element | null;
|
|
10
11
|
export default CommentSelectionMenu;
|