react-covideo-embed 1.0.30 → 1.0.31
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/pages/lesaTV/LesaTV.d.ts +1 -0
- package/build/app/pages/merge/components/VideoMerge.d.ts +1 -0
- package/build/app/pages/recordv1/UploadLoader.d.ts +3 -3
- package/build/app/pages/recordv1/utils/media.d.ts +2 -2
- package/build/index.js +104 -104
- package/build/lib/components/CheckboxInput.d.ts +0 -3
- package/build/lib/components/Input.d.ts +1 -1
- package/build/lib/components/Logo.d.ts +1 -5
- package/build/lib/components/NewDropdown.d.ts +8 -4
- package/build/lib/components/NewTextInput.d.ts +1 -1
- package/build/lib/components/Spinner.d.ts +1 -1
- package/build/lib/components/index.d.ts +0 -1
- package/build/lib/components/modals/ModalVideoPreview.d.ts +1 -1
- package/build/lib/components/styles/layout.d.ts +4 -4
- package/build/lib/components/styles/typography.d.ts +12 -12
- package/build/lib/components/videoUpload/styles.d.ts +11 -11
- 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/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/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/LogoCDS.d.ts +1 -1
- package/build/lib/images/LogoGeneral.d.ts +1 -1
- package/build/lib/images/NewLogo.d.ts +2 -0
- package/build/lib/images/SaveIcon.d.ts +1 -1
- package/build/lib/images/SettingsIcon.d.ts +1 -1
- package/build/lib/images/SmallLogoIcon.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/build/lib/style/theme.d.ts +0 -24
- package/package.json +3 -3
- package/styled.d.ts +37 -0
- package/build/lib/components/Dropdown.d.ts +0 -30
- package/images.d.ts +0 -4
|
@@ -8,11 +8,8 @@ interface CheckboxI {
|
|
|
8
8
|
checked?: boolean;
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
name?: string;
|
|
11
|
-
blueCheck?: boolean;
|
|
12
|
-
grayCheck?: boolean;
|
|
13
11
|
checkGroupIndicator?: boolean;
|
|
14
12
|
width?: string;
|
|
15
|
-
ignoreGrayForAllSelect?: boolean;
|
|
16
13
|
isAutomotive?: boolean;
|
|
17
14
|
}
|
|
18
15
|
export declare const CheckboxInput: (props: CheckboxI) => JSX.Element;
|
|
@@ -4,7 +4,7 @@ type Props = {
|
|
|
4
4
|
padding?: string;
|
|
5
5
|
borderColor?: string;
|
|
6
6
|
};
|
|
7
|
-
export declare const Input: import("styled-components").StyledComponent<"input",
|
|
7
|
+
export declare const Input: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {
|
|
8
8
|
type: import("react").HTMLInputTypeAttribute;
|
|
9
9
|
} & Props, "type">;
|
|
10
10
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ControlProps, FormatOptionLabelMeta, IndicatorProps, MenuPlacement, MenuPosition, OptionProps } from 'react-select';
|
|
3
3
|
import { SelectComponents } from 'react-select/src/components';
|
|
4
|
-
export declare const Chip: import("styled-components").StyledComponent<"div",
|
|
4
|
+
export declare const Chip: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
5
5
|
bgColor: string;
|
|
6
6
|
fontColor: string;
|
|
7
7
|
radius?: string | undefined;
|
|
@@ -71,14 +71,18 @@ type Props = {
|
|
|
71
71
|
formatOptionLabel?: ((option: any, labelMeta: FormatOptionLabelMeta<any, any>) => React.ReactNode) | undefined;
|
|
72
72
|
customComponents?: Partial<SelectComponents<any, any>> | undefined;
|
|
73
73
|
onMenuOpen?: (() => void) | undefined;
|
|
74
|
+
maxMenuHeight?: number;
|
|
75
|
+
controlShouldRenderValue?: boolean;
|
|
76
|
+
createOptionPosition?: 'first' | 'last' | undefined;
|
|
77
|
+
autoFocus?: boolean;
|
|
74
78
|
};
|
|
75
79
|
type DropdownArrowProps = {
|
|
76
80
|
menuIsOpen?: boolean;
|
|
77
81
|
};
|
|
78
82
|
export type DropdownIndicatorProps = React.PropsWithChildren<IndicatorProps<Option, false>>;
|
|
79
|
-
export declare const DropdownArrowIcon: import("styled-components").StyledComponent<"span",
|
|
80
|
-
export declare const OptionWrapper: import("styled-components").StyledComponent<"div",
|
|
81
|
-
export declare const OptionIconWrapper: import("styled-components").StyledComponent<"div",
|
|
83
|
+
export declare const DropdownArrowIcon: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, DropdownArrowProps, never>;
|
|
84
|
+
export declare const OptionWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
85
|
+
export declare const OptionIconWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
82
86
|
export declare const getControlStyles: (props: ControlProps<Option, false>) => {
|
|
83
87
|
borderColor: string;
|
|
84
88
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const NewTextInput: import("styled-components").StyledComponent<"input",
|
|
1
|
+
export declare const NewTextInput: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, any, "type">;
|
|
@@ -2,5 +2,5 @@ type Props = {
|
|
|
2
2
|
size?: number;
|
|
3
3
|
thickness?: number;
|
|
4
4
|
};
|
|
5
|
-
export declare const Spinner: import("styled-components").StyledComponent<"div",
|
|
5
|
+
export declare const Spinner: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, Props, never>;
|
|
6
6
|
export {};
|
|
@@ -5,7 +5,6 @@ export { Input } from './Input';
|
|
|
5
5
|
export { ButtonDropdown } from './ButtonDropdown';
|
|
6
6
|
export { Spinner } from './Spinner';
|
|
7
7
|
export { LoadingIndicator } from './LoadingIndicator';
|
|
8
|
-
export { Dropdown } from './Dropdown';
|
|
9
8
|
export { CheckboxInput } from './CheckboxInput';
|
|
10
9
|
export { RadioInput } from './inputs/RadioInput';
|
|
11
10
|
export { Modal } from './modal/Modal';
|
|
@@ -3,5 +3,5 @@ type PreviewProps = {
|
|
|
3
3
|
handleModalClose: () => void;
|
|
4
4
|
video: VideoListItem;
|
|
5
5
|
};
|
|
6
|
-
export declare const ModalVideoPreview: ({ handleModalClose, video }: PreviewProps) => JSX.Element;
|
|
6
|
+
export declare const ModalVideoPreview: ({ handleModalClose, video, }: PreviewProps) => JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -15,9 +15,9 @@ interface IEnhancedGap {
|
|
|
15
15
|
textOverflow: string;
|
|
16
16
|
whiteSpace: string;
|
|
17
17
|
}
|
|
18
|
-
export declare const Gap: import("styled-components").StyledComponent<"div",
|
|
19
|
-
export declare const EnhancedGap: import("styled-components").StyledComponent<"div",
|
|
20
|
-
export declare const HeaderWrapper: import("styled-components").StyledComponent<"div",
|
|
18
|
+
export declare const Gap: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, IGap, never>;
|
|
19
|
+
export declare const EnhancedGap: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, IGap & IEnhancedGap, never>;
|
|
20
|
+
export declare const HeaderWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
21
21
|
interface IStack {
|
|
22
22
|
gap?: string;
|
|
23
23
|
m?: string;
|
|
@@ -29,5 +29,5 @@ interface IStack {
|
|
|
29
29
|
maxWidth?: string;
|
|
30
30
|
height?: string;
|
|
31
31
|
}
|
|
32
|
-
export declare const Stack: import("styled-components").StyledComponent<"div",
|
|
32
|
+
export declare const Stack: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, IStack, never>;
|
|
33
33
|
export {};
|
|
@@ -6,39 +6,39 @@ interface ICommonTypography {
|
|
|
6
6
|
width?: string;
|
|
7
7
|
maxWidth?: string;
|
|
8
8
|
}
|
|
9
|
-
export declare const CommonTypography: import("styled-components").StyledComponent<"h1",
|
|
9
|
+
export declare const CommonTypography: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, ICommonTypography, never>;
|
|
10
10
|
export declare const CHeading: import("styled-components").FlattenSimpleInterpolation;
|
|
11
|
-
export declare const Heading: import("styled-components").StyledComponent<"h1",
|
|
11
|
+
export declare const Heading: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, ICommonTypography & {
|
|
12
12
|
as: string;
|
|
13
13
|
}, "as">;
|
|
14
|
-
export declare const SubHeading: import("styled-components").StyledComponent<"h1",
|
|
14
|
+
export declare const SubHeading: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, ICommonTypography & {
|
|
15
15
|
as: string;
|
|
16
16
|
}, "as">;
|
|
17
|
-
export declare const ParagraphNormal: import("styled-components").StyledComponent<"h1",
|
|
17
|
+
export declare const ParagraphNormal: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, ICommonTypography & {
|
|
18
18
|
as: string;
|
|
19
19
|
}, "as">;
|
|
20
|
-
export declare const ParagraphNormalBold: import("styled-components").StyledComponent<"h1",
|
|
20
|
+
export declare const ParagraphNormalBold: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, ICommonTypography & {
|
|
21
21
|
as: string;
|
|
22
22
|
}, "as">;
|
|
23
|
-
export declare const ParagraphNormalBold600: import("styled-components").StyledComponent<"h1",
|
|
23
|
+
export declare const ParagraphNormalBold600: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, ICommonTypography & {
|
|
24
24
|
as: string;
|
|
25
25
|
}, "as">;
|
|
26
|
-
export declare const ParagraphNormalBold500: import("styled-components").StyledComponent<"h1",
|
|
26
|
+
export declare const ParagraphNormalBold500: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, ICommonTypography & {
|
|
27
27
|
as: string;
|
|
28
28
|
}, "as">;
|
|
29
|
-
export declare const ParagraphExtraSmall: import("styled-components").StyledComponent<"h1",
|
|
29
|
+
export declare const ParagraphExtraSmall: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, ICommonTypography & {
|
|
30
30
|
as: string;
|
|
31
31
|
}, "as">;
|
|
32
|
-
export declare const ParagraphSmall: import("styled-components").StyledComponent<"h1",
|
|
32
|
+
export declare const ParagraphSmall: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, ICommonTypography & {
|
|
33
33
|
as: string;
|
|
34
34
|
}, "as">;
|
|
35
|
-
export declare const ParagraphSmallBold: import("styled-components").StyledComponent<"h1",
|
|
35
|
+
export declare const ParagraphSmallBold: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, ICommonTypography & {
|
|
36
36
|
as: string;
|
|
37
37
|
}, "as">;
|
|
38
|
-
export declare const ParagraphExtraSmallBold: import("styled-components").StyledComponent<"h1",
|
|
38
|
+
export declare const ParagraphExtraSmallBold: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, ICommonTypography & {
|
|
39
39
|
as: string;
|
|
40
40
|
}, "as">;
|
|
41
|
-
export declare const CheckboxLabel: import("styled-components").StyledComponent<"h1",
|
|
41
|
+
export declare const CheckboxLabel: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, ICommonTypography & {
|
|
42
42
|
as: string;
|
|
43
43
|
} & LabelHTMLAttributes<HTMLLabelElement>, "as">;
|
|
44
44
|
export {};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export declare const Content: import("styled-components").StyledComponent<"div",
|
|
2
|
-
export declare const ContentBody: import("styled-components").StyledComponent<"div",
|
|
3
|
-
export declare const ContentFooter: import("styled-components").StyledComponent<"div",
|
|
4
|
-
export declare const UploadFieldContainer: import("styled-components").StyledComponent<"div",
|
|
5
|
-
export declare const FlexContainer: import("styled-components").StyledComponent<"div",
|
|
6
|
-
export declare const Skill: import("styled-components").StyledComponent<"div",
|
|
7
|
-
export declare const ProgressData: import("styled-components").StyledComponent<"div",
|
|
8
|
-
export declare const ProgressContainer: import("styled-components").StyledComponent<"div",
|
|
9
|
-
export declare const UploadData: import("styled-components").StyledComponent<"div",
|
|
10
|
-
export declare const UploadingHeader: import("styled-components").StyledComponent<"div",
|
|
11
|
-
export declare const CancelContainer: import("styled-components").StyledComponent<"div",
|
|
1
|
+
export declare const Content: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
+
export declare const ContentBody: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
+
export declare const ContentFooter: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
4
|
+
export declare const UploadFieldContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
5
|
+
export declare const FlexContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
6
|
+
export declare const Skill: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
7
|
+
export declare const ProgressData: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
8
|
+
export declare const ProgressContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
9
|
+
export declare const UploadData: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
10
|
+
export declare const UploadingHeader: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
11
|
+
export declare const CancelContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default AccountIcon;
|
|
2
|
-
declare const AccountIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const AccountIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default AddIcon;
|
|
2
|
-
declare const AddIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const AddIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CarIcon;
|
|
2
|
-
declare const CarIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const CarIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CheckmarkIcon;
|
|
2
|
-
declare const CheckmarkIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const CheckmarkIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CloseCircleIcon;
|
|
2
|
-
declare const CloseCircleIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const CloseCircleIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CloseIcon;
|
|
2
|
-
declare const CloseIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const CloseIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default DeleteIcon;
|
|
2
|
-
declare const DeleteIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const DeleteIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default Drag;
|
|
2
|
-
declare const Drag: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const Drag: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default HashtagIcon;
|
|
2
|
-
declare const HashtagIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const HashtagIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default LaptopIcon;
|
|
2
|
-
declare const LaptopIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const LaptopIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default LogoCDS;
|
|
2
|
-
declare const LogoCDS: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const LogoCDS: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default LogoGeneral;
|
|
2
|
-
declare const LogoGeneral: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const LogoGeneral: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default SaveIcon;
|
|
2
|
-
declare const SaveIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const SaveIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default SettingsIcon;
|
|
2
|
-
declare const SettingsIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const SettingsIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default SmallLogoIcon;
|
|
2
|
-
declare const SmallLogoIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const SmallLogoIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default VectorIcon;
|
|
2
|
-
declare const VectorIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const VectorIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default VideoIcon;
|
|
2
|
-
declare const VideoIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const VideoIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default VideoIcon;
|
|
2
|
-
declare const VideoIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const VideoIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default ZoomInIcon;
|
|
2
|
-
declare const ZoomInIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const ZoomInIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default ZoomOutIcon;
|
|
2
|
-
declare const ZoomOutIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const ZoomOutIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default PauseIcon;
|
|
2
|
-
declare const PauseIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const PauseIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default PlayIcon;
|
|
2
|
-
declare const PlayIcon: import("styled-components").StyledComponent<any,
|
|
2
|
+
declare const PlayIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -59,8 +59,6 @@ export declare const mediaQueryMaxWidth: {
|
|
|
59
59
|
xxlg: string;
|
|
60
60
|
};
|
|
61
61
|
export declare const palette: {
|
|
62
|
-
primaryThemeColor20Percent: string;
|
|
63
|
-
secondaryBlue10Percent: string;
|
|
64
62
|
grayBorder: string;
|
|
65
63
|
white: string;
|
|
66
64
|
gray: string;
|
|
@@ -68,13 +66,6 @@ export declare const palette: {
|
|
|
68
66
|
blackRgb60: string;
|
|
69
67
|
blackRgba75: string;
|
|
70
68
|
themeDark: string;
|
|
71
|
-
blue80: string;
|
|
72
|
-
blue60: string;
|
|
73
|
-
blue40: string;
|
|
74
|
-
blue20: string;
|
|
75
|
-
blue05: string;
|
|
76
|
-
blue02: string;
|
|
77
|
-
blue100: string;
|
|
78
69
|
gray10: string;
|
|
79
70
|
gray20: string;
|
|
80
71
|
gray40: string;
|
|
@@ -83,17 +74,10 @@ export declare const palette: {
|
|
|
83
74
|
gray100: string;
|
|
84
75
|
transparent: string;
|
|
85
76
|
error: string;
|
|
86
|
-
tertiaryBlue: string;
|
|
87
|
-
tertiaryBlue20: string;
|
|
88
|
-
tertiaryBlue60: string;
|
|
89
|
-
tertiaryBlue80: string;
|
|
90
|
-
orange05: string;
|
|
91
|
-
orange100: string;
|
|
92
77
|
black: string;
|
|
93
78
|
black05: string;
|
|
94
79
|
black25: string;
|
|
95
80
|
black40: string;
|
|
96
|
-
primaryRedDanger: string;
|
|
97
81
|
red02: string;
|
|
98
82
|
red40: string;
|
|
99
83
|
red10: string;
|
|
@@ -101,9 +85,6 @@ export declare const palette: {
|
|
|
101
85
|
whiteRgb85: string;
|
|
102
86
|
primaryDarkBlue: string;
|
|
103
87
|
lightgray40: string;
|
|
104
|
-
covideoBlue100: string;
|
|
105
|
-
covideoBlue40: string;
|
|
106
|
-
covideoBlue005: string;
|
|
107
88
|
covideoGray100: string;
|
|
108
89
|
themeDark50Percent: string;
|
|
109
90
|
themeDark75Percent: string;
|
|
@@ -112,12 +93,7 @@ export declare const palette: {
|
|
|
112
93
|
buttonDanger: string;
|
|
113
94
|
lightgray: string;
|
|
114
95
|
buttonDelete: string;
|
|
115
|
-
buttonDangerHover: string;
|
|
116
|
-
hamburgerMenuHover: string;
|
|
117
|
-
primaryThemeColor: string;
|
|
118
96
|
blackRgb75: string;
|
|
119
|
-
buttonPrimaryHover: string;
|
|
120
|
-
primaryCDSColor: string;
|
|
121
97
|
primaryBlack25Percent: string;
|
|
122
98
|
secondaryBlue: string;
|
|
123
99
|
midGrey: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-covideo-embed",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.31",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Covideo platform as an embeddable React component.",
|
|
6
6
|
"main": "./build/index.js",
|
|
@@ -75,8 +75,8 @@
|
|
|
75
75
|
"rc-progress": "^3.4.1",
|
|
76
76
|
"react-beautiful-dnd": "^13.1.1",
|
|
77
77
|
"react-compound-slider": "^3.4.0",
|
|
78
|
-
"react-covideo-ai-assist": "0.0.
|
|
79
|
-
"react-covideo-common": "0.1.
|
|
78
|
+
"react-covideo-ai-assist": "0.0.33",
|
|
79
|
+
"react-covideo-common": "0.1.58",
|
|
80
80
|
"react-dropzone": "11.3.2",
|
|
81
81
|
"react-full-screen": "^1.1.1",
|
|
82
82
|
"react-icons": "^4.7.1",
|
package/styled.d.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import 'styled-components/macro';
|
|
2
|
+
//types
|
|
3
|
+
|
|
4
|
+
type AvailableColorsType =
|
|
5
|
+
| 'danger'
|
|
6
|
+
| 'success'
|
|
7
|
+
| 'info'
|
|
8
|
+
| 'black'
|
|
9
|
+
| 'white'
|
|
10
|
+
| 'neutral';
|
|
11
|
+
|
|
12
|
+
export interface IThemeColors {
|
|
13
|
+
'5': string;
|
|
14
|
+
'10': string;
|
|
15
|
+
'20': string;
|
|
16
|
+
'40': string;
|
|
17
|
+
'60': string;
|
|
18
|
+
'80': string;
|
|
19
|
+
'100': string;
|
|
20
|
+
non_alpha?: string;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export type IColors = Record<AvailableColorsType, IThemeColors>;
|
|
24
|
+
|
|
25
|
+
export type MainThemeColors = {
|
|
26
|
+
primary: IThemeColors;
|
|
27
|
+
primaryHover: string;
|
|
28
|
+
secondary: IThemeColors & { non_alpha: string };
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
declare module 'styled-components' {
|
|
32
|
+
export interface DefaultTheme {
|
|
33
|
+
colors: IColors & MainThemeColors;
|
|
34
|
+
containerWidth: any;
|
|
35
|
+
containerHeight: any;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { CSSProperties } from 'react';
|
|
2
|
-
type Props = {
|
|
3
|
-
options: {
|
|
4
|
-
value: any;
|
|
5
|
-
label: any;
|
|
6
|
-
}[];
|
|
7
|
-
value: {
|
|
8
|
-
value: any;
|
|
9
|
-
label: any;
|
|
10
|
-
};
|
|
11
|
-
onChange: (value: any) => void;
|
|
12
|
-
isSearchable: boolean;
|
|
13
|
-
extraStyles?: CSSProperties;
|
|
14
|
-
creatable?: boolean;
|
|
15
|
-
isClearable?: boolean;
|
|
16
|
-
disabled?: boolean;
|
|
17
|
-
maxMenuHeight?: number;
|
|
18
|
-
defaultValue?: {
|
|
19
|
-
value: any;
|
|
20
|
-
label: any;
|
|
21
|
-
};
|
|
22
|
-
placeholder?: string;
|
|
23
|
-
controlShouldRenderValue?: boolean;
|
|
24
|
-
customComponents?: {
|
|
25
|
-
Option?: (props: any) => JSX.Element;
|
|
26
|
-
ValueContainer?: (props: any) => JSX.Element;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
export declare const Dropdown: ({ options, value, onChange, isSearchable, extraStyles, creatable, isClearable, disabled, maxMenuHeight, defaultValue, placeholder, controlShouldRenderValue, customComponents, }: Props) => JSX.Element;
|
|
30
|
-
export {};
|
package/images.d.ts
DELETED