react-covideo-embed 1.0.43 → 1.0.44

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.
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const CountDown: ({ counter, willStart, onClick, hide, height, width, }: any) => JSX.Element;
@@ -6,7 +6,7 @@ type Props = {
6
6
  primaryButtonText: string;
7
7
  handleSubmit: any;
8
8
  handleModalClose: () => void;
9
- primaryButtonType?: 'danger' | 'default';
9
+ primaryButtonType?: 'primary' | 'secondary' | 'text';
10
10
  };
11
11
  export declare const ModalPrompt: ({ title, content, primaryButtonText, secondaryButtonText, handleModalClose, handleSubmit, primaryButtonType, }: Props) => JSX.Element;
12
12
  export {};
@@ -90,15 +90,11 @@ export declare const palette: {
90
90
  themeDark75Percent: string;
91
91
  secondaryButtonBlueBg: string;
92
92
  label: string;
93
- buttonDanger: string;
94
93
  lightgray: string;
95
- buttonDelete: string;
96
94
  blackRgb75: string;
97
95
  primaryBlack25Percent: string;
98
96
  secondaryBlue: string;
99
97
  midGrey: string;
100
98
  coal: string;
101
99
  covideoGray40: string;
102
- destructiveBg: string;
103
- red80: string;
104
100
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-covideo-embed",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
4
4
  "private": false,
5
5
  "description": "Covideo platform as an embeddable React component.",
6
6
  "main": "./build/index.js",
@@ -76,7 +76,7 @@
76
76
  "react-beautiful-dnd": "^13.1.1",
77
77
  "react-compound-slider": "^3.4.0",
78
78
  "react-covideo-ai-assist": "0.0.33",
79
- "react-covideo-common": "0.1.62",
79
+ "react-covideo-common": "0.1.71",
80
80
  "react-dropzone": "11.3.2",
81
81
  "react-full-screen": "^1.1.1",
82
82
  "react-icons": "^4.7.1",
@@ -1 +0,0 @@
1
- export declare const RecordBoth: ({ onRecordingStart, onRecordingEnd, onUpload, uploadDisabled, onRecordingUrlGeneration, }: any) => JSX.Element;
@@ -1 +0,0 @@
1
- export declare const RecordBothMain: ({ loading }: any) => JSX.Element;
@@ -1 +0,0 @@
1
- export declare const RecordCam: ({ onRecordingStart, onRecordingEnd, uploadDisabled, virtualBackgroundUrl, showRecordingButton, onRecordingUrlGeneration, }: any) => JSX.Element;
@@ -1 +0,0 @@
1
- export declare const RecordCamMain: ({ loading }: any) => JSX.Element;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const RecordHome: () => JSX.Element;
@@ -1,2 +0,0 @@
1
- import * as React from 'react';
2
- export declare const RecordScreen: React.MemoExoticComponent<({ onRecordingStart, onRecordingEnd, uploadDisabled, onRecordingUrlGeneration, }: any) => JSX.Element>;
@@ -1 +0,0 @@
1
- export declare const RecordScreenMain: ({ loading }: any) => JSX.Element;
@@ -1,15 +0,0 @@
1
- import { ReactNode } from 'react';
2
- type Props = {
3
- hoverable: ReactNode;
4
- popup: ReactNode;
5
- className?: string;
6
- position?: 'top' | 'bottom' | 'above' | 'bottom-left' | 'top-right' | 'top-left' | 'right' | 'below';
7
- width?: string;
8
- maxWidth?: string;
9
- padding?: string;
10
- disableHover?: boolean;
11
- showTriangle?: boolean;
12
- cursor?: string;
13
- };
14
- export declare const HoverPopup: ({ hoverable, className, popup, position, padding, width, maxWidth, disableHover, showTriangle, cursor, }: Props) => JSX.Element;
15
- export {};