@lls/typings 24.20.0-e7afd1cb → 24.20.0-ee15b6a0

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-e7afd1cb",
3
+ "version": "24.20.0-ee15b6a0",
4
4
  "description": "types custom du monorepo",
5
5
  "main": "index.js",
6
6
  "keywords": [],
@@ -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,7 +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
71
  setShowHomo?: (homo: boolean) => void
84
72
  openProjectorView?: () => void
85
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[] }