@editframe/react 0.24.1-beta.0 → 0.25.1-beta.0

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 (79) hide show
  1. package/dist/components/TimeDisplay.d.ts +8 -0
  2. package/dist/components/TimeDisplay.js +10 -7
  3. package/dist/components/TimeDisplay.js.map +1 -0
  4. package/dist/elements/Audio.d.ts +8 -2
  5. package/dist/elements/Audio.js +10 -7
  6. package/dist/elements/Audio.js.map +1 -0
  7. package/dist/elements/Captions.d.ts +12 -6
  8. package/dist/elements/Captions.js +23 -24
  9. package/dist/elements/Captions.js.map +1 -0
  10. package/dist/elements/Image.d.ts +8 -2
  11. package/dist/elements/Image.js +10 -7
  12. package/dist/elements/Image.js.map +1 -0
  13. package/dist/elements/Surface.d.ts +8 -2
  14. package/dist/elements/Surface.js +12 -9
  15. package/dist/elements/Surface.js.map +1 -0
  16. package/dist/elements/ThumbnailStrip.d.ts +8 -2
  17. package/dist/elements/ThumbnailStrip.js +12 -9
  18. package/dist/elements/ThumbnailStrip.js.map +1 -0
  19. package/dist/elements/Timegroup.d.ts +8 -2
  20. package/dist/elements/Timegroup.js +10 -7
  21. package/dist/elements/Timegroup.js.map +1 -0
  22. package/dist/elements/Video.d.ts +8 -2
  23. package/dist/elements/Video.js +10 -7
  24. package/dist/elements/Video.js.map +1 -0
  25. package/dist/elements/Waveform.d.ts +8 -2
  26. package/dist/elements/Waveform.js +10 -7
  27. package/dist/elements/Waveform.js.map +1 -0
  28. package/dist/gui/Configuration.d.ts +8 -2
  29. package/dist/gui/Configuration.js +10 -7
  30. package/dist/gui/Configuration.js.map +1 -0
  31. package/dist/gui/Controls.d.ts +8 -2
  32. package/dist/gui/Controls.js +10 -7
  33. package/dist/gui/Controls.js.map +1 -0
  34. package/dist/gui/EFDial.d.ts +9 -3
  35. package/dist/gui/EFDial.js +11 -10
  36. package/dist/gui/EFDial.js.map +1 -0
  37. package/dist/gui/EFResizableBox.d.ts +9 -3
  38. package/dist/gui/EFResizableBox.js +11 -10
  39. package/dist/gui/EFResizableBox.js.map +1 -0
  40. package/dist/gui/Filmstrip.d.ts +8 -2
  41. package/dist/gui/Filmstrip.js +10 -7
  42. package/dist/gui/Filmstrip.js.map +1 -0
  43. package/dist/gui/FitScale.d.ts +8 -2
  44. package/dist/gui/FitScale.js +10 -7
  45. package/dist/gui/FitScale.js.map +1 -0
  46. package/dist/gui/FocusOverlay.d.ts +8 -2
  47. package/dist/gui/FocusOverlay.js +10 -7
  48. package/dist/gui/FocusOverlay.js.map +1 -0
  49. package/dist/gui/Pause.d.ts +8 -2
  50. package/dist/gui/Pause.js +10 -7
  51. package/dist/gui/Pause.js.map +1 -0
  52. package/dist/gui/Play.d.ts +8 -2
  53. package/dist/gui/Play.js +10 -7
  54. package/dist/gui/Play.js.map +1 -0
  55. package/dist/gui/Preview.d.ts +8 -2
  56. package/dist/gui/Preview.js +10 -7
  57. package/dist/gui/Preview.js.map +1 -0
  58. package/dist/gui/Scrubber.d.ts +8 -2
  59. package/dist/gui/Scrubber.js +10 -7
  60. package/dist/gui/Scrubber.js.map +1 -0
  61. package/dist/gui/ToggleLoop.d.ts +8 -2
  62. package/dist/gui/ToggleLoop.js +10 -7
  63. package/dist/gui/ToggleLoop.js.map +1 -0
  64. package/dist/gui/TogglePlay.d.ts +8 -2
  65. package/dist/gui/TogglePlay.js +10 -7
  66. package/dist/gui/TogglePlay.js.map +1 -0
  67. package/dist/gui/Workbench.d.ts +8 -2
  68. package/dist/gui/Workbench.js +10 -7
  69. package/dist/gui/Workbench.js.map +1 -0
  70. package/dist/hooks/create-element.d.ts +9 -18
  71. package/dist/hooks/create-element.js +72 -94
  72. package/dist/hooks/create-element.js.map +1 -0
  73. package/dist/hooks/useTimingInfo.d.ts +12 -6
  74. package/dist/hooks/useTimingInfo.js +63 -66
  75. package/dist/hooks/useTimingInfo.js.map +1 -0
  76. package/dist/index.d.ts +25 -24
  77. package/dist/index.js +2 -30
  78. package/package.json +24 -12
  79. package/tsdown.config.ts +55 -0
