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.
Files changed (66) hide show
  1. package/build/app/App.d.ts +1 -1
  2. package/build/app/pages/library/components/UserDropdown.d.ts +0 -1
  3. package/build/app/pages/recordv1/ChooseRecordingOptions.d.ts +5 -5
  4. package/build/app/pages/recordv1/ModalVideoTags.d.ts +1 -1
  5. package/build/app/pages/recordv1/useRecorder.d.ts +0 -1
  6. package/build/app/pages/recordv1/utils/functions.d.ts +1 -1
  7. package/build/app/pages/recordv1/utils/recorderSettings.d.ts +2 -2
  8. package/build/i18n.d.ts +2 -0
  9. package/build/index.d.ts +0 -1
  10. package/build/index.js +142 -142
  11. package/build/lib/api/droplr/uploadDrop.d.ts +1 -1
  12. package/build/lib/api/quckshareApi.d.ts +1 -1
  13. package/build/lib/api/voiceOverApi.d.ts +2 -2
  14. package/build/lib/components/ButtonDropdown.d.ts +0 -1
  15. package/build/lib/components/CountDown.d.ts +0 -1
  16. package/build/lib/components/DragAndDrop.d.ts +1 -3
  17. package/build/lib/components/MainWrapper.d.ts +0 -1
  18. package/build/lib/components/NewDropdown.d.ts +6 -6
  19. package/build/lib/components/TopBar.d.ts +0 -1
  20. package/build/lib/components/index.d.ts +0 -1
  21. package/build/lib/context/ActionDispatchContext.d.ts +0 -1
  22. package/build/lib/hooks/query/markAsSent/useQuickShareMarkAsSentMutation.d.ts +1 -1
  23. package/build/lib/hooks/useQuickShare.d.ts +15 -0
  24. package/build/lib/images/AccountIcon.d.ts +1 -1
  25. package/build/lib/images/AddIcon.d.ts +1 -1
  26. package/build/lib/images/CarIcon.d.ts +1 -1
  27. package/build/lib/images/CdkLogo.d.ts +1 -1
  28. package/build/lib/images/CdkSmallLogo.d.ts +1 -1
  29. package/build/lib/images/CdkSmallLogoActive.d.ts +1 -1
  30. package/build/lib/images/CheckmarkIcon.d.ts +1 -1
  31. package/build/lib/images/CloseCircleIcon.d.ts +1 -1
  32. package/build/lib/images/CloseIcon.d.ts +1 -1
  33. package/build/lib/images/CovideoLogo.d.ts +1 -1
  34. package/build/lib/images/CovideoSmallLogo.d.ts +1 -1
  35. package/build/lib/images/CovideoSmallLogoActive.d.ts +1 -1
  36. package/build/lib/images/DeleteIcon.d.ts +1 -1
  37. package/build/lib/images/Drag.d.ts +1 -1
  38. package/build/lib/images/HashtagIcon.d.ts +1 -1
  39. package/build/lib/images/LaptopIcon.d.ts +1 -1
  40. package/build/lib/images/SaveIcon.d.ts +1 -1
  41. package/build/lib/images/SettingsIcon.d.ts +1 -1
  42. package/build/lib/images/VectorIcon.d.ts +1 -1
  43. package/build/lib/images/VideoIcon.d.ts +1 -1
  44. package/build/lib/images/VirtualBgIcon.d.ts +1 -1
  45. package/build/lib/images/ZoomInIcon.d.ts +1 -1
  46. package/build/lib/images/ZoomOutIcon.d.ts +1 -1
  47. package/build/lib/images/pauseButton.d.ts +1 -1
  48. package/build/lib/images/playButton.d.ts +1 -1
  49. package/dist/206.index.cjs.js +1 -0
  50. package/dist/227.index.cjs.js +1 -0
  51. package/dist/305.index.cjs.js +1 -0
  52. package/dist/477.index.cjs.js +1 -0
  53. package/dist/534.index.cjs.js +1 -0
  54. package/dist/639.index.cjs.js +1 -0
  55. package/dist/67.index.cjs.js +1 -0
  56. package/dist/700.index.cjs.js +1 -0
  57. package/dist/802.index.cjs.js +1 -0
  58. package/dist/842.index.cjs.js +1 -0
  59. package/dist/908.index.cjs.js +1 -0
  60. package/dist/922.index.cjs.js +1 -0
  61. package/dist/index.cjs.js +5222 -0
  62. package/dist/index.cjs.js.LICENSE.txt +936 -0
  63. package/package.json +8 -2
  64. package/build/app/pages/recordv1/DroplrFilesTabContent.d.ts +0 -8
  65. package/build/lib/components/Search.d.ts +0 -19
  66. package/build/lib/components/modal/ModalRecordingSettings.d.ts +0 -10
@@ -1,3 +1,3 @@
1
- /// <reference types="react" />
1
+ import '../i18n';
2
2
  declare function App(): JSX.Element;
3
3
  export default App;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type Props = {
3
2
  handleUpdateToken: Function;
4
3
  };
@@ -1,10 +1,10 @@
1
1
  export declare const ChooseRecordingOptions: ({ extendStyles, showHelpDesk, showPreview, onStartUpladingVoiceOverHandler, showLegacyRecorderSwitch, }: {
2
2
  extendStyles?: {
3
- mainRecordContentWrapper?: import("react").CSSProperties | undefined;
4
- showRecorderWrapper?: import("react").CSSProperties | undefined;
5
- } | undefined;
3
+ mainRecordContentWrapper?: React.CSSProperties;
4
+ showRecorderWrapper?: React.CSSProperties;
5
+ };
6
6
  showHelpDesk: boolean;
7
- showPreview?: boolean | undefined;
8
- onStartUpladingVoiceOverHandler?: ((blob: Blob) => void) | undefined;
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, title, buttonTitle, }: any) => JSX.Element;
2
+ export declare const ModalVideoTags: ({ videoTags, handleModalClose, onSubmit, buttonTitle, }: any) => JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { RECORDING_STATUS } from './types';
3
2
  interface UseRecorderParams {
4
3
  screenStream: MediaStream;
@@ -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..." | "Finished";
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) => false | {
3
+ export declare const getAudioSettings: (userSettings: IUserSettings) => {
4
4
  deviceId: string;
5
- };
5
+ } | false;
6
6
  export declare const getVideoSettings: (userSettings: IUserSettings) => IVideoSettings;
@@ -0,0 +1,2 @@
1
+ import i18n from 'i18next';
2
+ export default i18n;
package/build/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import './index.css';
3
2
  import { WHITELABEL } from 'lib/context/ConfigurationContext';
4
3
  export declare enum Feature {