@editframe/react 0.8.0-beta.2 → 0.8.0-beta.4
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/dist/elements/Audio.d.ts +3 -0
- package/dist/elements/Audio.js +11 -0
- package/dist/elements/Captions.d.ts +4 -0
- package/dist/elements/Captions.js +17 -0
- package/dist/elements/Image.d.ts +3 -0
- package/dist/elements/Image.js +11 -0
- package/dist/elements/Timegroup.d.ts +3 -0
- package/dist/elements/Timegroup.js +11 -0
- package/dist/elements/Video.d.ts +3 -0
- package/dist/elements/Video.js +11 -0
- package/dist/elements/Waveform.d.ts +3 -0
- package/dist/elements/Waveform.js +11 -0
- package/dist/gui/Filmstrip.d.ts +3 -0
- package/dist/gui/Filmstrip.js +11 -0
- package/dist/gui/ToggleLoop.d.ts +3 -0
- package/dist/gui/ToggleLoop.js +11 -0
- package/dist/gui/TogglePlay.d.ts +3 -0
- package/dist/gui/TogglePlay.js +11 -0
- package/dist/gui/Workbench.d.ts +3 -0
- package/dist/gui/Workbench.js +11 -0
- package/dist/index.d.ts +29 -9
- package/dist/index.js +32 -18
- package/package.json +2 -2
- package/src/elements/{EFAudio.ts → Audio.ts} +1 -1
- package/src/elements/{EFCaptions.ts → Captions.ts} +2 -2
- package/src/elements/{EFImage.ts → Image.ts} +1 -1
- package/src/elements/{EFTimegroup.ts → Timegroup.ts} +1 -1
- package/src/elements/{EFVideo.ts → Video.ts} +1 -1
- package/src/elements/{EFWaveform.ts → Waveform.ts} +1 -1
- package/src/gui/{EFFilmstrip.ts → Filmstrip.ts} +1 -1
- package/src/gui/ToggleLoop.ts +9 -0
- package/src/gui/TogglePlay.ts +9 -0
- package/src/gui/{EFWorkbench.ts → Workbench.ts} +1 -1
- package/dist/elements/EFAudio.d.ts +0 -3
- package/dist/elements/EFAudio.js +0 -11
- package/dist/elements/EFCaptions.d.ts +0 -4
- package/dist/elements/EFCaptions.js +0 -17
- package/dist/elements/EFImage.d.ts +0 -3
- package/dist/elements/EFImage.js +0 -11
- package/dist/elements/EFTimegroup.d.ts +0 -3
- package/dist/elements/EFTimegroup.js +0 -11
- package/dist/elements/EFVideo.d.ts +0 -3
- package/dist/elements/EFVideo.js +0 -11
- package/dist/elements/EFWaveform.d.ts +0 -3
- package/dist/elements/EFWaveform.js +0 -11
- package/dist/gui/EFFilmstrip.d.ts +0 -3
- package/dist/gui/EFFilmstrip.js +0 -11
- package/dist/gui/EFWorkbench.d.ts +0 -3
- package/dist/gui/EFWorkbench.js +0 -11
- /package/dist/gui/{EFPreview.d.ts → Preview.d.ts} +0 -0
- /package/dist/gui/{EFPreview.js → Preview.js} +0 -0
- /package/src/gui/{EFPreview.ts → Preview.ts} +0 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { EFCaptions as EFCaptionsElement, EFCaptionsActiveWord as EFCaptionsActiveWordElement } from '../../../elements/src';
|
|
2
|
+
|
|
3
|
+
export declare const Captions: import('@lit/react').ReactWebComponent<EFCaptionsElement, {}>;
|
|
4
|
+
export declare const CaptionsActiveWord: import('@lit/react').ReactWebComponent<EFCaptionsActiveWordElement, {}>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createComponent } from "@lit/react";
|
|
3
|
+
import { EFCaptions, EFCaptionsActiveWord } from "@editframe/elements";
|
|
4
|
+
const Captions = createComponent({
|
|
5
|
+
tagName: "ef-captions",
|
|
6
|
+
elementClass: EFCaptions,
|
|
7
|
+
react: React
|
|
8
|
+
});
|
|
9
|
+
const CaptionsActiveWord = createComponent({
|
|
10
|
+
tagName: "ef-captions-active-word",
|
|
11
|
+
elementClass: EFCaptionsActiveWord,
|
|
12
|
+
react: React
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
Captions,
|
|
16
|
+
CaptionsActiveWord
|
|
17
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createComponent } from "../create-component.js";
|
|
3
|
+
import { EFTimegroup } from "@editframe/elements";
|
|
4
|
+
const Timegroup = createComponent({
|
|
5
|
+
tagName: "ef-timegroup",
|
|
6
|
+
elementClass: EFTimegroup,
|
|
7
|
+
react: React
|
|
8
|
+
});
|
|
9
|
+
export {
|
|
10
|
+
Timegroup
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createComponent } from "@lit/react";
|
|
3
|
+
import { EFWaveform } from "@editframe/elements";
|
|
4
|
+
const Waveform = createComponent({
|
|
5
|
+
tagName: "ef-waveform",
|
|
6
|
+
elementClass: EFWaveform,
|
|
7
|
+
react: React
|
|
8
|
+
});
|
|
9
|
+
export {
|
|
10
|
+
Waveform
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createComponent } from "@lit/react";
|
|
3
|
+
import { EFFilmstrip } from "@editframe/elements";
|
|
4
|
+
const Filmstrip = createComponent({
|
|
5
|
+
tagName: "ef-filmstrip",
|
|
6
|
+
elementClass: EFFilmstrip,
|
|
7
|
+
react: React
|
|
8
|
+
});
|
|
9
|
+
export {
|
|
10
|
+
Filmstrip
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createComponent } from "@lit/react";
|
|
3
|
+
import { EFToggleLoop } from "@editframe/elements";
|
|
4
|
+
const ToggleLoop = createComponent({
|
|
5
|
+
tagName: "ef-toggle-loop",
|
|
6
|
+
elementClass: EFToggleLoop,
|
|
7
|
+
react: React
|
|
8
|
+
});
|
|
9
|
+
export {
|
|
10
|
+
ToggleLoop
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createComponent } from "@lit/react";
|
|
3
|
+
import { EFTogglePlay } from "@editframe/elements";
|
|
4
|
+
const TogglePlay = createComponent({
|
|
5
|
+
tagName: "ef-toggle-play",
|
|
6
|
+
elementClass: EFTogglePlay,
|
|
7
|
+
react: React
|
|
8
|
+
});
|
|
9
|
+
export {
|
|
10
|
+
TogglePlay
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createComponent } from "@lit/react";
|
|
3
|
+
import { EFWorkbench } from "@editframe/elements";
|
|
4
|
+
const Workbench = createComponent({
|
|
5
|
+
tagName: "ef-workbench",
|
|
6
|
+
elementClass: EFWorkbench,
|
|
7
|
+
react: React
|
|
8
|
+
});
|
|
9
|
+
export {
|
|
10
|
+
Workbench
|
|
11
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,30 @@
|
|
|
1
|
-
export {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
export {
|
|
1
|
+
export {
|
|
2
|
+
/** @deprecated Use `Audio` instead of `EFAudio`. Exports starting `EF*` wil be removed in a future release. */
|
|
3
|
+
Audio as EFAudio, Audio, } from './elements/Audio.ts';
|
|
4
|
+
export {
|
|
5
|
+
/** @deprecated Use `Captions` instead of `EFCaptions`. Exports starting `EF*` wil be removed in a future release. */
|
|
6
|
+
Captions as EFCaptions, Captions,
|
|
7
|
+
/** @deprecated Use `CaptionsActiveWord` instead of `EFCaptionsActiveWord`. Exports starting `EF*` wil be removed in a future release. */
|
|
8
|
+
CaptionsActiveWord as EFCaptionsActiveWord, CaptionsActiveWord, } from './elements/Captions.ts';
|
|
9
|
+
export { Image as EFImage, Image, } from './elements/Image.ts';
|
|
10
|
+
export {
|
|
11
|
+
/** @deprecated Use `Timegroup` instead of `EFTimegroup`. Exports starting `EF*` wil be removed in a future release. */
|
|
12
|
+
Timegroup as EFTimegroup, Timegroup, } from './elements/Timegroup.ts';
|
|
13
|
+
export {
|
|
14
|
+
/** @deprecated Use `Video` instead of `EFVideo`. Exports starting `EF*` wil be removed in a future release. */
|
|
15
|
+
Video as EFVideo, Video, } from './elements/Video.ts';
|
|
16
|
+
export {
|
|
17
|
+
/** @deprecated Use `Waveform` instead of `EFWaveform`. Exports starting `EF*` wil be removed in a future release. */
|
|
18
|
+
Waveform as EFWaveform, Waveform, } from './elements/Waveform.ts';
|
|
19
|
+
export {
|
|
20
|
+
/** @deprecated Use `Workbench` instead of `EFWorkbench`. Exports starting `EF*` wil be removed in a future release. */
|
|
21
|
+
Workbench as EFWorkbench, Workbench, } from './gui/Workbench.ts';
|
|
22
|
+
export {
|
|
23
|
+
/** @deprecated Use `Filmstrip` instead of `EFFilmstrip`. Exports starting `EF*` wil be removed in a future release. */
|
|
24
|
+
Filmstrip as EFFilmstrip, Filmstrip, } from './gui/Filmstrip.ts';
|
|
25
|
+
export {
|
|
26
|
+
/** @deprecated Use `Preview` instead of `EFPreview`. Exports starting `EF*` wil be removed in a future release. */
|
|
27
|
+
EFPreview, EFPreview as Preview, } from './gui/Preview.ts';
|
|
28
|
+
export { TogglePlay } from './gui/TogglePlay.ts';
|
|
29
|
+
export { ToggleLoop } from './gui/ToggleLoop.ts';
|
|
10
30
|
export { useTimingInfo } from './hooks/useTimingInfo.ts';
|
package/dist/index.js
CHANGED
|
@@ -1,23 +1,37 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { EFPreview } from "./gui/
|
|
1
|
+
import { Audio, Audio as Audio2 } from "./elements/Audio.js";
|
|
2
|
+
import { Captions, CaptionsActiveWord, Captions as Captions2, CaptionsActiveWord as CaptionsActiveWord2 } from "./elements/Captions.js";
|
|
3
|
+
import { Image, Image as Image2 } from "./elements/Image.js";
|
|
4
|
+
import { Timegroup, Timegroup as Timegroup2 } from "./elements/Timegroup.js";
|
|
5
|
+
import { Video, Video as Video2 } from "./elements/Video.js";
|
|
6
|
+
import { Waveform, Waveform as Waveform2 } from "./elements/Waveform.js";
|
|
7
|
+
import { Workbench, Workbench as Workbench2 } from "./gui/Workbench.js";
|
|
8
|
+
import { Filmstrip, Filmstrip as Filmstrip2 } from "./gui/Filmstrip.js";
|
|
9
|
+
import { EFPreview, EFPreview as EFPreview2 } from "./gui/Preview.js";
|
|
10
|
+
import { TogglePlay } from "./gui/TogglePlay.js";
|
|
11
|
+
import { ToggleLoop } from "./gui/ToggleLoop.js";
|
|
10
12
|
import { useTimingInfo } from "./hooks/useTimingInfo.js";
|
|
11
13
|
export {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
Audio,
|
|
15
|
+
Captions,
|
|
16
|
+
CaptionsActiveWord,
|
|
17
|
+
Audio2 as EFAudio,
|
|
18
|
+
Captions2 as EFCaptions,
|
|
19
|
+
CaptionsActiveWord2 as EFCaptionsActiveWord,
|
|
20
|
+
Filmstrip as EFFilmstrip,
|
|
21
|
+
Image as EFImage,
|
|
17
22
|
EFPreview,
|
|
18
|
-
EFTimegroup,
|
|
19
|
-
EFVideo,
|
|
20
|
-
EFWaveform,
|
|
21
|
-
EFWorkbench,
|
|
23
|
+
Timegroup as EFTimegroup,
|
|
24
|
+
Video as EFVideo,
|
|
25
|
+
Waveform as EFWaveform,
|
|
26
|
+
Workbench as EFWorkbench,
|
|
27
|
+
Filmstrip2 as Filmstrip,
|
|
28
|
+
Image2 as Image,
|
|
29
|
+
EFPreview2 as Preview,
|
|
30
|
+
Timegroup2 as Timegroup,
|
|
31
|
+
ToggleLoop,
|
|
32
|
+
TogglePlay,
|
|
33
|
+
Video2 as Video,
|
|
34
|
+
Waveform2 as Waveform,
|
|
35
|
+
Workbench2 as Workbench,
|
|
22
36
|
useTimingInfo
|
|
23
37
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@editframe/react",
|
|
3
|
-
"version": "0.8.0-beta.
|
|
3
|
+
"version": "0.8.0-beta.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"author": "",
|
|
20
20
|
"license": "UNLICENSED",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@editframe/elements": "0.8.0-beta.
|
|
22
|
+
"@editframe/elements": "0.8.0-beta.4",
|
|
23
23
|
"@lit/react": "^1.0.5",
|
|
24
24
|
"debug": "^4.3.5",
|
|
25
25
|
"react": "^18.3.0",
|
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import { createComponent } from "@lit/react";
|
|
3
3
|
import { EFAudio as EFAudioElement } from "@editframe/elements";
|
|
4
4
|
|
|
5
|
-
export const
|
|
5
|
+
export const Audio = createComponent({
|
|
6
6
|
tagName: "ef-audio",
|
|
7
7
|
elementClass: EFAudioElement,
|
|
8
8
|
react: React,
|
|
@@ -5,13 +5,13 @@ import {
|
|
|
5
5
|
EFCaptionsActiveWord as EFCaptionsActiveWordElement,
|
|
6
6
|
} from "@editframe/elements";
|
|
7
7
|
|
|
8
|
-
export const
|
|
8
|
+
export const Captions = createComponent({
|
|
9
9
|
tagName: "ef-captions",
|
|
10
10
|
elementClass: EFCaptionsElement,
|
|
11
11
|
react: React,
|
|
12
12
|
});
|
|
13
13
|
|
|
14
|
-
export const
|
|
14
|
+
export const CaptionsActiveWord = createComponent({
|
|
15
15
|
tagName: "ef-captions-active-word",
|
|
16
16
|
elementClass: EFCaptionsActiveWordElement,
|
|
17
17
|
react: React,
|
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import { createComponent } from "@lit/react";
|
|
3
3
|
import { EFImage as EFImageElement } from "@editframe/elements";
|
|
4
4
|
|
|
5
|
-
export const
|
|
5
|
+
export const Image = createComponent({
|
|
6
6
|
tagName: "ef-image",
|
|
7
7
|
elementClass: EFImageElement,
|
|
8
8
|
react: React,
|
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import { createComponent } from "../create-component.ts";
|
|
3
3
|
import { EFTimegroup as EFTimegroupElement } from "@editframe/elements";
|
|
4
4
|
|
|
5
|
-
export const
|
|
5
|
+
export const Timegroup = createComponent({
|
|
6
6
|
tagName: "ef-timegroup",
|
|
7
7
|
elementClass: EFTimegroupElement,
|
|
8
8
|
react: React,
|
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import { createComponent } from "@lit/react";
|
|
3
3
|
import { EFVideo as EFVideoElement } from "@editframe/elements";
|
|
4
4
|
|
|
5
|
-
export const
|
|
5
|
+
export const Video = createComponent({
|
|
6
6
|
tagName: "ef-video",
|
|
7
7
|
elementClass: EFVideoElement,
|
|
8
8
|
react: React,
|
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import { createComponent } from "@lit/react";
|
|
3
3
|
import { EFWaveform as EFWaveformElement } from "@editframe/elements";
|
|
4
4
|
|
|
5
|
-
export const
|
|
5
|
+
export const Waveform = createComponent({
|
|
6
6
|
tagName: "ef-waveform",
|
|
7
7
|
elementClass: EFWaveformElement,
|
|
8
8
|
react: React,
|
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import { createComponent } from "@lit/react";
|
|
3
3
|
import { EFFilmstrip as EFFilmstripElement } from "@editframe/elements";
|
|
4
4
|
|
|
5
|
-
export const
|
|
5
|
+
export const Filmstrip = createComponent({
|
|
6
6
|
tagName: "ef-filmstrip",
|
|
7
7
|
elementClass: EFFilmstripElement,
|
|
8
8
|
react: React,
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createComponent } from "@lit/react";
|
|
3
|
+
import { EFToggleLoop as EFToggleLoopElement } from "@editframe/elements";
|
|
4
|
+
|
|
5
|
+
export const ToggleLoop = createComponent({
|
|
6
|
+
tagName: "ef-toggle-loop",
|
|
7
|
+
elementClass: EFToggleLoopElement,
|
|
8
|
+
react: React,
|
|
9
|
+
});
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createComponent } from "@lit/react";
|
|
3
|
+
import { EFTogglePlay as EFTogglePlayElement } from "@editframe/elements";
|
|
4
|
+
|
|
5
|
+
export const TogglePlay = createComponent({
|
|
6
|
+
tagName: "ef-toggle-play",
|
|
7
|
+
elementClass: EFTogglePlayElement,
|
|
8
|
+
react: React,
|
|
9
|
+
});
|
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import { createComponent } from "@lit/react";
|
|
3
3
|
import { EFWorkbench as EFWorkbenchElement } from "@editframe/elements";
|
|
4
4
|
|
|
5
|
-
export const
|
|
5
|
+
export const Workbench = createComponent({
|
|
6
6
|
tagName: "ef-workbench",
|
|
7
7
|
elementClass: EFWorkbenchElement,
|
|
8
8
|
react: React,
|
package/dist/elements/EFAudio.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { createComponent } from "@lit/react";
|
|
3
|
-
import { EFAudio as EFAudio$1 } from "@editframe/elements";
|
|
4
|
-
const EFAudio = createComponent({
|
|
5
|
-
tagName: "ef-audio",
|
|
6
|
-
elementClass: EFAudio$1,
|
|
7
|
-
react: React
|
|
8
|
-
});
|
|
9
|
-
export {
|
|
10
|
-
EFAudio
|
|
11
|
-
};
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { EFCaptions as EFCaptionsElement, EFCaptionsActiveWord as EFCaptionsActiveWordElement } from '../../../elements/src';
|
|
2
|
-
|
|
3
|
-
export declare const EFCaptions: import('@lit/react').ReactWebComponent<EFCaptionsElement, {}>;
|
|
4
|
-
export declare const EFCaptionsActiveWord: import('@lit/react').ReactWebComponent<EFCaptionsActiveWordElement, {}>;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { createComponent } from "@lit/react";
|
|
3
|
-
import { EFCaptions as EFCaptions$1, EFCaptionsActiveWord as EFCaptionsActiveWord$1 } from "@editframe/elements";
|
|
4
|
-
const EFCaptions = createComponent({
|
|
5
|
-
tagName: "ef-captions",
|
|
6
|
-
elementClass: EFCaptions$1,
|
|
7
|
-
react: React
|
|
8
|
-
});
|
|
9
|
-
const EFCaptionsActiveWord = createComponent({
|
|
10
|
-
tagName: "ef-captions-active-word",
|
|
11
|
-
elementClass: EFCaptionsActiveWord$1,
|
|
12
|
-
react: React
|
|
13
|
-
});
|
|
14
|
-
export {
|
|
15
|
-
EFCaptions,
|
|
16
|
-
EFCaptionsActiveWord
|
|
17
|
-
};
|
package/dist/elements/EFImage.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { createComponent } from "@lit/react";
|
|
3
|
-
import { EFImage as EFImage$1 } from "@editframe/elements";
|
|
4
|
-
const EFImage = createComponent({
|
|
5
|
-
tagName: "ef-image",
|
|
6
|
-
elementClass: EFImage$1,
|
|
7
|
-
react: React
|
|
8
|
-
});
|
|
9
|
-
export {
|
|
10
|
-
EFImage
|
|
11
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { createComponent } from "../create-component.js";
|
|
3
|
-
import { EFTimegroup as EFTimegroup$1 } from "@editframe/elements";
|
|
4
|
-
const EFTimegroup = createComponent({
|
|
5
|
-
tagName: "ef-timegroup",
|
|
6
|
-
elementClass: EFTimegroup$1,
|
|
7
|
-
react: React
|
|
8
|
-
});
|
|
9
|
-
export {
|
|
10
|
-
EFTimegroup
|
|
11
|
-
};
|
package/dist/elements/EFVideo.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { createComponent } from "@lit/react";
|
|
3
|
-
import { EFVideo as EFVideo$1 } from "@editframe/elements";
|
|
4
|
-
const EFVideo = createComponent({
|
|
5
|
-
tagName: "ef-video",
|
|
6
|
-
elementClass: EFVideo$1,
|
|
7
|
-
react: React
|
|
8
|
-
});
|
|
9
|
-
export {
|
|
10
|
-
EFVideo
|
|
11
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { createComponent } from "@lit/react";
|
|
3
|
-
import { EFWaveform as EFWaveform$1 } from "@editframe/elements";
|
|
4
|
-
const EFWaveform = createComponent({
|
|
5
|
-
tagName: "ef-waveform",
|
|
6
|
-
elementClass: EFWaveform$1,
|
|
7
|
-
react: React
|
|
8
|
-
});
|
|
9
|
-
export {
|
|
10
|
-
EFWaveform
|
|
11
|
-
};
|
package/dist/gui/EFFilmstrip.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { createComponent } from "@lit/react";
|
|
3
|
-
import { EFFilmstrip as EFFilmstrip$1 } from "@editframe/elements";
|
|
4
|
-
const EFFilmstrip = createComponent({
|
|
5
|
-
tagName: "ef-filmstrip",
|
|
6
|
-
elementClass: EFFilmstrip$1,
|
|
7
|
-
react: React
|
|
8
|
-
});
|
|
9
|
-
export {
|
|
10
|
-
EFFilmstrip
|
|
11
|
-
};
|
package/dist/gui/EFWorkbench.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { createComponent } from "@lit/react";
|
|
3
|
-
import { EFWorkbench as EFWorkbench$1 } from "@editframe/elements";
|
|
4
|
-
const EFWorkbench = createComponent({
|
|
5
|
-
tagName: "ef-workbench",
|
|
6
|
-
elementClass: EFWorkbench$1,
|
|
7
|
-
react: React
|
|
8
|
-
});
|
|
9
|
-
export {
|
|
10
|
-
EFWorkbench
|
|
11
|
-
};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|