@@ -0,0 +1,8 @@
1
+ import { ReactWebComponent } from "../hooks/create-element.js";
2
+ import { EFTimeDisplay } from "@editframe/elements";
3
+
4
+ //#region src/components/TimeDisplay.d.ts
5
+ declare const TimeDisplay: ReactWebComponent<EFTimeDisplay, {}>;
6
+ //#endregion
7
+ export { TimeDisplay };
8
+ //# sourceMappingURL=TimeDisplay.d.ts.map
@@ -1,11 +1,14 @@
1
+ import { createComponent } from "../hooks/create-element.js";
1
2
  import { EFTimeDisplay } from "@editframe/elements";
2
3
  import React from "react";
3
- import { createComponent } from "../hooks/create-element.js";
4
+
5
+ //#region src/components/TimeDisplay.tsx
4
6
  const TimeDisplay = createComponent({
5
- tagName: "ef-time-display",
6
- elementClass: EFTimeDisplay,
7
- react: React
7
+ tagName: "ef-time-display",
8
+ elementClass: EFTimeDisplay,
9
+ react: React
8
10
  });
9
- export {
10
- TimeDisplay
11
- };
11
+
12
+ //#endregion
13
+ export { TimeDisplay };
14
+ //# sourceMappingURL=TimeDisplay.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TimeDisplay.js","names":[],"sources":["../../src/components/TimeDisplay.tsx"],"sourcesContent":["import { EFTimeDisplay } from \"@editframe/elements\";\nimport React from \"react\";\nimport { createComponent } from \"../hooks/create-element\";\n\nexport const TimeDisplay = createComponent({\n tagName: \"ef-time-display\",\n elementClass: EFTimeDisplay,\n react: React,\n});\n\nexport type TimeDisplayProps = {\n className?: string;\n};\n"],"mappings":";;;;;AAIA,MAAa,cAAc,gBAAgB;CACzC,SAAS;CACT,cAAc;CACd,OAAO;CACR,CAAC"}
@@ -1,2 +1,8 @@
1
- import { EFAudio as EFAudioElement } from '../../../elements/src/index.ts';
2
- export declare const Audio: import('../hooks/create-element').ReactWebComponent<EFAudioElement, {}>;
1
+ import { ReactWebComponent } from "../hooks/create-element.js";
2
+ import { EFAudio } from "@editframe/elements";
3
+
4
+ //#region src/elements/Audio.d.ts
5
+ declare const Audio: ReactWebComponent<EFAudio, {}>;
6
+ //#endregion
7
+ export { Audio };
8
+ //# sourceMappingURL=Audio.d.ts.map
@@ -1,11 +1,14 @@
1
+ import { createComponent } from "../hooks/create-element.js";
1
2
  import { EFAudio } from "@editframe/elements";
2
3
  import React from "react";
3
- import { createComponent } from "../hooks/create-element.js";
4
+
5
+ //#region src/elements/Audio.ts
4
6
  const Audio = createComponent({
5
- tagName: "ef-audio",
6
- elementClass: EFAudio,
7
- react: React
7
+ tagName: "ef-audio",
8
+ elementClass: EFAudio,
9
+ react: React
8
10
  });
9
- export {
10
- Audio
11
- };
11
+
12
+ //#endregion
13
+ export { Audio };
14
+ //# sourceMappingURL=Audio.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Audio.js","names":["EFAudioElement"],"sources":["../../src/elements/Audio.ts"],"sourcesContent":["import { EFAudio as EFAudioElement } from \"@editframe/elements\";\nimport React from \"react\";\nimport { createComponent } from \"../hooks/create-element\";\n\nexport const Audio = createComponent({\n tagName: \"ef-audio\",\n elementClass: EFAudioElement,\n react: React,\n});\n"],"mappings":";;;;;AAIA,MAAa,QAAQ,gBAAgB;CACnC,SAAS;CACT,cAAcA;CACd,OAAO;CACR,CAAC"}
@@ -1,6 +1,12 @@
1
- import { EFCaptionsActiveWord as EFCaptionsActiveWordElement, EFCaptionsAfterActiveWord as EFCaptionsAfterActiveWordElement, EFCaptionsBeforeActiveWord as EFCaptionsBeforeActiveWordElement, EFCaptions as EFCaptionsElement, EFCaptionsSegment as EFCaptionsSegmentElement } from '../../../elements/src/index.ts';
2
- export declare const Captions: import('../hooks/create-element').ReactWebComponent<EFCaptionsElement, {}>;
3
- export declare const CaptionsActiveWord: import('../hooks/create-element').ReactWebComponent<EFCaptionsActiveWordElement, {}>;
4
- export declare const CaptionsSegment: import('../hooks/create-element').ReactWebComponent<EFCaptionsSegmentElement, {}>;
5
- export declare const CaptionsBeforeActiveWord: import('../hooks/create-element').ReactWebComponent<EFCaptionsBeforeActiveWordElement, {}>;
6
- export declare const CaptionsAfterActiveWord: import('../hooks/create-element').ReactWebComponent<EFCaptionsAfterActiveWordElement, {}>;
1
+ import { ReactWebComponent } from "../hooks/create-element.js";
2
+ import { EFCaptions, EFCaptionsActiveWord, EFCaptionsAfterActiveWord, EFCaptionsBeforeActiveWord, EFCaptionsSegment } from "@editframe/elements";
3
+
4
+ //#region src/elements/Captions.d.ts
5
+ declare const Captions: ReactWebComponent<EFCaptions, {}>;
6
+ declare const CaptionsActiveWord: ReactWebComponent<EFCaptionsActiveWord, {}>;
7
+ declare const CaptionsSegment: ReactWebComponent<EFCaptionsSegment, {}>;
8
+ declare const CaptionsBeforeActiveWord: ReactWebComponent<EFCaptionsBeforeActiveWord, {}>;
9
+ declare const CaptionsAfterActiveWord: ReactWebComponent<EFCaptionsAfterActiveWord, {}>;
10
+ //#endregion
11
+ export { Captions, CaptionsActiveWord, CaptionsAfterActiveWord, CaptionsBeforeActiveWord, CaptionsSegment };
12
+ //# sourceMappingURL=Captions.d.ts.map
@@ -1,35 +1,34 @@
1
- import { EFCaptions, EFCaptionsActiveWord, EFCaptionsSegment, EFCaptionsBeforeActiveWord, EFCaptionsAfterActiveWord } from "@editframe/elements";
2
- import React from "react";
3
1
  import { createComponent } from "../hooks/create-element.js";
