@lls/typings 24.11.0 → 24.12.0-07282d1b

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.11.0",
3
+ "version": "24.12.0-07282d1b",
4
4
  "description": "types custom du monorepo",
5
5
  "main": "index.js",
6
6
  "keywords": [],
@@ -8,11 +8,11 @@
8
8
  "license": "ISC",
9
9
  "devDependencies": {
10
10
  "@types/domhandler": "2.4.5",
11
- "@types/lodash": "4.17.13",
11
+ "@types/lodash": "4.17.14",
12
12
  "@types/react": "18.3.12",
13
13
  "@yorab/react-paint": "0.11.4",
14
14
  "cheerio": "1.0.0",
15
- "typescript": "5.6.3"
15
+ "typescript": "5.7.3"
16
16
  },
17
17
  "peerDependencies": {
18
18
  "@biomejs/biome": "*"
@@ -3,7 +3,7 @@ import type { ReactSetState } from '@typings/react'
3
3
  type ZoomPropsType = {
4
4
  zoomStep?: number
5
5
  zoom: number
6
- resetZoom?: (resetStep: number) => void
6
+ resetZoom?: (resetStep?: number | undefined) => void
7
7
  increaseZoom?: () => void
8
8
  decreaseZoom?: () => void
9
9
  }
@@ -23,6 +23,9 @@ export type PresentationPropsType = {
23
23
  rightDocZoomProps?: ZoomPropsType
24
24
  isLaserCursor?: boolean
25
25
  setIsLaserCursor?: ReactSetState<boolean>
26
+ boardId?: string | undefined
27
+ showHomo?: boolean
28
+ setShowHomo?: (homo: boolean) => void
26
29
  openProjectorView?: () => void
27
30
  extendSplitView?: (view: -1 | 0 | 1) => void
28
31
  closeFullscreenCard?: (docUuid: string) => void