@editframe/react 0.8.0-beta.3 → 0.8.0-beta.5

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.
Files changed (52) hide show
  1. package/dist/elements/Audio.d.ts +3 -0
  2. package/dist/elements/Audio.js +11 -0
  3. package/dist/elements/Captions.d.ts +4 -0
  4. package/dist/elements/Captions.js +17 -0
  5. package/dist/elements/Image.d.ts +3 -0
  6. package/dist/elements/Image.js +11 -0
  7. package/dist/elements/Timegroup.d.ts +3 -0
  8. package/dist/elements/Timegroup.js +11 -0
  9. package/dist/elements/Video.d.ts +3 -0
  10. package/dist/elements/Video.js +11 -0
  11. package/dist/elements/Waveform.d.ts +3 -0
  12. package/dist/elements/Waveform.js +11 -0
  13. package/dist/gui/Filmstrip.d.ts +3 -0
  14. package/dist/gui/Filmstrip.js +11 -0
  15. package/dist/gui/ToggleLoop.d.ts +3 -0
  16. package/dist/gui/ToggleLoop.js +11 -0
  17. package/dist/gui/TogglePlay.d.ts +3 -0
  18. package/dist/gui/TogglePlay.js +11 -0
  19. package/dist/gui/Workbench.d.ts +3 -0
  20. package/dist/gui/Workbench.js +11 -0
  21. package/dist/index.d.ts +29 -9
  22. package/dist/index.js +32 -18
  23. package/package.json +2 -2
  24. package/src/elements/{EFAudio.ts → Audio.ts} +1 -1
  25. package/src/elements/{EFCaptions.ts → Captions.ts} +2 -2
  26. package/src/elements/{EFImage.ts → Image.ts} +1 -1
  27. package/src/elements/{EFTimegroup.ts → Timegroup.ts} +1 -1
  28. package/src/elements/{EFVideo.ts → Video.ts} +1 -1
  29. package/src/elements/{EFWaveform.ts → Waveform.ts} +1 -1
  30. package/src/gui/{EFFilmstrip.ts → Filmstrip.ts} +1 -1
  31. package/src/gui/ToggleLoop.ts +9 -0
  32. package/src/gui/TogglePlay.ts +9 -0
  33. package/src/gui/{EFWorkbench.ts → Workbench.ts} +1 -1
  34. package/dist/elements/EFAudio.d.ts +0 -3
  35. package/dist/elements/EFAudio.js +0 -11
  36. package/dist/elements/EFCaptions.d.ts +0 -4
  37. package/dist/elements/EFCaptions.js +0 -17
  38. package/dist/elements/EFImage.d.ts +0 -3
  39. package/dist/elements/EFImage.js +0 -11
  40. package/dist/elements/EFTimegroup.d.ts +0 -3
  41. package/dist/elements/EFTimegroup.js +0 -11
  42. package/dist/elements/EFVideo.d.ts +0 -3
  43. package/dist/elements/EFVideo.js +0 -11
  44. package/dist/elements/EFWaveform.d.ts +0 -3
  45. package/dist/elements/EFWaveform.js +0 -11
  46. package/dist/gui/EFFilmstrip.d.ts +0 -3
  47. package/dist/gui/EFFilmstrip.js +0 -11
  48. package/dist/gui/EFWorkbench.d.ts +0 -3
  49. package/dist/gui/EFWorkbench.js +0 -11
  50. /package/dist/gui/{EFPreview.d.ts → Preview.d.ts} +0 -0
  51. /package/dist/gui/{EFPreview.js → Preview.js} +0 -0
  52. /package/src/gui/{EFPreview.ts → Preview.ts} +0 -0