2
+ import { EFCaptions, EFCaptionsActiveWord, EFCaptionsAfterActiveWord, EFCaptionsBeforeActiveWord, EFCaptionsSegment } from "@editframe/elements";
3
+ import React from "react";
4
+
5
+ //#region src/elements/Captions.ts
4
6
  const Captions = createComponent({
5
- tagName: "ef-captions",
6
- elementClass: EFCaptions,
7
- react: React
7
+ tagName: "ef-captions",
8
+ elementClass: EFCaptions,
9
+ react: React
8
10
  });
9
11
  const CaptionsActiveWord = createComponent({
10
- tagName: "ef-captions-active-word",
11
- elementClass: EFCaptionsActiveWord,
12
- react: React
12
+ tagName: "ef-captions-active-word",
13
+ elementClass: EFCaptionsActiveWord,
14
+ react: React
13
15
  });
14
16
  const CaptionsSegment = createComponent({
15
- tagName: "ef-captions-segment",
16
- elementClass: EFCaptionsSegment,
17
- react: React
17
+ tagName: "ef-captions-segment",
18
+ elementClass: EFCaptionsSegment,
19
+ react: React
18
20
  });
19
21
  const CaptionsBeforeActiveWord = createComponent({
20
- tagName: "ef-captions-before-active-word",
21
- elementClass: EFCaptionsBeforeActiveWord,
22
- react: React
22
+ tagName: "ef-captions-before-active-word",
23
+ elementClass: EFCaptionsBeforeActiveWord,
24
+ react: React
23
25
  });
24
26
  const CaptionsAfterActiveWord = createComponent({
25
- tagName: "ef-captions-after-active-word",
26
- elementClass: EFCaptionsAfterActiveWord,
27
- react: React
27
+ tagName: "ef-captions-after-active-word",
28
+ elementClass: EFCaptionsAfterActiveWord,
29
+ react: React
28
30
  });
