@lls/typings 24.16.0-befa7380 → 24.16.0-c27bf4e1

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-befa7380",
3
+ "version": "24.16.0-c27bf4e1",
4
4
  "description": "types custom du monorepo",
5
5
  "main": "index.js",
6
6
  "keywords": [],
@@ -1,5 +1,5 @@
1
+ import type { DocJson, LayoutItem } from '@lls/store'
1
2
  import type { ReactSetState } from '@typings/react'
2
-
3
3
  type ZoomPropsType = {
4
4
  zoomStep?: number
5
5
  zoom: number
@@ -55,6 +55,7 @@ export type PresentationPropsType = {
55
55
  setIsLaserCursor?: ReactSetState<boolean>
56
56
  boardId?: string | undefined
57
57
  showHomo?: boolean
58
+ docsUuidWithFullscreenEnabled?: { groups: Record<LayoutItem['id'] | 'root', NonNullable<DocJson['uuid']>[]> }
58
59
  setShowHomo?: (homo: boolean) => void
59
60
  openProjectorView?: () => void
60
61
  extendSplitView?: (view: ProjectorViewPosition) => void
@@ -68,6 +69,6 @@ export type PresentationPropsType = {
68
69
  initZoomModal?: (docUuid?: string) => void
69
70
  deleteZoomModal?: (docUuid?: string) => void
70
71
  getNbDocs?: (tabId?: string | undefined) => number
71
- getFirstDocWithFullscreen?: (tabId?: string) => string
72
+ getFirstDocWithFullscreen?: (tabId?: string) => string | undefined
72
73
  resetLeftDocZoomViewerStep?: () => void
73
74
  }