@fileverse-dev/ddoc 2.1.0-patch-2 → 2.1.0-patch-3
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,
|
4
|
+
declare const TiptapToolBar: ({ editor, onError, isNavbarVisible, setIsNavbarVisible, secureImageUploadUrl, }: {
|
5
5
|
editor: Editor;
|
6
6
|
onError?: (errorString: string) => void;
|
7
7
|
zoomLevel: string;
|
@@ -6,6 +6,9 @@ interface PresentationModeProps {
|
|
6
6
|
isFullscreen: boolean;
|
7
7
|
setIsFullscreen: (isFullscreen: boolean) => void;
|
8
8
|
onError?: (error: string) => void;
|
9
|
+
setIsCommentSectionOpen: React.Dispatch<React.SetStateAction<boolean>> | undefined;
|
10
|
+
sharedSlidesLink?: string;
|
11
|
+
isPreviewMode: boolean;
|
9
12
|
}
|
10
|
-
export declare const PresentationMode: ({ editor, onClose, isFullscreen, setIsFullscreen, onError, }: PresentationModeProps) => import("react/jsx-runtime").JSX.Element | null;
|
13
|
+
export declare const PresentationMode: ({ editor, onClose, isFullscreen, setIsFullscreen, onError, setIsCommentSectionOpen, sharedSlidesLink, isPreviewMode, }: PresentationModeProps) => import("react/jsx-runtime").JSX.Element | null;
|
11
14
|
export {};
|
package/dist/package/types.d.ts
CHANGED