29
- export {
30
- Captions,
31
- CaptionsActiveWord,
32
- CaptionsAfterActiveWord,
33
- CaptionsBeforeActiveWord,
34
- CaptionsSegment
35
- };
31
+
32
+ //#endregion
33
+ export { Captions, CaptionsActiveWord, CaptionsAfterActiveWord, CaptionsBeforeActiveWord, CaptionsSegment };
34
+ //# sourceMappingURL=Captions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Captions.js","names":["EFCaptionsElement","EFCaptionsActiveWordElement","EFCaptionsSegmentElement","EFCaptionsBeforeActiveWordElement","EFCaptionsAfterActiveWordElement"],"sources":["../../src/elements/Captions.ts"],"sourcesContent":["import {\n EFCaptionsActiveWord as EFCaptionsActiveWordElement,\n EFCaptionsAfterActiveWord as EFCaptionsAfterActiveWordElement,\n EFCaptionsBeforeActiveWord as EFCaptionsBeforeActiveWordElement,\n EFCaptions as EFCaptionsElement,\n EFCaptionsSegment as EFCaptionsSegmentElement,\n} from \"@editframe/elements\";\nimport React from \"react\";\nimport { createComponent } from \"../hooks/create-element\";\n\nexport const Captions = createComponent({\n tagName: \"ef-captions\",\n elementClass: EFCaptionsElement,\n react: React,\n});\n\nexport const CaptionsActiveWord = createComponent({\n tagName: \"ef-captions-active-word\",\n elementClass: EFCaptionsActiveWordElement,\n react: React,\n});\n\nexport const CaptionsSegment = createComponent({\n tagName: \"ef-captions-segment\",\n elementClass: EFCaptionsSegmentElement,\n react: React,\n});\n\nexport const CaptionsBeforeActiveWord = createComponent({\n tagName: \"ef-captions-before-active-word\",\n elementClass: EFCaptionsBeforeActiveWordElement,\n react: React,\n});\n\nexport const CaptionsAfterActiveWord = createComponent({\n tagName: \"ef-captions-after-active-word\",\n elementClass: EFCaptionsAfterActiveWordElement,\n react: React,\n});\n"],"mappings":";;;;;AAUA,MAAa,WAAW,gBAAgB;CACtC,SAAS;CACT,cAAcA;CACd,OAAO;CACR,CAAC;AAEF,MAAa,qBAAqB,gBAAgB;CAChD,SAAS;CACT,cAAcC;CACd,OAAO;CACR,CAAC;AAEF,MAAa,kBAAkB,gBAAgB;CAC7C,SAAS;CACT,cAAcC;CACd,OAAO;CACR,CAAC;AAEF,MAAa,2BAA2B,gBAAgB;CACtD,SAAS;CACT,cAAcC;CACd,OAAO;CACR,CAAC;AAEF,MAAa,0BAA0B,gBAAgB;CACrD,SAAS;CACT,cAAcC;CACd,OAAO;CACR,CAAC"}
@@ -1,2 +1,8 @@
1
- import { EFImage as EFImageElement } from '../../../elements/src/index.ts';
2
- export declare const Image: import('../hooks/create-element').ReactWebComponent<EFImageElement, {}>;
1
+ import { ReactWebComponent } from "../hooks/create-element.js";
2
+ import { EFImage } from "@editframe/elements";
3
+
4
+ //#region src/elements/Image.d.ts
5
+ declare const Image: ReactWebComponent<EFImage, {}>;
6
+ //#endregion
7
+ export { Image };
8
+ //# sourceMappingURL=Image.d.ts.map
@@ -1,11 +1,14 @@
1
+ import { createComponent } from "../hooks/create-element.js";
1
2
  import { EFImage } from "@editframe/elements";
2
3
  import React from "react";
3
- import { createComponent } from "../hooks/create-element.js";
4
+
5
+ //#region src/elements/Image.ts
4
6
  const Image = createComponent({
5
- tagName: "ef-image",
6
- elementClass: EFImage,
7
- react: React
7
+ tagName: "ef-image",
8
+ elementClass: EFImage,
9
+ react: React
8
10
  });
9
- export {
10
- Image
11
- };
11
+
12
+ //#endregion
13
+ export { Image };
14
+ //# sourceMappingURL=Image.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Image.js","names":["EFImageElement"],"sources":["../../src/elements/Image.ts"],"sourcesContent":["import { EFImage as EFImageElement } from \"@editframe/elements\";\nimport React from \"react\";\nimport { createComponent } from \"../hooks/create-element\";\n\nexport const Image = createComponent({\n tagName: \"ef-image\",\n elementClass: EFImageElement,\n react: React,\n});\n"],"mappings":";;;;;AAIA,MAAa,QAAQ,gBAAgB;CACnC,SAAS;CACT,cAAcA;CACd,OAAO;CACR,CAAC"}
@@ -1,2 +1,8 @@
1
- import { EFSurface as EFSurfaceElement } from '../../../elements/src/index.ts';
2
- export declare const Surface: import('../hooks/create-element').ReactWebComponent<EFSurfaceElement, {}>;
1
+ import { ReactWebComponent } from "../hooks/create-element.js";
2
+ import { EFSurface } from "@editframe/elements";
3
+
4
+ //#region src/elements/Surface.d.ts
5
+ declare const Surface: ReactWebComponent<EFSurface, {}>;
6
+ //#endregion
7
+ export { Surface };
8
+ //# sourceMappingURL=Surface.d.ts.map
@@ -1,13 +1,16 @@
1
+ import { createComponent } from "../hooks/create-element.js";
1
2
  import { EFSurface } from "@editframe/elements";
2
3
  import React from "react";
3
- import { createComponent } from "../hooks/create-element.js";
4
+
5
+ //#region src/elements/Surface.ts
4
6
  const Surface = createComponent({
5
- tagName: "ef-surface",
6
- elementClass: EFSurface,
7
- react: React,
8
- displayName: "Surface",
9
- events: {}
7
+ tagName: "ef-surface",
8
+ elementClass: EFSurface,
9
+ react: React,
10
+ displayName: "Surface",
11
+ events: {}
10
12
  });
