@bylqwjc/react-video-editor 1.0.6 → 1.0.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bylqwjc/react-video-editor",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "React build of the video editor with peer React dependencies.",
5
5
  "private": false,
6
6
  "main": "./react.mjs",
package/react.d.ts CHANGED
@@ -7,6 +7,7 @@ export interface EditorProps {
7
7
  showNavbar?: boolean;
8
8
  className?: string;
9
9
  onClose?: () => void;
10
+ apiBaseUrl?: string;
10
11
  }
11
12
 
12
13
  declare const Editor: (props: EditorProps) => JSX.Element;
@@ -24,7 +25,7 @@ export declare function VideoEditorProvider(
24
25
  ): JSX.Element;
25
26
 
26
27
  export interface VideoEditorModalProps
27
- extends Pick<EditorProps, "tempId" | "id" | "showNavbar"> {
28
+ extends Pick<EditorProps, "tempId" | "id" | "showNavbar" | "apiBaseUrl"> {
28
29
  trigger?: ReactNode;
29
30
  open?: boolean;
30
31
  defaultOpen?: boolean;