@lls/typings 24.17.0-ea4d3753 → 24.17.0-ed3ecb5e

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.
@@ -25,7 +25,6 @@ declare global {
25
25
  interface ProcessEnv {
26
26
  NODE_ENV: 'local' | 'development' | 'production'
27
27
  CONF_ENV: 'local' | 'development' | 'test' | 'preprod' | 'production' | 'prod'
28
- SSR_INIT_LOCATION?: string
29
28
  }
30
29
  }
31
30
  var bun: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lls/typings",
3
- "version": "24.17.0-ea4d3753",
3
+ "version": "24.17.0-ed3ecb5e",
4
4
  "description": "types custom du monorepo",
5
5
  "main": "index.js",
6
6
  "keywords": [],
@@ -42,21 +42,11 @@ 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
-
54
45
  export type PresentationPropsType = {
55
46
  projectorView?: ProjectorView
56
47
  isPresentationMode?: boolean
57
48
  isPaginationEnabled?: boolean
58
49
  presentationView?: PresentationViewType
59
- navigationProps?: NavigationPropsType
60
50
  preSlideDocUuid?: string
61
51
  viewerZoomProps?: ZoomPropsType
62
52
  leftDocZoomProps?: ZoomPropsType
@@ -65,16 +55,16 @@ export type PresentationPropsType = {
65
55
  setIsLaserCursor?: ReactSetState<boolean>
66
56
  boardId?: string | undefined
67
57
  showHomo?: boolean
58
+ forceHomoSinglePage?: boolean
59
+ showHomoSinglePage?: boolean
68
60
  docsUuidWithFullscreenEnabled?: { groups: Record<LayoutItem['id'] | 'root', NonNullable<DocJson['uuid']>[]> }
69
- isArchipel?: boolean // TODO a supprimer
70
- isInFullscreen?: boolean
71
61
  setShowHomo?: (homo: boolean) => void
72
62
  openProjectorView?: () => void
73
63
  extendSplitView?: (view: ProjectorViewPosition) => void
74
64
  closeFullscreenCard?: (docUuid?: string) => void
75
65
  closeProjectorView?: () => void
76
66
  closeSplitView?: () => void
77
- openFullscreenCard?: (docUuid: string | undefined, forceSplit?: boolean) => void
67
+ openFullscreenCard?: (docUuid: string, forceSplit?: boolean) => void
78
68
  slideToPreviousDocument?: (currentDocUuid: string, tabId?: string | undefined) => void
79
69
  getChildPosition?: (docUuid?: string, tabId?: string | undefined) => number
80
70
  slideToNextDocument?: (currentDocUuid: string, tabId?: string | undefined) => void
@@ -83,6 +73,5 @@ export type PresentationPropsType = {
83
73
  getNbDocs?: (tabId?: string | undefined) => number
84
74
  getFirstDocWithFullscreen?: (tabId?: string) => string | undefined
85
75
  resetLeftDocZoomViewerStep?: () => void
86
- closeBrowserFullscreen?: () => void
87
- openBrowserFullscreen?: () => void
76
+ setForceHomoSinglePage?: (force: boolean) => void
88
77
  }