11
- export {
12
- Surface
13
- };
13
+
14
+ //#endregion
15
+ export { Surface };
16
+ //# sourceMappingURL=Surface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Surface.js","names":["EFSurfaceElement"],"sources":["../../src/elements/Surface.ts"],"sourcesContent":["import { EFSurface as EFSurfaceElement } from \"@editframe/elements\";\nimport React from \"react\";\nimport { createComponent } from \"../hooks/create-element\";\n\nexport const Surface = createComponent({\n tagName: \"ef-surface\",\n elementClass: EFSurfaceElement,\n react: React,\n displayName: \"Surface\",\n events: {},\n});\n"],"mappings":";;;;;AAIA,MAAa,UAAU,gBAAgB;CACrC,SAAS;CACT,cAAcA;CACd,OAAO;CACP,aAAa;CACb,QAAQ,EAAE;CACX,CAAC"}
@@ -1,2 +1,8 @@
1
- import { EFThumbnailStrip as EFThumbnailStripElement } from '../../../elements/src/index.ts';
2
- export declare const ThumbnailStrip: import('../hooks/create-element').ReactWebComponent<EFThumbnailStripElement, {}>;
1
+ import { ReactWebComponent } from "../hooks/create-element.js";
2
+ import { EFThumbnailStrip } from "@editframe/elements";
3
+
4
+ //#region src/elements/ThumbnailStrip.d.ts
5
+ declare const ThumbnailStrip: ReactWebComponent<EFThumbnailStrip, {}>;
6
+ //#endregion
7
+ export { ThumbnailStrip };
8
+ //# sourceMappingURL=ThumbnailStrip.d.ts.map
@@ -1,13 +1,16 @@
1
+ import { createComponent } from "../hooks/create-element.js";
1
2
  import { EFThumbnailStrip } from "@editframe/elements";
2
3
  import React from "react";
3
- import { createComponent } from "../hooks/create-element.js";
4
+
5
+ //#region src/elements/ThumbnailStrip.ts
4
6
  const ThumbnailStrip = createComponent({
5
- tagName: "ef-thumbnail-strip",
6
- elementClass: EFThumbnailStrip,
7
- react: React,
8
- displayName: "ThumbnailStrip",
9
- events: {}
7
+ tagName: "ef-thumbnail-strip",
8
+ elementClass: EFThumbnailStrip,
9
+ react: React,
10
+ displayName: "ThumbnailStrip",
11
+ events: {}
10
12
  });
11
- export {
12
- ThumbnailStrip
13
- };
13
+
14
+ //#endregion
15
+ export { ThumbnailStrip };
16
+ //# sourceMappingURL=ThumbnailStrip.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ThumbnailStrip.js","names":["EFThumbnailStripElement"],"sources":["../../src/elements/ThumbnailStrip.ts"],"sourcesContent":["import { EFThumbnailStrip as EFThumbnailStripElement } from \"@editframe/elements\";\nimport React from \"react\";\nimport { createComponent } from \"../hooks/create-element\";\n\nexport const ThumbnailStrip = createComponent({\n tagName: \"ef-thumbnail-strip\",\n elementClass: EFThumbnailStripElement,\n react: React,\n displayName: \"ThumbnailStrip\",\n events: {},\n});\n"],"mappings":";;;;;AAIA,MAAa,iBAAiB,gBAAgB;CAC5C,SAAS;CACT,cAAcA;CACd,OAAO;CACP,aAAa;CACb,QAAQ,EAAE;CACX,CAAC"}
@@ -1,2 +1,8 @@
1
- import { EFTimegroup as EFTimegroupElement } from '../../../elements/src/index.ts';
2
- export declare const Timegroup: import('../hooks/create-element').ReactWebComponent<EFTimegroupElement, {}>;
1
+ import { ReactWebComponent } from "../hooks/create-element.js";
2
+ import { EFTimegroup } from "@editframe/elements";
3
+
4
+ //#region src/elements/Timegroup.d.ts
5
+ declare const Timegroup: ReactWebComponent<EFTimegroup, {}>;
6
+ //#endregion
7
+ export { Timegroup };
8
+ //# sourceMappingURL=Timegroup.d.ts.map
@@ -1,11 +1,14 @@
1
+ import { createComponent } from "../hooks/create-element.js";
1
2
  import { EFTimegroup } from "@editframe/elements";
2
3
  import React from "react";
3
- import { createComponent } from "../hooks/create-element.js";
4
+
5
+ //#region src/elements/Timegroup.ts
4
6
  const Timegroup = createComponent({
5
- tagName: "ef-timegroup",
6
- elementClass: EFTimegroup,
7
- react: React
7
+ tagName: "ef-timegroup",
8
+ elementClass: EFTimegroup,
9
+ react: React
8
10
  });
