react-covideo-embed 1.0.55 → 1.0.57
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/build/app/App.d.ts +1 -1
- package/build/app/pages/library/components/UserDropdown.d.ts +0 -1
- package/build/app/pages/recordv1/ChooseRecordingOptions.d.ts +5 -5
- package/build/app/pages/recordv1/ModalVideoTags.d.ts +1 -1
- package/build/app/pages/recordv1/useRecorder.d.ts +0 -1
- package/build/app/pages/recordv1/utils/functions.d.ts +1 -1
- package/build/app/pages/recordv1/utils/recorderSettings.d.ts +2 -2
- package/build/i18n.d.ts +2 -0
- package/build/index.d.ts +0 -1
- package/build/index.js +142 -142
- package/build/lib/api/droplr/uploadDrop.d.ts +1 -1
- package/build/lib/api/quckshareApi.d.ts +1 -1
- package/build/lib/api/voiceOverApi.d.ts +2 -2
- package/build/lib/components/ButtonDropdown.d.ts +0 -1
- package/build/lib/components/CountDown.d.ts +0 -1
- package/build/lib/components/DragAndDrop.d.ts +1 -3
- package/build/lib/components/MainWrapper.d.ts +0 -1
- package/build/lib/components/NewDropdown.d.ts +6 -6
- package/build/lib/components/TopBar.d.ts +0 -1
- package/build/lib/components/index.d.ts +0 -1
- package/build/lib/context/ActionDispatchContext.d.ts +0 -1
- package/build/lib/hooks/query/markAsSent/useQuickShareMarkAsSentMutation.d.ts +1 -1
- package/build/lib/hooks/useQuickShare.d.ts +15 -0
- package/build/lib/images/AccountIcon.d.ts +1 -1
- package/build/lib/images/AddIcon.d.ts +1 -1
- package/build/lib/images/CarIcon.d.ts +1 -1
- package/build/lib/images/CdkLogo.d.ts +1 -1
- package/build/lib/images/CdkSmallLogo.d.ts +1 -1
- package/build/lib/images/CdkSmallLogoActive.d.ts +1 -1
- package/build/lib/images/CheckmarkIcon.d.ts +1 -1
- package/build/lib/images/CloseCircleIcon.d.ts +1 -1
- package/build/lib/images/CloseIcon.d.ts +1 -1
- package/build/lib/images/CovideoLogo.d.ts +1 -1
- package/build/lib/images/CovideoSmallLogo.d.ts +1 -1
- package/build/lib/images/CovideoSmallLogoActive.d.ts +1 -1
- package/build/lib/images/DeleteIcon.d.ts +1 -1
- package/build/lib/images/Drag.d.ts +1 -1
- package/build/lib/images/HashtagIcon.d.ts +1 -1
- package/build/lib/images/LaptopIcon.d.ts +1 -1
- package/build/lib/images/SaveIcon.d.ts +1 -1
- package/build/lib/images/SettingsIcon.d.ts +1 -1
- package/build/lib/images/VectorIcon.d.ts +1 -1
- package/build/lib/images/VideoIcon.d.ts +1 -1
- package/build/lib/images/VirtualBgIcon.d.ts +1 -1
- package/build/lib/images/ZoomInIcon.d.ts +1 -1
- package/build/lib/images/ZoomOutIcon.d.ts +1 -1
- package/build/lib/images/pauseButton.d.ts +1 -1
- package/build/lib/images/playButton.d.ts +1 -1
- package/dist/206.index.cjs.js +1 -0
- package/dist/227.index.cjs.js +1 -0
- package/dist/305.index.cjs.js +1 -0
- package/dist/477.index.cjs.js +1 -0
- package/dist/534.index.cjs.js +1 -0
- package/dist/639.index.cjs.js +1 -0
- package/dist/67.index.cjs.js +1 -0
- package/dist/700.index.cjs.js +1 -0
- package/dist/802.index.cjs.js +1 -0
- package/dist/842.index.cjs.js +1 -0
- package/dist/908.index.cjs.js +1 -0
- package/dist/922.index.cjs.js +1 -0
- package/dist/index.cjs.js +5222 -0
- package/dist/index.cjs.js.LICENSE.txt +936 -0
- package/package.json +8 -2
- package/build/app/pages/recordv1/DroplrFilesTabContent.d.ts +0 -8
- package/build/lib/components/Search.d.ts +0 -19
- package/build/lib/components/modal/ModalRecordingSettings.d.ts +0 -10
package/build/app/App.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare const ChooseRecordingOptions: ({ extendStyles, showHelpDesk, showPreview, onStartUpladingVoiceOverHandler, showLegacyRecorderSwitch, }: {
|
|
2
2
|
extendStyles?: {
|
|
3
|
-
mainRecordContentWrapper?:
|
|
4
|
-
showRecorderWrapper?:
|
|
5
|
-
}
|
|
3
|
+
mainRecordContentWrapper?: React.CSSProperties;
|
|
4
|
+
showRecorderWrapper?: React.CSSProperties;
|
|
5
|
+
};
|
|
6
6
|
showHelpDesk: boolean;
|
|
7
|
-
showPreview?: boolean
|
|
8
|
-
onStartUpladingVoiceOverHandler?: (
|
|
7
|
+
showPreview?: boolean;
|
|
8
|
+
onStartUpladingVoiceOverHandler?: (blob: Blob) => void;
|
|
9
9
|
showLegacyRecorderSwitch: boolean;
|
|
10
10
|
}) => JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const TAG_LIMIT = 50;
|
|
2
|
-
export declare const ModalVideoTags: ({ videoTags, handleModalClose, onSubmit,
|
|
2
|
+
export declare const ModalVideoTags: ({ videoTags, handleModalClose, onSubmit, buttonTitle, }: any) => JSX.Element;
|
|
@@ -25,7 +25,7 @@ export declare const handleScriptSpeedUsingScriptSize: (ele: any) => {
|
|
|
25
25
|
}[];
|
|
26
26
|
export declare const formatBytes: (bytes: number, decimals?: number) => string;
|
|
27
27
|
export declare const addThousandCommaSeparator: (n: number, roundDecimal?: boolean) => string;
|
|
28
|
-
export declare const getStatusText: (status: string) => "Waiting…" | "Uploading…" | "Canceling…" | "Canceled" | "Generating Preview URL..."
|
|
28
|
+
export declare const getStatusText: (status: string) => "Finished" | "Waiting…" | "Uploading…" | "Canceling…" | "Canceled" | "Generating Preview URL...";
|
|
29
29
|
export declare const getStatusColor: (status: string) => string;
|
|
30
30
|
export declare const getStatusSize: (file: ExtendedFile) => string;
|
|
31
31
|
export declare const getTitle: () => string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IUserSettings } from 'lib/context/record/types';
|
|
2
2
|
import { IVideoSettings } from '../types';
|
|
3
|
-
export declare const getAudioSettings: (userSettings: IUserSettings) =>
|
|
3
|
+
export declare const getAudioSettings: (userSettings: IUserSettings) => {
|
|
4
4
|
deviceId: string;
|
|
5
|
-
};
|
|
5
|
+
} | false;
|
|
6
6
|
export declare const getVideoSettings: (userSettings: IUserSettings) => IVideoSettings;
|
package/build/i18n.d.ts
ADDED
package/build/index.d.ts
CHANGED