@bylqwjc/react-video-editor 1.0.7 → 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 +1 -1
- package/react.d.ts +2 -1
- package/react.mjs +115 -115
- package/styles.css +1 -1
package/package.json
CHANGED
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;
|