react-covideo-embed 1.0.29 → 1.0.31-sandbox.0

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 (44) hide show
  1. package/build/app/pages/lesaTV/LesaTV.d.ts +1 -0
  2. package/build/app/pages/merge/components/VideoMerge.d.ts +1 -0
  3. package/build/app/pages/recordv1/UploadLoader.d.ts +3 -3
  4. package/build/app/pages/recordv1/utils/media.d.ts +2 -2
  5. package/build/index.js +104 -104
  6. package/build/lib/components/CheckboxInput.d.ts +0 -3
  7. package/build/lib/components/Input.d.ts +1 -1
  8. package/build/lib/components/Logo.d.ts +1 -5
  9. package/build/lib/components/NewDropdown.d.ts +8 -4
  10. package/build/lib/components/NewTextInput.d.ts +1 -1
  11. package/build/lib/components/Spinner.d.ts +1 -1
  12. package/build/lib/components/index.d.ts +0 -1
  13. package/build/lib/components/modals/ModalVideoPreview.d.ts +1 -1
  14. package/build/lib/components/styles/layout.d.ts +4 -4
  15. package/build/lib/components/styles/typography.d.ts +12 -12
  16. package/build/lib/components/videoUpload/styles.d.ts +11 -11
  17. package/build/lib/images/AccountIcon.d.ts +1 -1
  18. package/build/lib/images/AddIcon.d.ts +1 -1
  19. package/build/lib/images/CarIcon.d.ts +1 -1
  20. package/build/lib/images/CheckmarkIcon.d.ts +1 -1
  21. package/build/lib/images/CloseCircleIcon.d.ts +1 -1
  22. package/build/lib/images/CloseIcon.d.ts +1 -1
  23. package/build/lib/images/DeleteIcon.d.ts +1 -1
  24. package/build/lib/images/Drag.d.ts +1 -1
  25. package/build/lib/images/HashtagIcon.d.ts +1 -1
  26. package/build/lib/images/LaptopIcon.d.ts +1 -1
  27. package/build/lib/images/LogoCDS.d.ts +1 -1
  28. package/build/lib/images/LogoGeneral.d.ts +1 -1
  29. package/build/lib/images/NewLogo.d.ts +2 -0
  30. package/build/lib/images/SaveIcon.d.ts +1 -1
  31. package/build/lib/images/SettingsIcon.d.ts +1 -1
  32. package/build/lib/images/SmallLogoIcon.d.ts +1 -1
  33. package/build/lib/images/VectorIcon.d.ts +1 -1
  34. package/build/lib/images/VideoIcon.d.ts +1 -1
  35. package/build/lib/images/VirtualBgIcon.d.ts +1 -1
  36. package/build/lib/images/ZoomInIcon.d.ts +1 -1
  37. package/build/lib/images/ZoomOutIcon.d.ts +1 -1
  38. package/build/lib/images/pauseButton.d.ts +1 -1
  39. package/build/lib/images/playButton.d.ts +1 -1
  40. package/build/lib/style/theme.d.ts +0 -24
  41. package/package.json +3 -3
  42. package/styled.d.ts +37 -0
  43. package/build/lib/components/Dropdown.d.ts +0 -30
  44. package/images.d.ts +0 -4
@@ -1 +1,2 @@
1
+ export declare const TitleWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
1
2
  export declare const LesaTV: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ export declare const Slider: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {}, never>;
1
2
  type VideoMergeProps = {
2
3
  videos?: any[];
3
4
  setVideos?: (arg: any) => void;
@@ -1,7 +1,7 @@
1
1
  import { RECORD_LOADER_STATUS } from './types';
2
- export declare const FlexCenter: import("styled-components").StyledComponent<"div", any, {}, never>;
3
- export declare const ProgressContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
4
- export declare const ContentBody: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const FlexCenter: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
3
+ export declare const ProgressContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
4
+ export declare const ContentBody: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
5
5
  interface IProgress {
6
6
  loaded: number;
7
7
  total: number;
@@ -2,9 +2,9 @@ import { IVideoSettings } from '../types';
2
2
  export declare const handleScreenCapture: (displayMediaRef: React.MutableRefObject<MediaStream | null>, audioSettings: boolean | {
3
3
  deviceId: string;
4
4
  }, videoSettings: MediaTrackConstraints) => Promise<MediaStream>;
5
- export declare const enableCamera: (audioSettings: boolean | {
5
+ export declare const enableCamera: (cameraStreamRef: React.MutableRefObject<MediaStream | null>, audioSettings: boolean | {
6
6
  deviceId: string;
7
- }, videoSettings: IVideoSettings, useFrontCamera: boolean) => Promise<MediaStream>;
7
+ }, videoSettings: IVideoSettings) => Promise<MediaStream>;
8
8
  export declare const getScreenAndCameraStreams: (displayMediaRef: React.MutableRefObject<MediaStream | null>, cameraStreamRef: React.MutableRefObject<MediaStream | null>, audioSettings: boolean | {
9
9
  deviceId: string;
10
10
  }, videoSettings: IVideoSettings, videoCameraPipRef: React.RefObject<HTMLVideoElement>) => Promise<MediaStream>;