@lls/typings 24.17.0-fe109d62 → 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-fe109d62",
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,8 +55,9 @@ 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
61
  setShowHomo?: (homo: boolean) => void
71
62
  openProjectorView?: () => void
72
63
  extendSplitView?: (view: ProjectorViewPosition) => void
@@ -82,4 +73,5 @@ export type PresentationPropsType = {
82
73
  getNbDocs?: (tabId?: string | undefined) => number
83
74
  getFirstDocWithFullscreen?: (tabId?: string) => string | undefined
84
75
  resetLeftDocZoomViewerStep?: () => void
76
+ setForceHomoSinglePage?: (force: boolean) => void
85
77
  }