9
- export {
10
- Timegroup
11
- };
11
+
12
+ //#endregion
13
+ export { Timegroup };
14
+ //# sourceMappingURL=Timegroup.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Timegroup.js","names":["EFTimegroupElement"],"sources":["../../src/elements/Timegroup.ts"],"sourcesContent":["import { EFTimegroup as EFTimegroupElement } from \"@editframe/elements\";\nimport React from \"react\";\nimport { createComponent } from \"../hooks/create-element\";\n\nexport const Timegroup = createComponent({\n tagName: \"ef-timegroup\",\n elementClass: EFTimegroupElement,\n react: React,\n});\n"],"mappings":";;;;;AAIA,MAAa,YAAY,gBAAgB;CACvC,SAAS;CACT,cAAcA;CACd,OAAO;CACR,CAAC"}
@@ -1,2 +1,8 @@
1
- import { EFVideo as EFVideoElement } from '../../../elements/src/index.ts';
2
- export declare const Video: import('../hooks/create-element').ReactWebComponent<EFVideoElement, {}>;
1
+ import { ReactWebComponent } from "../hooks/create-element.js";
2
+ import { EFVideo } from "@editframe/elements";
3
+
4
+ //#region src/elements/Video.d.ts
5
+ declare const Video: ReactWebComponent<EFVideo, {}>;
6
+ //#endregion
7
+ export { Video };
8
+ //# sourceMappingURL=Video.d.ts.map
@@ -1,11 +1,14 @@
1
+ import { createComponent } from "../hooks/create-element.js";
1
2
  import { EFVideo } from "@editframe/elements";
2
3
  import React from "react";
3
- import { createComponent } from "../hooks/create-element.js";
4
+
5
+ //#region src/elements/Video.ts
4
6
  const Video = createComponent({
5
- tagName: "ef-video",
6
- elementClass: EFVideo,
7
- react: React
7
+ tagName: "ef-video",
8
+ elementClass: EFVideo,
9
+ react: React
8
10
  });
9
- export {
10
- Video
11
- };
11
+
12
+ //#endregion
13
+ export { Video };
14
+ //# sourceMappingURL=Video.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Video.js","names":["EFVideoElement"],"sources":["../../src/elements/Video.ts"],"sourcesContent":["import { EFVideo as EFVideoElement } from \"@editframe/elements\";\nimport React from \"react\";\nimport { createComponent } from \"../hooks/create-element\";\n\nexport const Video = createComponent({\n tagName: \"ef-video\",\n elementClass: EFVideoElement,\n react: React,\n});\n"],"mappings":";;;;;AAIA,MAAa,QAAQ,gBAAgB;CACnC,SAAS;CACT,cAAcA;CACd,OAAO;CACR,CAAC"}
@@ -1,2 +1,8 @@
1
- import { EFWaveform as EFWaveformElement } from '../../../elements/src/index.ts';
2
- export declare const Waveform: import('../hooks/create-element').ReactWebComponent<EFWaveformElement, {}>;
1
+ import { ReactWebComponent } from "../hooks/create-element.js";
2
+ import { EFWaveform } from "@editframe/elements";
3
+
4
+ //#region src/elements/Waveform.d.ts
5
+ declare const Waveform: ReactWebComponent<EFWaveform, {}>;
6
+ //#endregion
7
+ export { Waveform };
8
+ //# sourceMappingURL=Waveform.d.ts.map
@@ -1,11 +1,14 @@
1
+ import { createComponent } from "../hooks/create-element.js";
1
2
  import { EFWaveform } from "@editframe/elements";
2
3
  import React from "react";
3
- import { createComponent } from "../hooks/create-element.js";
4
+
5
+ //#region src/elements/Waveform.ts
4
6
  const Waveform = createComponent({
5
- tagName: "ef-waveform",
6
- elementClass: EFWaveform,
7
- react: React
7
+ tagName: "ef-waveform",
8
+ elementClass: EFWaveform,
9
+ react: React
8
10
  });
9
- export {
10
- Waveform
11
- };
11
+
12
+ //#endregion
13
+ export { Waveform };
14
+ //# sourceMappingURL=Waveform.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Waveform.js","names":["EFWaveformElement"],"sources":["../../src/elements/Waveform.ts"],"sourcesContent":["import { EFWaveform as EFWaveformElement } from \"@editframe/elements\";\nimport React from \"react\";\nimport { createComponent } from \"../hooks/create-element\";\n\nexport const Waveform = createComponent({\n tagName: \"ef-waveform\",\n elementClass: EFWaveformElement,\n react: React,\n});\n"],"mappings":";;;;;AAIA,MAAa,WAAW,gBAAgB;CACtC,SAAS;CACT,cAAcA;CACd,OAAO;CACR,CAAC"}
@@ -1,2 +1,8 @@
1
- import { EFConfiguration } from '../../../elements/src/index.ts';
2
- export declare const Configuration: import('../hooks/create-element').ReactWebComponent<EFConfiguration, {}>;
1
+ import { ReactWebComponent } from "../hooks/create-element.js";
2
+ import { EFConfiguration } from "@editframe/elements";
3
+
4
+ //#region src/gui/Configuration.d.ts
5
+ declare const Configuration: ReactWebComponent<EFConfiguration, {}>;
6
+ //#endregion
7
+ export { Configuration };
8
+ //# sourceMappingURL=Configuration.d.ts.map
@@ -1,11 +1,14 @@
1
+ import { createComponent } from "../hooks/create-element.js";
1
2
  import { EFConfiguration } from "@editframe/elements";
