@lls/typings 24.20.0-dbc3e5a5 → 24.20.0-e6fe4f56

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.20.0-dbc3e5a5",
3
+ "version": "24.20.0-e6fe4f56",
4
4
  "description": "types custom du monorepo",
5
5
  "main": "index.js",
6
6
  "keywords": [],
@@ -1,4 +1,4 @@
1
- import type { DocJson, LayoutItem, LearningResource } from '@lls/store'
1
+ import type { DocJson, LayoutItem } from '@lls/store'
2
2
  import type { ReactSetState } from '@typings/react'
3
3
  type ZoomPropsType = {
4
4
  zoomStep?: number
@@ -51,17 +51,6 @@ export type NavigationPropsType = {
51
51
  rightPageLink?: { visible: boolean; href?: string; onClick: (e: React.MouseEvent) => void }
52
52
  }
53
53
 
54
- export type ArchipelParamsType = {
55
- isArchipelHidden: boolean
56
- setShouldKeepArchipel: (value: boolean) => void
57
- archipelHiddenStyle: {
58
- top: React.CSSProperties
59
- right: React.CSSProperties
60
- bottom: React.CSSProperties
61
- left: React.CSSProperties
62
- }
63
- }
64
-
65
54
  export type PresentationPropsType = {
66
55
  projectorView?: ProjectorView
67
56
  isPresentationMode?: boolean
@@ -79,8 +68,6 @@ export type PresentationPropsType = {
79
68
  docsUuidWithFullscreenEnabled?: { groups: Record<LayoutItem['id'] | 'root', NonNullable<DocJson['uuid']>[]> }
80
69
  isArchipel?: boolean // TODO a supprimer
81
70
  isInFullscreen?: boolean
82
- archipelParams?: ArchipelParamsType
83
- learningResources?: LearningResource[]
84
71
  setShowHomo?: (homo: boolean) => void
85
72
  openProjectorView?: () => void
86
73
  extendSplitView?: (view: ProjectorViewPosition) => void
package/page.d.ts DELETED
@@ -1,3 +0,0 @@
1
- import type { Page } from '@lls/store'
2
-
3
- export type GetRelatedPagesType = (element: Page | undefined) => { relatedPage?: Page; relatedPages: Page[] }