@lls/typings 24.16.0-bcf46133 → 24.16.0-befa7380

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-bcf46133",
3
+ "version": "24.16.0-befa7380",
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'
2
1
  import type { ReactSetState } from '@typings/react'
2
+
3
3
  type ZoomPropsType = {
4
4
  zoomStep?: number
5
5
  zoom: number
@@ -55,7 +55,6 @@ 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']>[]> }
59
58
  setShowHomo?: (homo: boolean) => void
60
59
  openProjectorView?: () => void
61
60
  extendSplitView?: (view: ProjectorViewPosition) => void
@@ -69,6 +68,6 @@ export type PresentationPropsType = {
69
68
  initZoomModal?: (docUuid?: string) => void
70
69
  deleteZoomModal?: (docUuid?: string) => void
71
70
  getNbDocs?: (tabId?: string | undefined) => number
72
- getFirstDocWithFullscreen?: (tabId?: string) => string | undefined
71
+ getFirstDocWithFullscreen?: (tabId?: string) => string
73
72
  resetLeftDocZoomViewerStep?: () => void
74
73
  }