@salina-app/media-editor 0.1.66 → 0.1.68
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 +2 -1
- package/dist/main.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3511,7 +3511,7 @@ const {
|
|
|
3511
3511
|
apiUrl: "",
|
|
3512
3512
|
setApiUrl: (e) => t({ apiUrl: e })
|
|
3513
3513
|
})), jR = (t) => {
|
|
3514
|
-
const e = H6(
|
|
3514
|
+
const { apiUrl: e } = H6.getState(), n = mi.create({
|
|
3515
3515
|
baseURL: t ? "" : e,
|
|
3516
3516
|
headers: {
|
|
3517
3517
|
"Content-Type": "application/json"
|
|
@@ -81369,6 +81369,7 @@ export {
|
|
|
81369
81369
|
mt as timestampToSeconds,
|
|
81370
81370
|
zn as timestampToWidth,
|
|
81371
81371
|
Ex as useAlertDialogStore,
|
|
81372
|
+
H6 as useAppConfigStore,
|
|
81372
81373
|
rv as useFilePathStore,
|
|
81373
81374
|
BR as useFocusTrimmedClipStore,
|
|
81374
81375
|
CTe as useKeyboardShortcuts,
|
package/dist/main.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ import { useTrimmerStampStore } from './zustand/trimmerStampStore';
|
|
|
22
22
|
import { useVideoMetadataStore, videoMetadataInitialState } from './zustand/videoMetadataStore';
|
|
23
23
|
import { useVideoPlayerStore } from './zustand/videoPlayerStore';
|
|
24
24
|
import { useTranscriptHighlightDirection } from './zustand/transcriptHighlightDirection';
|
|
25
|
+
import { useAppConfigStore } from './zustand/appConfigStore';
|
|
25
26
|
import { Toaster } from './components/ui/toaster';
|
|
26
27
|
import { Toaster as SonnerToaster } from 'sonner';
|
|
27
28
|
import { default as AlertDialog } from './components/customs/Dialog/AlertDialog';
|
|
@@ -33,4 +34,4 @@ import { default as SubDirectory } from './components/customs/Source/SubDirector
|
|
|
33
34
|
import { default as TranscriptSegment } from './components/customs/Transcription/TranscriptSegment';
|
|
34
35
|
import { default as TranscriptList } from './components/customs/Transcription/ExampleUseCase/TranscriptList';
|
|
35
36
|
import { default as HighlightSelection } from './components/customs/Highlight/HighlightSelection';
|
|
36
|
-
export { useKeyboardShortcuts, useRefresh, useTimelineDataInitializer, useMoveTime, useTrimmedService, secondsToTimestamp, timestampToSeconds, timestampToWidth, pxToTimestamp, durationToTimestamp, durationToPixel, ensureThreeDecimalPlaces, splitTimestamps, checkStampDivisible, sortByTimestampStart, getClosestTimestamp, getMaxTrimCard, getlowestTimeStampID, useAlertDialogStore, useFilePathStore, useFocusTrimmedClipStore, useMergeStore, useOutputFilesStore, useSelectedHighlightOption, useTimelineStore, useTimelineDataStore, useToMergeStore, useTranscriptStore, useTrimmedClipsStore, useTrimmerStampStore, useVideoMetadataStore, videoMetadataInitialState, useVideoPlayerStore, useTranscriptHighlightDirection, Toaster, SonnerToaster, AlertDialog, Button, buttonVariants, Player, Timeline, DirectoryList, TranscriptSegment, TranscriptList, HighlightSelection, SubDirectory, };
|
|
37
|
+
export { useKeyboardShortcuts, useRefresh, useTimelineDataInitializer, useMoveTime, useTrimmedService, secondsToTimestamp, timestampToSeconds, timestampToWidth, pxToTimestamp, durationToTimestamp, durationToPixel, ensureThreeDecimalPlaces, splitTimestamps, checkStampDivisible, sortByTimestampStart, getClosestTimestamp, getMaxTrimCard, getlowestTimeStampID, useAlertDialogStore, useFilePathStore, useFocusTrimmedClipStore, useMergeStore, useOutputFilesStore, useSelectedHighlightOption, useTimelineStore, useTimelineDataStore, useToMergeStore, useTranscriptStore, useTrimmedClipsStore, useTrimmerStampStore, useVideoMetadataStore, videoMetadataInitialState, useVideoPlayerStore, useTranscriptHighlightDirection, useAppConfigStore, Toaster, SonnerToaster, AlertDialog, Button, buttonVariants, Player, Timeline, DirectoryList, TranscriptSegment, TranscriptList, HighlightSelection, SubDirectory, };
|