@lls/typings 24.16.0 → 24.17.0-03e47b6d

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.
@@ -0,0 +1,27 @@
1
+ import type { Page } from '@lls/store'
2
+
3
+ export type HistoryItem = {
4
+ template: Page
5
+ touchedId: string | null
6
+ }
7
+
8
+ export type LightEditorHistory = {
9
+ items: HistoryItem[]
10
+ index: number
11
+ }
12
+
13
+ export type LightTouchedIds = Record<string, number>
14
+
15
+ export type useViewerHistoryProps = {
16
+ template: Page
17
+ onChange?: (template: Page, context: string) => void
18
+ }
19
+
20
+ export type HistoryProps = {
21
+ lightTouchedIds: LightTouchedIds
22
+ addEntry: (template: Page, id: string) => void
23
+ hasPreviousEntry: boolean
24
+ hasNextEntry: boolean
25
+ onGoBack: () => void
26
+ onGoForward: () => void
27
+ }
@@ -25,6 +25,7 @@ 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
28
29
  }
29
30
  }
30
31
  var bun: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lls/typings",
3
- "version": "24.16.0",
3
+ "version": "24.17.0-03e47b6d",
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
@@ -13,10 +13,50 @@ export type PresentationViewType = {
13
13
  uuid?: string
14
14
  lastOpenUuid?: string
15
15
  }
16
+
17
+ type ProjectorViewPosition = -1 | 0 | 1
18
+
19
+ type ProjectorView = {
20
+ enterSlideView?: (
21
+ documentNode: HTMLElement | null,
22
+ docUuid: string,
23
+ transitionName: string,
24
+ splitViewPosition: number
25
+ ) => void
26
+ exitSlideView?: (docUuid: string, transition: string) => void
27
+ fullscreenViews?: Record<string, Boolean>
28
+ docStyleDatas?: Record<
29
+ string,
30
+ {
31
+ position: string
32
+ left: number
33
+ top: number
34
+ right: number
35
+ bottom: number
36
+ docHeight: number
37
+ transition: string
38
+ }
39
+ >
40
+ splitPositions?: Record<string, number>
41
+ prevPresentationView?: PresentationViewType
42
+ prevPreSlideDocUuid?: string
43
+ }
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
+
16
54
  export type PresentationPropsType = {
55
+ projectorView?: ProjectorView
17
56
  isPresentationMode?: boolean
18
57
  isPaginationEnabled?: boolean
19
58
  presentationView?: PresentationViewType
59
+ navigationProps?: NavigationPropsType
20
60
  preSlideDocUuid?: string
21
61
  viewerZoomProps?: ZoomPropsType
22
62
  leftDocZoomProps?: ZoomPropsType
@@ -25,19 +65,25 @@ export type PresentationPropsType = {
25
65
  setIsLaserCursor?: ReactSetState<boolean>
26
66
  boardId?: string | undefined
27
67
  showHomo?: boolean
68
+ docsUuidWithFullscreenEnabled?: { groups: Record<LayoutItem['id'] | 'root', NonNullable<DocJson['uuid']>[]> }
69
+ isArchipel?: boolean // TODO a supprimer
70
+ isInFullscreen?: boolean
28
71
  setShowHomo?: (homo: boolean) => void
29
72
  openProjectorView?: () => void
30
- extendSplitView?: (view: -1 | 0 | 1) => void
31
- closeFullscreenCard?: (docUuid: string) => void
73
+ extendSplitView?: (view: ProjectorViewPosition) => void
74
+ closeFullscreenCard?: (docUuid?: string) => void
75
+ goBackToPage?: () => void
32
76
  closeProjectorView?: () => void
33
77
  closeSplitView?: () => void
34
- openFullscreenCard?: (docUuid: string, forceSplit?: boolean) => void
35
- slideToPreviousDocument?: (currentDocUuid: string, tabId: string) => void
78
+ openFullscreenCard?: (docUuid: string | undefined, forceSplit?: boolean) => void
79
+ slideToPreviousDocument?: (currentDocUuid: string, tabId?: string | undefined) => void
36
80
  getChildPosition?: (docUuid?: string, tabId?: string | undefined) => number
37
- slideToNextDocument?: (currentDocUuid: string, tabId: string) => void
81
+ slideToNextDocument?: (currentDocUuid: string, tabId?: string | undefined) => void
38
82
  initZoomModal?: (docUuid?: string) => void
39
83
  deleteZoomModal?: (docUuid?: string) => void
40
- getNbDocs?: (tabId: string) => number
41
- getFirstDocWithFullscreen?: (tabId?: string) => string
84
+ getNbDocs?: (tabId?: string | undefined) => number
85
+ getFirstDocWithFullscreen?: (tabId?: string) => string | undefined
42
86
  resetLeftDocZoomViewerStep?: () => void
87
+ closeBrowserFullscreen?: () => void
88
+ openBrowserFullscreen?: () => void
43
89
  }