@@ -0,0 +1,3 @@
1
+ import { EFAudio as EFAudioElement } from '../../../elements/src';
2
+
3
+ export declare const Audio: import('@lit/react').ReactWebComponent<EFAudioElement, {}>;
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+ import { createComponent } from "@lit/react";
3
+ import { EFAudio } from "@editframe/elements";
4
+ const Audio = createComponent({
5
+ tagName: "ef-audio",
6
+ elementClass: EFAudio,
7
+ react: React
8
+ });
9
+ export {
10
+ Audio
11
+ };
@@ -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,3 @@
1
+ import { EFImage as EFImageElement } from '../../../elements/src';
2
+
3
+ export declare const Image: import('@lit/react').ReactWebComponent<EFImageElement, {}>;
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+ import { createComponent } from "@lit/react";
3
+ import { EFImage } from "@editframe/elements";
4
+ const Image = createComponent({
5
+ tagName: "ef-image",
6
+ elementClass: EFImage,
7
+ react: React
8
+ });
9
+ export {
10
+ Image
11
+ };
@@ -0,0 +1,3 @@
1
+ import { EFTimegroup as EFTimegroupElement } from '../../../elements/src';
2
+
3
+ export declare const Timegroup: import('../create-component.ts').ReactWebComponent<EFTimegroupElement, {}>;
@@ -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,3 @@
1
+ import { EFVideo as EFVideoElement } from '../../../elements/src';
2
+
3
+ export declare const Video: import('@lit/react').ReactWebComponent<EFVideoElement, {}>;
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+ import { createComponent } from "@lit/react";
3
+ import { EFVideo } from "@editframe/elements";
4
+ const Video = createComponent({
5
+ tagName: "ef-video",
6
+ elementClass: EFVideo,
7
+ react: React
8
+ });
9
+ export {
10
+ Video
11
+ };
@@ -0,0 +1,3 @@
1
+ import { EFWaveform as EFWaveformElement } from '../../../elements/src';
2
+
3
+ export declare const Waveform: import('@lit/react').ReactWebComponent<EFWaveformElement, {}>;
@@ -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,3 @@
1
+ import { EFFilmstrip as EFFilmstripElement } from '../../../elements/src';
2
+
3
+ export declare const Filmstrip: import('@lit/react').ReactWebComponent<EFFilmstripElement, {}>;
@@ -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,3 @@
1
+ import { EFToggleLoop as EFToggleLoopElement } from '../../../elements/src';
2
+
3
+ export declare const ToggleLoop: import('@lit/react').ReactWebComponent<EFToggleLoopElement, {}>;
@@ -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,3 @@
1
+ import { EFTogglePlay as EFTogglePlayElement } from '../../../elements/src';
2
+
3
+ export declare const TogglePlay: import('@lit/react').ReactWebComponent<EFTogglePlayElement, {}>;
@@ -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,3 @@
1
+ import { EFWorkbench as EFWorkbenchElement } from '../../../elements/src';
2
+
3
+ export declare const Workbench: import('@lit/react').ReactWebComponent<EFWorkbenchElement, {}>;
@@ -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 { EFAudio } from './elements/EFAudio.ts';
2
- export { EFCaptions, EFCaptionsActiveWord } from './elements/EFCaptions.ts';
3
- export { EFImage } from './elements/EFImage.ts';
4
- export { EFTimegroup } from './elements/EFTimegroup.ts';
5
- export { EFVideo } from './elements/EFVideo.ts';
6
- export { EFWaveform } from './elements/EFWaveform.ts';
7
- export { EFWorkbench } from './gui/EFWorkbench.ts';
8
- export { EFFilmstrip } from './gui/EFFilmstrip.ts';
9
- export { EFPreview } from './gui/EFPreview.ts';
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 { EFAudio } from "./elements/EFAudio.js";
2
- import { EFCaptions, EFCaptionsActiveWord } from "./elements/EFCaptions.js";
3
- import { EFImage } from "./elements/EFImage.js";
4
- import { EFTimegroup } from "./elements/EFTimegroup.js";
5
- import { EFVideo } from "./elements/EFVideo.js";
6
- import { EFWaveform } from "./elements/EFWaveform.js";
7
- import { EFWorkbench } from "./gui/EFWorkbench.js";
8
- import { EFFilmstrip } from "./gui/EFFilmstrip.js";
9
- import { EFPreview } from "./gui/EFPreview.js";
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
- EFAudio,
13
- EFCaptions,
14
- EFCaptionsActiveWord,
15
- EFFilmstrip,
16
- EFImage,
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",
3
+ "version": "0.8.0-beta.5",
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.3",
22
+ "@editframe/elements": "0.8.0-beta.5",
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 EFAudio = createComponent({
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 EFCaptions = createComponent({
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 EFCaptionsActiveWord = createComponent({
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 EFImage = createComponent({
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 EFTimegroup = createComponent({
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 EFVideo = createComponent({
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 EFWaveform = createComponent({
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 EFFilmstrip = createComponent({
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 EFWorkbench = createComponent({
5
+ export const Workbench = createComponent({
6
6
  tagName: "ef-workbench",
7
7
  elementClass: EFWorkbenchElement,
8
8
  react: React,
@@ -1,3 +0,0 @@
1
- import { EFAudio as EFAudioElement } from '../../../elements/src';
2
-
3
- export declare const EFAudio: import('@lit/react').ReactWebComponent<EFAudioElement, {}>;
@@ -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
- };
@@ -1,3 +0,0 @@
1
- import { EFImage as EFImageElement } from '../../../elements/src';
2
-
3
- export declare const EFImage: import('@lit/react').ReactWebComponent<EFImageElement, {}>;
@@ -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,3 +0,0 @@
1
- import { EFTimegroup as EFTimegroupElement } from '../../../elements/src';
2
-
3
- export declare const EFTimegroup: import('../create-component.ts').ReactWebComponent<EFTimegroupElement, {}>;
@@ -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
- };
@@ -1,3 +0,0 @@
1
- import { EFVideo as EFVideoElement } from '../../../elements/src';
2
-
3
- export declare const EFVideo: import('@lit/react').ReactWebComponent<EFVideoElement, {}>;
@@ -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,3 +0,0 @@
1
- import { EFWaveform as EFWaveformElement } from '../../../elements/src';
2
-
3
- export declare const EFWaveform: import('@lit/react').ReactWebComponent<EFWaveformElement, {}>;
@@ -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
- };
@@ -1,3 +0,0 @@
1
- import { EFFilmstrip as EFFilmstripElement } from '../../../elements/src';
2
-
3
- export declare const EFFilmstrip: import('@lit/react').ReactWebComponent<EFFilmstripElement, {}>;
@@ -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
- };
@@ -1,3 +0,0 @@
1
- import { EFWorkbench as EFWorkbenchElement } from '../../../elements/src';
2
-
3
- export declare const EFWorkbench: import('@lit/react').ReactWebComponent<EFWorkbenchElement, {}>;
@@ -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