@lls/typings 24.16.0-7d4e74bf → 24.16.0-7efd8c48

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.16.0-7d4e74bf",
3
+ "version": "24.16.0-7efd8c48",
4
4
  "description": "types custom du monorepo",
5
5
  "main": "index.js",
6
6
  "keywords": [],
@@ -55,6 +55,8 @@ export type PresentationPropsType = {
55
55
  setIsLaserCursor?: ReactSetState<boolean>
56
56
  boardId?: string | undefined
57
57
  showHomo?: boolean
58
+ forceHomoSinglePage?: boolean
59
+ showHomoSinglePage?: boolean
58
60
  docsUuidWithFullscreenEnabled?: { groups: Record<LayoutItem['id'] | 'root', NonNullable<DocJson['uuid']>[]> }
59
61
  setShowHomo?: (homo: boolean) => void
60
62
  openProjectorView?: () => void
@@ -71,4 +73,5 @@ export type PresentationPropsType = {
71
73
  getNbDocs?: (tabId?: string | undefined) => number
72
74
  getFirstDocWithFullscreen?: (tabId?: string) => string | undefined
73
75
  resetLeftDocZoomViewerStep?: () => void
76
+ setForceHomoSinglePage?: (force: boolean) => void
74
77
  }