@salina-app/media-editor 0.0.16 → 0.0.18
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 +4 -0
- package/dist/main.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -74456,8 +74456,12 @@ export {
|
|
|
74456
74456
|
Hde as Timeline,
|
|
74457
74457
|
$de as Toaster,
|
|
74458
74458
|
Jq as buttonVariants,
|
|
74459
|
+
_k as useAlertDialogStore,
|
|
74459
74460
|
gU as useFocusTrimmedClipStore,
|
|
74460
74461
|
qde as useKeyboardShortcuts,
|
|
74461
74462
|
zx as useTimelineStore,
|
|
74463
|
+
gb as useTrimmedClipsStore,
|
|
74464
|
+
Ck as useTrimmedService,
|
|
74465
|
+
yU as useVideoMetadataStore,
|
|
74462
74466
|
f0 as useVideoPlayerStore
|
|
74463
74467
|
};
|
package/dist/main.d.ts
CHANGED
|
@@ -6,4 +6,8 @@ import { useFocusTrimmedClipStore } from './zustand/focusTrimmedClip';
|
|
|
6
6
|
import { useTimelineStore } from './zustand/TimelineStore';
|
|
7
7
|
import { useVideoPlayerStore } from './zustand/videoPlayerStore';
|
|
8
8
|
import { useKeyboardShortcuts } from './hooks/useKeyboardShortcuts';
|
|
9
|
-
|
|
9
|
+
import { useTrimmedService } from './dataServices/trimmed';
|
|
10
|
+
import { useTrimmedClipsStore } from './zustand/trimmedClipsStore';
|
|
11
|
+
import { useAlertDialogStore } from './zustand/alertDialogStore';
|
|
12
|
+
import { useVideoMetadataStore } from './zustand/videoMetadataStore';
|
|
13
|
+
export { Button, buttonVariants, Player, Timeline, useFocusTrimmedClipStore, useTimelineStore, useVideoPlayerStore, useKeyboardShortcuts, Toaster, useTrimmedService, useTrimmedClipsStore, useAlertDialogStore, useVideoMetadataStore, };
|