@lls/typings 24.31.0-e7957fe5 → 24.31.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lls/typings",
3
- "version": "24.31.0-e7957fe5",
3
+ "version": "24.31.0",
4
4
  "description": "types custom du monorepo",
5
5
  "main": "index.js",
6
6
  "imports": {
@@ -52,6 +52,17 @@ export type NavigationPropsType = {
52
52
  rightPageLink?: { visible: boolean; href?: string; onClick: (e: React.MouseEvent) => void }
53
53
  }
54
54
 
55
+ export type ArchipelParamsType = {
56
+ isArchipelHidden: boolean
57
+ setShouldKeepArchipel: (value: boolean) => void
58
+ archipelHiddenStyle: {
59
+ top: React.CSSProperties
60
+ right: React.CSSProperties
61
+ bottom: React.CSSProperties
62
+ left: React.CSSProperties
63
+ }
64
+ }
65
+
55
66
  export type ZoomListener = {
56
67
  zoom: () => void
57
68
  unzoom: () => void
@@ -77,6 +88,7 @@ export type PresentationPropsType = {
77
88
  showHomo?: boolean
78
89
  docsUuidWithFullscreenEnabled?: { groups: Record<LayoutItem['id'] | 'root', NonNullable<DocJson['uuid']>[]> }
79
90
  isInFullscreen?: boolean
91
+ archipelParams?: ArchipelParamsType
80
92
  learningResources?: LearningResource[]
81
93
  projectorSplitOffset?: number
82
94
  setProjectorSplitOffset?: (offset: number) => void