@lls/typings 24.17.0-ff6df74e → 24.17.0

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-ff6df74e",
3
+ "version": "24.17.0",
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,17 +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
- goBackToPage?: () => void
76
65
  closeProjectorView?: () => void
77
66
  closeSplitView?: () => void
78
- openFullscreenCard?: (docUuid: string | undefined, forceSplit?: boolean) => void
67
+ openFullscreenCard?: (docUuid: string, forceSplit?: boolean) => void
79
68
  slideToPreviousDocument?: (currentDocUuid: string, tabId?: string | undefined) => void
80
69
  getChildPosition?: (docUuid?: string, tabId?: string | undefined) => number
81
70
  slideToNextDocument?: (currentDocUuid: string, tabId?: string | undefined) => void
@@ -84,6 +73,5 @@ export type PresentationPropsType = {
84
73
  getNbDocs?: (tabId?: string | undefined) => number
85
74
  getFirstDocWithFullscreen?: (tabId?: string) => string | undefined
86
75
  resetLeftDocZoomViewerStep?: () => void
87
- closeBrowserFullscreen?: () => void
88
- openBrowserFullscreen?: () => void
76
+ setForceHomoSinglePage?: (force: boolean) => void
89
77
  }