@salina-app/media-editor 0.0.38 → 0.0.39
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/dist/index.js +1 -0
- package/dist/main.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -78785,6 +78785,7 @@ export {
|
|
|
78785
78785
|
dS as useTimelineStore,
|
|
78786
78786
|
Dv as useTrimmedClipsStore,
|
|
78787
78787
|
uS as useTrimmedService,
|
|
78788
|
+
b8 as useTrimmerStampStore,
|
|
78788
78789
|
Ib as useVideoMetadataStore,
|
|
78789
78790
|
zo as useVideoPlayerStore,
|
|
78790
78791
|
R3 as videoMetadataInitialState
|
package/dist/main.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { useVideoPlayerStore } from './zustand/videoPlayerStore';
|
|
|
6
6
|
import { useTrimmedClipsStore } from './zustand/trimmedClipsStore';
|
|
7
7
|
import { useAlertDialogStore } from './zustand/alertDialogStore';
|
|
8
8
|
import { useVideoMetadataStore, videoMetadataInitialState } from './zustand/videoMetadataStore';
|
|
9
|
+
import { useTrimmerStampStore } from './zustand/trimmerStampStore';
|
|
9
10
|
import { Toaster } from './components/ui/toaster';
|
|
10
11
|
import { default as AlertDialog } from './components/customs/Dialog/AlertDialog';
|
|
11
12
|
import { default as Button, buttonVariants } from './components/ui/button';
|
|
@@ -16,4 +17,4 @@ import { default as CCLine } from './components/customs/ClosedCaption/CCLine';
|
|
|
16
17
|
import { default as TranscriptSingle } from './components/customs/Transcription/TranscriptSingle';
|
|
17
18
|
import { default as TranscriptMultiple } from './components/customs/Transcription/TranscriptMultiple';
|
|
18
19
|
import { default as HighlightSelection } from './components/customs/Highlight/HighlightSelection';
|
|
19
|
-
export { useKeyboardShortcuts, useTrimmedService, useFocusTrimmedClipStore, useTimelineStore, useVideoPlayerStore, useTrimmedClipsStore, useAlertDialogStore, useVideoMetadataStore, videoMetadataInitialState, Toaster, AlertDialog, Button, buttonVariants, Player, Timeline, DirectoryList, CCLine, TranscriptSingle, TranscriptMultiple, HighlightSelection, };
|
|
20
|
+
export { useKeyboardShortcuts, useTrimmedService, useFocusTrimmedClipStore, useTimelineStore, useVideoPlayerStore, useTrimmedClipsStore, useAlertDialogStore, useVideoMetadataStore, videoMetadataInitialState, useTrimmerStampStore, Toaster, AlertDialog, Button, buttonVariants, Player, Timeline, DirectoryList, CCLine, TranscriptSingle, TranscriptMultiple, HighlightSelection, };
|