@lls/typings 24.30.0 → 24.31.0-024d04c1

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.30.0",
3
+ "version": "24.31.0-024d04c1",
4
4
  "description": "types custom du monorepo",
5
5
  "main": "index.js",
6
6
  "imports": {
@@ -11,10 +11,10 @@
11
11
  "license": "ISC",
12
12
  "devDependencies": {
13
13
  "@types/domhandler": "2.4.5",
14
- "@types/lodash": "4.17.17",
14
+ "@types/lodash": "4.17.20",
15
15
  "@types/react": "18.3.12",
16
16
  "@yorab/react-paint": "0.11.4",
17
- "cheerio": "1.0.0",
17
+ "cheerio": "1.1.2",
18
18
  "typescript": "5.8.3"
19
19
  },
20
20
  "peerDependencies": {
@@ -52,17 +52,6 @@ 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
-
66
55
  export type ZoomListener = {
67
56
  zoom: () => void
68
57
  unzoom: () => void
@@ -88,7 +77,6 @@ export type PresentationPropsType = {
88
77
  showHomo?: boolean
89
78
  docsUuidWithFullscreenEnabled?: { groups: Record<LayoutItem['id'] | 'root', NonNullable<DocJson['uuid']>[]> }
90
79
  isInFullscreen?: boolean
91
- archipelParams?: ArchipelParamsType
92
80
  learningResources?: LearningResource[]
93
81
  projectorSplitOffset?: number
94
82
  setProjectorSplitOffset?: (offset: number) => void