@fileverse-dev/ddoc 2.1.0-patch-3 → 2.1.0-patch-4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  import { Editor } from '@tiptap/react';
3
3
 
4
- declare const TiptapToolBar: ({ editor, onError, isNavbarVisible, setIsNavbarVisible, secureImageUploadUrl, }: {
4
+ declare const TiptapToolBar: ({ editor, onError, zoomLevel, setZoomLevel, isNavbarVisible, setIsNavbarVisible, secureImageUploadUrl, }: {
5
5
  editor: Editor;
6
6
  onError?: (errorString: string) => void;
7
7
  zoomLevel: string;
@@ -26,6 +26,7 @@ export interface DdocProps {
26
26
  setZoomLevel: React.Dispatch<SetStateAction<string>>;
27
27
  isNavbarVisible: boolean;
28
28
  setIsNavbarVisible: React.Dispatch<SetStateAction<boolean>>;
29
+ customHeight?: string;
29
30
  isCommentSectionOpen?: boolean;
30
31
  collaborationId?: string;
31
32
  isPreviewMode: boolean;