@lls/typings 24.31.0-e896bbca → 24.32.0-32e34fe7

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.
@@ -20,6 +20,8 @@ interface Window {
20
20
  }
21
21
  playwrightInplaceNavigate: (value: string) => void
22
22
  playwrightStoryId: string
23
+ fbq?: (...args: any[]) => void
24
+ _fbq?: (...args: any[]) => void
23
25
  clarity?: ((...params: string[]) => any) & { q?: unknown[] }
24
26
  $crisp: {
25
27
  push: (args: string[]) => void
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lls/typings",
3
- "version": "24.31.0-e896bbca",
3
+ "version": "24.32.0-32e34fe7",
4
4
  "description": "types custom du monorepo",
5
5
  "main": "index.js",
6
6
  "imports": {
@@ -13,7 +13,7 @@
13
13
  "@types/domhandler": "2.4.5",
14
14
  "@types/lodash": "4.17.20",
15
15
  "@types/react": "18.3.12",
16
- "@yorab/react-paint": "0.11.4",
16
+ "@yorab/react-paint": "0.14.0",
17
17
  "cheerio": "1.1.2",
18
18
  "typescript": "5.8.3"
19
19
  },
@@ -11,6 +11,8 @@ export type PresentationViewType = {
11
11
  view?: 'page' | 'slide' | 'split' | undefined
12
12
  uuids?: (string | undefined)[]
13
13
  uuid?: string
14
+ zoneId?: string
15
+ zoneId2?: string
14
16
  lastOpenUuid?: string
15
17
  }
16
18
 
@@ -87,7 +89,11 @@ export type PresentationPropsType = {
87
89
  goBackToPage?: () => void
88
90
  closeProjectorView?: () => void
89
91
  closeSplitView?: () => void
90
- openFullscreenCard?: (docUuid: string | undefined, forceSplit?: boolean) => void
92
+ openFullscreenCard?: ({
93
+ docUuid,
94
+ zoneId,
95
+ forceSplit
96
+ }: { docUuid: string | undefined; zoneId?: string; forceSplit?: boolean }) => void
91
97
  slideToPreviousDocument?: (currentDocUuid: string, tabId?: string | undefined) => void
92
98
  getChildPosition?: (docUuid?: string, tabId?: string | undefined) => number
93
99
  slideToNextDocument?: (currentDocUuid: string, tabId?: string | undefined) => void