2
3
  import React from "react";
3
- import { createComponent } from "../hooks/create-element.js";
4
+
5
+ //#region src/gui/Configuration.ts
4
6
  const Configuration = createComponent({
5
- tagName: "ef-configuration",
6
- elementClass: EFConfiguration,
7
- react: React
7
+ tagName: "ef-configuration",
8
+ elementClass: EFConfiguration,
9
+ react: React
8
10
  });
9
- export {
10
- Configuration
11
- };
11
+
12
+ //#endregion
13
+ export { Configuration };
14
+ //# sourceMappingURL=Configuration.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Configuration.js","names":[],"sources":["../../src/gui/Configuration.ts"],"sourcesContent":["import { EFConfiguration } from \"@editframe/elements\";\nimport React from \"react\";\nimport { createComponent } from \"../hooks/create-element\";\n\nexport const Configuration = createComponent({\n tagName: \"ef-configuration\",\n elementClass: EFConfiguration,\n react: React,\n});\n"],"mappings":";;;;;AAIA,MAAa,gBAAgB,gBAAgB;CAC3C,SAAS;CACT,cAAc;CACd,OAAO;CACR,CAAC"}
@@ -1,2 +1,8 @@
1
- import { EFControls as EFControlsElement } from '../../../elements/src/index.ts';
2
- export declare const Controls: import('../hooks/create-element').ReactWebComponent<EFControlsElement, {}>;
1
+ import { ReactWebComponent } from "../hooks/create-element.js";
2
+ import { EFControls } from "@editframe/elements";
3
+
4
+ //#region src/gui/Controls.d.ts
5
+ declare const Controls: ReactWebComponent<EFControls, {}>;
6
+ //#endregion
7
+ export { Controls };
8
+ //# sourceMappingURL=Controls.d.ts.map
@@ -1,11 +1,14 @@
1
+ import { createComponent } from "../hooks/create-element.js";
1
2
  import { EFControls } from "@editframe/elements";
2
3
  import React from "react";
3
- import { createComponent } from "../hooks/create-element.js";
4
+
5
+ //#region src/gui/Controls.ts
4
6
  const Controls = createComponent({
5
- tagName: "ef-controls",
6
- elementClass: EFControls,
7
- react: React
7
+ tagName: "ef-controls",
8
+ elementClass: EFControls,
9
+ react: React
8
10
  });
