@lls/typings 24.17.0-82ee56db → 24.17.0-899bf761

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-82ee56db",
3
+ "version": "24.17.0-899bf761",
4
4
  "description": "types custom du monorepo",
5
5
  "main": "index.js",
6
6
  "keywords": [],
@@ -67,13 +67,15 @@ export type PresentationPropsType = {
67
67
  showHomo?: boolean
68
68
  docsUuidWithFullscreenEnabled?: { groups: Record<LayoutItem['id'] | 'root', NonNullable<DocJson['uuid']>[]> }
69
69
  isArchipel?: boolean // TODO a supprimer
70
+ isInFullscreen?: boolean
70
71
  setShowHomo?: (homo: boolean) => void
71
72
  openProjectorView?: () => void
72
73
  extendSplitView?: (view: ProjectorViewPosition) => void
73
74
  closeFullscreenCard?: (docUuid?: string) => void
75
+ goBackToPage?: () => void
74
76
  closeProjectorView?: () => void
75
77
  closeSplitView?: () => void
76
- openFullscreenCard?: (docUuid: string, forceSplit?: boolean) => void
78
+ openFullscreenCard?: (docUuid: string | undefined, forceSplit?: boolean) => void
77
79
  slideToPreviousDocument?: (currentDocUuid: string, tabId?: string | undefined) => void
78
80
  getChildPosition?: (docUuid?: string, tabId?: string | undefined) => number
79
81
  slideToNextDocument?: (currentDocUuid: string, tabId?: string | undefined) => void
@@ -82,4 +84,6 @@ export type PresentationPropsType = {
82
84
  getNbDocs?: (tabId?: string | undefined) => number
83
85
  getFirstDocWithFullscreen?: (tabId?: string) => string | undefined
84
86
  resetLeftDocZoomViewerStep?: () => void
87
+ closeBrowserFullscreen?: () => void
88
+ openBrowserFullscreen?: () => void
85
89
  }