@lls/typings 24.17.0-9acd4e81 → 24.17.0-a367d582

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lls/typings",
3
- "version": "24.17.0-9acd4e81",
3
+ "version": "24.17.0-a367d582",
4
4
  "description": "types custom du monorepo",
5
5
  "main": "index.js",
6
6
  "keywords": [],
@@ -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,9 +65,8 @@ 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
61
70
  setShowHomo?: (homo: boolean) => void
62
71
  openProjectorView?: () => void
63
72
  extendSplitView?: (view: ProjectorViewPosition) => void
@@ -73,5 +82,4 @@ export type PresentationPropsType = {
73
82
  getNbDocs?: (tabId?: string | undefined) => number
74
83
  getFirstDocWithFullscreen?: (tabId?: string) => string | undefined
75
84
  resetLeftDocZoomViewerStep?: () => void
76
- setForceHomoSinglePage?: (force: boolean) => void
77
85
  }