9
- export {
10
- Controls
11
- };
11
+
12
+ //#endregion
13
+ export { Controls };
14
+ //# sourceMappingURL=Controls.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Controls.js","names":["EFControlsElement"],"sources":["../../src/gui/Controls.ts"],"sourcesContent":["import { EFControls as EFControlsElement } from \"@editframe/elements\";\nimport React from \"react\";\nimport { createComponent } from \"../hooks/create-element\";\n\nexport const Controls = createComponent({\n tagName: \"ef-controls\",\n elementClass: EFControlsElement,\n react: React,\n});\n"],"mappings":";;;;;AAIA,MAAa,WAAW,gBAAgB;CACtC,SAAS;CACT,cAAcA;CACd,OAAO;CACR,CAAC"}
@@ -1,4 +1,10 @@
1
- import { EFDial as EFDialElement } from '../../../elements/src/index.ts';
2
- export declare const Dial: import('../hooks/create-element').ReactWebComponent<EFDialElement, {
3
- onChange: string;
1
+ import { ReactWebComponent } from "../hooks/create-element.js";
2
+ import { EFDial } from "@editframe/elements";
3
+
4
+ //#region src/gui/EFDial.d.ts
5
+ declare const Dial: ReactWebComponent<EFDial, {
6
+ onChange: string;
4
7
  }>;
8
+ //#endregion
9
+ export { Dial };
10
+ //# sourceMappingURL=EFDial.d.ts.map
@@ -1,14 +1,15 @@
1
+ import { createComponent } from "../hooks/create-element.js";
1
2
  import { EFDial } from "@editframe/elements";
2
3
  import React from "react";
3
- import { createComponent } from "../hooks/create-element.js";
4
+
5
+ //#region src/gui/EFDial.ts
4
6
  const Dial = createComponent({
5
- tagName: "ef-dial",
6
- elementClass: EFDial,
7
- react: React,
8
- events: {
9
- onChange: "change"
10
- }
7
+ tagName: "ef-dial",
8
+ elementClass: EFDial,
9
+ react: React,
10
+ events: { onChange: "change" }
11
11
  });
12
- export {
13
- Dial
14
- };
12
+
13
+ //#endregion
14
+ export { Dial };
15
+ //# sourceMappingURL=EFDial.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EFDial.js","names":["EFDialElement"],"sources":["../../src/gui/EFDial.ts"],"sourcesContent":["import { EFDial as EFDialElement } from \"@editframe/elements\";\nimport React from \"react\";\nimport { createComponent } from \"../hooks/create-element\";\n\nexport const Dial = createComponent({\n tagName: \"ef-dial\",\n elementClass: EFDialElement,\n react: React,\n events: {\n onChange: \"change\",\n },\n});\n"],"mappings":";;;;;AAIA,MAAa,OAAO,gBAAgB;CAClC,SAAS;CACT,cAAcA;CACd,OAAO;CACP,QAAQ,EACN,UAAU,UACX;CACF,CAAC"}
@@ -1,4 +1,10 @@
1
- import { EFResizableBox as EFResizableBoxElement } from '../../../elements/src/index.ts';
2
- export declare const ResizableBox: import('../hooks/create-element').ReactWebComponent<EFResizableBoxElement, {
3
- onBoundsChange: string;
1
+ import { ReactWebComponent } from "../hooks/create-element.js";
2
+ import { EFResizableBox } from "@editframe/elements";
3
+
4
+ //#region src/gui/EFResizableBox.d.ts
5
+ declare const ResizableBox: ReactWebComponent<EFResizableBox, {
6
+ onBoundsChange: string;
4
7
  }>;
8
+ //#endregion
9
+ export { ResizableBox };
10
+ //# sourceMappingURL=EFResizableBox.d.ts.map
@@ -1,14 +1,15 @@
1
+ import { createComponent } from "../hooks/create-element.js";
1
2
  import { EFResizableBox } from "@editframe/elements";
2
3
  import React from "react";
3
- import { createComponent } from "../hooks/create-element.js";
4
+
5
+ //#region src/gui/EFResizableBox.ts
4
6
  const ResizableBox = createComponent({
5
- tagName: "ef-resizable-box",
6
- elementClass: EFResizableBox,
7
- react: React,
8
- events: {
9
- onBoundsChange: "bounds-change"
10
- }
7
+ tagName: "ef-resizable-box",
8
+ elementClass: EFResizableBox,
9
+ react: React,
10
+ events: { onBoundsChange: "bounds-change" }
11
11
  });
12
- export {
13
- ResizableBox
14
- };
12
+
13
+ //#endregion
14
+ export { ResizableBox };
15
+ //# sourceMappingURL=EFResizableBox.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EFResizableBox.js","names":["EFResizableBoxElement"],"sources":["../../src/gui/EFResizableBox.ts"],"sourcesContent":["import { EFResizableBox as EFResizableBoxElement } from \"@editframe/elements\";\nimport React from \"react\";\nimport { createComponent } from \"../hooks/create-element\";\n\nexport const ResizableBox = createComponent({\n tagName: \"ef-resizable-box\",\n elementClass: EFResizableBoxElement,\n react: React,\n events: {\n onBoundsChange: \"bounds-change\",\n },\n});\n"],"mappings":";;;;;AAIA,MAAa,eAAe,gBAAgB;CAC1C,SAAS;CACT,cAAcA;CACd,OAAO;CACP,QAAQ,EACN,gBAAgB,iBACjB;CACF,CAAC"}
@@ -1,2 +1,8 @@
1
- import { EFFilmstrip as EFFilmstripElement } from '../../../elements/src/index.ts';
2
- export declare const Filmstrip: import('../hooks/create-element').ReactWebComponent<EFFilmstripElement, {}>;
1
+ import { ReactWebComponent } from "../hooks/create-element.js";
2
+ import { EFFilmstrip } from "@editframe/elements";
3
+
4
+ //#region src/gui/Filmstrip.d.ts
5
+ declare const Filmstrip: ReactWebComponent<EFFilmstrip, {}>;
6
+ //#endregion
7
+ export { Filmstrip };
8
+ //# sourceMappingURL=Filmstrip.d.ts.map
@@ -1,11 +1,14 @@
1
+ import { createComponent } from "../hooks/create-element.js";
1
2
  import { EFFilmstrip } from "@editframe/elements";
2
3
  import React from "react";
3
- import { createComponent } from "../hooks/create-element.js";
4
+
5
+ //#region src/gui/Filmstrip.ts
4
6
  const Filmstrip = createComponent({
5
- tagName: "ef-filmstrip",
6
- elementClass: EFFilmstrip,
7
- react: React
7
+ tagName: "ef-filmstrip",
8
+ elementClass: EFFilmstrip,
9
+ react: React
8
10
  });
9
- export {
10
- Filmstrip
11
- };
11
+
12
+ //#endregion
13
+ export { Filmstrip };
14
+ //# sourceMappingURL=Filmstrip.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Filmstrip.js","names":["EFFilmstripElement"],"sources":["../../src/gui/Filmstrip.ts"],"sourcesContent":["import { EFFilmstrip as EFFilmstripElement } from \"@editframe/elements\";\nimport React from \"react\";\nimport { createComponent } from \"../hooks/create-element\";\n\nexport const Filmstrip = createComponent({\n tagName: \"ef-filmstrip\",\n elementClass: EFFilmstripElement,\n react: React,\n});\n"],"mappings":";;;;;AAIA,MAAa,YAAY,gBAAgB;CACvC,SAAS;CACT,cAAcA;CACd,OAAO;CACR,CAAC"}