react-covideo-embed 1.0.34 → 1.0.35

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,5 +1,17 @@
1
1
  import { ENVIRONMENT } from 'lib/config';
2
2
  import { ReactNode } from 'react';
3
+ export declare enum WHITELABEL {
4
+ CDK = "cdk"
5
+ }
6
+ export declare enum THEME_NAME {
7
+ AUTOMOTIVE = "automotive",
8
+ COVIDEO = "covideo",
9
+ KENNECTED = "kennected",
10
+ PROVIDEO = "provideo",
11
+ APP_2_VID = "app2vid",
12
+ BRANDING = "branding",
13
+ CDK = "cdk"
14
+ }
3
15
  interface ConfigurationProviderProps {
4
16
  token?: string;
5
17
  env?: ENVIRONMENT;
@@ -21,6 +33,7 @@ interface ConfigurationProviderProps {
21
33
  token: string;
22
34
  }) => void;
23
35
  reRender: () => void;
36
+ whitelabel?: WHITELABEL;
24
37
  }
25
38
  type ShowFeature = {
26
39
  showInsertFeature: boolean;
@@ -0,0 +1,2 @@
1
+ export default CdkLogo;
2
+ declare const CdkLogo: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
@@ -0,0 +1,2 @@
1
+ export default CdkSmallLogo;
2
+ declare const CdkSmallLogo: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
@@ -0,0 +1,2 @@
1
+ export default CovideoLogo;
2
+ declare const CovideoLogo: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
@@ -0,0 +1,2 @@
1
+ export default CovideoSmallLogo;
2
+ declare const CovideoSmallLogo: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-covideo-embed",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
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.58",
79
+ "react-covideo-common": "0.1.62",
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 CHANGED
@@ -31,7 +31,9 @@ export type MainThemeColors = {
31
31
  declare module 'styled-components' {
32
32
  export interface DefaultTheme {
33
33
  colors: IColors & MainThemeColors;
34
- containerWidth: any;
35
- containerHeight: any;
34
+ containerWidth: number;
35
+ containerHeight: number;
36
+ themeName: string;
37
+ isCdkEnviroment: string;
36
38
  }
37
39
  }
@@ -1,2 +0,0 @@
1
- export default LogoCDS;
2
- declare const LogoCDS: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
@@ -1,2 +0,0 @@
1
- export default LogoGeneral;
2
- declare const LogoGeneral: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
@@ -1,2 +0,0 @@
1
- export default NewLogo;
2
- declare const NewLogo: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
@@ -1,2 +0,0 @@
1
- export default SmallLogoIcon;
2
- declare const SmallLogoIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;