@lls/typings 24.17.0-e2852c20 → 24.17.0-ea4d3753
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/overrides/global.d.ts +1 -0
- package/package.json +1 -1
- package/presentationProps.d.ts +15 -4
package/overrides/global.d.ts
CHANGED
package/package.json
CHANGED
package/presentationProps.d.ts
CHANGED
|
@@ -42,11 +42,21 @@ type ProjectorView = {
|
|
|
42
42
|
prevPreSlideDocUuid?: string
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
+
export type NavigationPropsType = {
|
|
46
|
+
showRightSinglePage?: boolean
|
|
47
|
+
forceHomoSinglePage?: boolean
|
|
48
|
+
setForceHomoSinglePage?: (force: boolean) => void
|
|
49
|
+
showHomoSinglePage?: boolean
|
|
50
|
+
leftPageLink?: { visible: boolean; href?: string; onClick: (e: React.MouseEvent) => void }
|
|
51
|
+
rightPageLink?: { visible: boolean; href?: string; onClick: (e: React.MouseEvent) => void }
|
|
52
|
+
}
|
|
53
|
+
|
|
45
54
|
export type PresentationPropsType = {
|
|
46
55
|
projectorView?: ProjectorView
|
|
47
56
|
isPresentationMode?: boolean
|
|
48
57
|
isPaginationEnabled?: boolean
|
|
49
58
|
presentationView?: PresentationViewType
|
|
59
|
+
navigationProps?: NavigationPropsType
|
|
50
60
|
preSlideDocUuid?: string
|
|
51
61
|
viewerZoomProps?: ZoomPropsType
|
|
52
62
|
leftDocZoomProps?: ZoomPropsType
|
|
@@ -55,16 +65,16 @@ export type PresentationPropsType = {
|
|
|
55
65
|
setIsLaserCursor?: ReactSetState<boolean>
|
|
56
66
|
boardId?: string | undefined
|
|
57
67
|
showHomo?: boolean
|
|
58
|
-
forceHomoSinglePage?: boolean
|
|
59
|
-
showHomoSinglePage?: boolean
|
|
60
68
|
docsUuidWithFullscreenEnabled?: { groups: Record<LayoutItem['id'] | 'root', NonNullable<DocJson['uuid']>[]> }
|
|
69
|
+
isArchipel?: boolean // TODO a supprimer
|
|
70
|
+
isInFullscreen?: boolean
|
|
61
71
|
setShowHomo?: (homo: boolean) => void
|
|
62
72
|
openProjectorView?: () => void
|
|
63
73
|
extendSplitView?: (view: ProjectorViewPosition) => void
|
|
64
74
|
closeFullscreenCard?: (docUuid?: string) => void
|
|
65
75
|
closeProjectorView?: () => void
|
|
66
76
|
closeSplitView?: () => void
|
|
67
|
-
openFullscreenCard?: (docUuid: string, forceSplit?: boolean) => void
|
|
77
|
+
openFullscreenCard?: (docUuid: string | undefined, forceSplit?: boolean) => void
|
|
68
78
|
slideToPreviousDocument?: (currentDocUuid: string, tabId?: string | undefined) => void
|
|
69
79
|
getChildPosition?: (docUuid?: string, tabId?: string | undefined) => number
|
|
70
80
|
slideToNextDocument?: (currentDocUuid: string, tabId?: string | undefined) => void
|
|
@@ -73,5 +83,6 @@ export type PresentationPropsType = {
|
|
|
73
83
|
getNbDocs?: (tabId?: string | undefined) => number
|
|
74
84
|
getFirstDocWithFullscreen?: (tabId?: string) => string | undefined
|
|
75
85
|
resetLeftDocZoomViewerStep?: () => void
|
|
76
|
-
|
|
86
|
+
closeBrowserFullscreen?: () => void
|
|
87
|
+
openBrowserFullscreen?: () => void
|
|
77
88
|
}
|