@lls/typings 24.16.0-eac9e279 → 24.16.0-ed996f39

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/historyProps.d.ts +0 -27
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lls/typings",
3
- "version": "24.16.0-eac9e279",
3
+ "version": "24.16.0-ed996f39",
4
4
  "description": "types custom du monorepo",
5
5
  "main": "index.js",
6
6
  "keywords": [],
package/historyProps.d.ts DELETED
@@ -1,27 +0,0 @@
1
- import type { Page } from '@lls/store'
2
-
3
- export type HistoryItem = {
4
- template: Page
5
- touchedId: string | null
6
- }
7
-
8
- export type LightEditorHistory = {
9
- items: HistoryItem[]
10
- index: number
11
- }
12
-
13
- export type LightTouchedIds = Record<string, number>
14
-
15
- export type useViewerHistoryProps = {
16
- template: Page
17
- onChange?: (template: Page, context: string) => void
18
- }
19
-
20
- export type HistoryProps = {
21
- lightTouchedIds: LightTouchedIds
22
- addEntry: (template: Page, id: string) => void
23
- hasPreviousEntry: boolean
24
- hasNextEntry: boolean
25
- onGoBack: () => void
26
- onGoForward: () => void
27
- }