@editframe/react 0.55.2 → 0.56.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.
- package/dist/gui/Fullscreen.d.ts +8 -0
- package/dist/gui/Fullscreen.js +13 -0
- package/dist/gui/Fullscreen.js.map +1 -0
- package/dist/gui/Mute.d.ts +8 -0
- package/dist/gui/Mute.js +13 -0
- package/dist/gui/Mute.js.map +1 -0
- package/dist/gui/PIP.d.ts +8 -0
- package/dist/gui/PIP.js +13 -0
- package/dist/gui/PIP.js.map +1 -0
- package/dist/gui/Resolution.d.ts +10 -0
- package/dist/gui/Resolution.js +14 -0
- package/dist/gui/Resolution.js.map +1 -0
- package/dist/gui/Volume.d.ts +8 -0
- package/dist/gui/Volume.js +13 -0
- package/dist/gui/Volume.js.map +1 -0
- package/dist/index.d.ts +7 -2
- package/dist/index.js +6 -1
- package/package.json +3 -3
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ReactWebComponent } from "../hooks/create-element.js";
|
|
2
|
+
import { EFFullscreen } from "@editframe/elements";
|
|
3
|
+
|
|
4
|
+
//#region src/gui/Fullscreen.d.ts
|
|
5
|
+
declare const Fullscreen: ReactWebComponent<EFFullscreen, {}>;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { Fullscreen };
|
|
8
|
+
//# sourceMappingURL=Fullscreen.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { createComponent } from "../hooks/create-element.js";
|
|
2
|
+
import { EFFullscreen } from "@editframe/elements";
|
|
3
|
+
import React from "react";
|
|
4
|
+
//#region src/gui/Fullscreen.ts
|
|
5
|
+
const Fullscreen = createComponent({
|
|
6
|
+
tagName: "ef-fullscreen",
|
|
7
|
+
elementClass: EFFullscreen,
|
|
8
|
+
react: React
|
|
9
|
+
});
|
|
10
|
+
//#endregion
|
|
11
|
+
export { Fullscreen };
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=Fullscreen.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Fullscreen.js","names":["EFFullscreenElement"],"sources":["../../src/gui/Fullscreen.ts"],"mappings":";;;;AAIA,MAAa,aAAa,gBAAgB;CACxC,SAAS;CACT,cAAcA;CACd,OAAO;CACR,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ReactWebComponent } from "../hooks/create-element.js";
|
|
2
|
+
import { EFMute } from "@editframe/elements";
|
|
3
|
+
|
|
4
|
+
//#region src/gui/Mute.d.ts
|
|
5
|
+
declare const Mute: ReactWebComponent<EFMute, {}>;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { Mute };
|
|
8
|
+
//# sourceMappingURL=Mute.d.ts.map
|
package/dist/gui/Mute.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { createComponent } from "../hooks/create-element.js";
|
|
2
|
+
import { EFMute } from "@editframe/elements";
|
|
3
|
+
import React from "react";
|
|
4
|
+
//#region src/gui/Mute.ts
|
|
5
|
+
const Mute = createComponent({
|
|
6
|
+
tagName: "ef-mute",
|
|
7
|
+
elementClass: EFMute,
|
|
8
|
+
react: React
|
|
9
|
+
});
|
|
10
|
+
//#endregion
|
|
11
|
+
export { Mute };
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=Mute.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Mute.js","names":["EFMuteElement"],"sources":["../../src/gui/Mute.ts"],"mappings":";;;;AAIA,MAAa,OAAO,gBAAgB;CAClC,SAAS;CACT,cAAcA;CACd,OAAO;CACR,CAAC"}
|
package/dist/gui/PIP.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { createComponent } from "../hooks/create-element.js";
|
|
2
|
+
import { EFPIP } from "@editframe/elements";
|
|
3
|
+
import React from "react";
|
|
4
|
+
//#region src/gui/PIP.ts
|
|
5
|
+
const PIP = createComponent({
|
|
6
|
+
tagName: "ef-pip",
|
|
7
|
+
elementClass: EFPIP,
|
|
8
|
+
react: React
|
|
9
|
+
});
|
|
10
|
+
//#endregion
|
|
11
|
+
export { PIP };
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=PIP.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PIP.js","names":["EFPIPElement"],"sources":["../../src/gui/PIP.ts"],"mappings":";;;;AAIA,MAAa,MAAM,gBAAgB;CACjC,SAAS;CACT,cAAcA;CACd,OAAO;CACR,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ReactWebComponent } from "../hooks/create-element.js";
|
|
2
|
+
import { EFResolution } from "@editframe/elements";
|
|
3
|
+
|
|
4
|
+
//#region src/gui/Resolution.d.ts
|
|
5
|
+
declare const Resolution: ReactWebComponent<EFResolution, {
|
|
6
|
+
onResolutionChange: string;
|
|
7
|
+
}>;
|
|
8
|
+
//#endregion
|
|
9
|
+
export { Resolution };
|
|
10
|
+
//# sourceMappingURL=Resolution.d.ts.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { createComponent } from "../hooks/create-element.js";
|
|
2
|
+
import { EFResolution } from "@editframe/elements";
|
|
3
|
+
import React from "react";
|
|
4
|
+
//#region src/gui/Resolution.ts
|
|
5
|
+
const Resolution = createComponent({
|
|
6
|
+
tagName: "ef-resolution",
|
|
7
|
+
elementClass: EFResolution,
|
|
8
|
+
react: React,
|
|
9
|
+
events: { onResolutionChange: "resolution-change" }
|
|
10
|
+
});
|
|
11
|
+
//#endregion
|
|
12
|
+
export { Resolution };
|
|
13
|
+
|
|
14
|
+
//# sourceMappingURL=Resolution.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Resolution.js","names":["EFResolutionElement"],"sources":["../../src/gui/Resolution.ts"],"mappings":";;;;AAIA,MAAa,aAAa,gBAAgB;CACxC,SAAS;CACT,cAAcA;CACd,OAAO;CACP,QAAQ,EACN,oBAAoB,qBACrB;CACF,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ReactWebComponent } from "../hooks/create-element.js";
|
|
2
|
+
import { EFVolume } from "@editframe/elements";
|
|
3
|
+
|
|
4
|
+
//#region src/gui/Volume.d.ts
|
|
5
|
+
declare const Volume: ReactWebComponent<EFVolume, {}>;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { Volume };
|
|
8
|
+
//# sourceMappingURL=Volume.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { createComponent } from "../hooks/create-element.js";
|
|
2
|
+
import { EFVolume } from "@editframe/elements";
|
|
3
|
+
import React from "react";
|
|
4
|
+
//#region src/gui/Volume.ts
|
|
5
|
+
const Volume = createComponent({
|
|
6
|
+
tagName: "ef-volume",
|
|
7
|
+
elementClass: EFVolume,
|
|
8
|
+
react: React
|
|
9
|
+
});
|
|
10
|
+
//#endregion
|
|
11
|
+
export { Volume };
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=Volume.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Volume.js","names":["EFVolumeElement"],"sources":["../../src/gui/Volume.ts"],"mappings":";;;;AAIA,MAAa,SAAS,gBAAgB;CACpC,SAAS;CACT,cAAcA;CACd,OAAO;CACR,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,11 @@ import { OverlayItem, OverlayItemProps } from "./gui/OverlayItem.js";
|
|
|
14
14
|
import { Configuration } from "./gui/Configuration.js";
|
|
15
15
|
import { Controls } from "./gui/Controls.js";
|
|
16
16
|
import { Dial } from "./gui/EFDial.js";
|
|
17
|
+
import { Fullscreen } from "./gui/Fullscreen.js";
|
|
18
|
+
import { Mute } from "./gui/Mute.js";
|
|
19
|
+
import { PIP } from "./gui/PIP.js";
|
|
20
|
+
import { Resolution } from "./gui/Resolution.js";
|
|
21
|
+
import { Volume } from "./gui/Volume.js";
|
|
17
22
|
import { ResizableBox } from "./gui/EFResizableBox.js";
|
|
18
23
|
import { TransformHandles } from "./gui/EFTransformHandles.js";
|
|
19
24
|
import { Filmstrip } from "./gui/Filmstrip.js";
|
|
@@ -33,5 +38,5 @@ import { useTimingInfo } from "./hooks/useTimingInfo.js";
|
|
|
33
38
|
import { MediaInfo, useMediaInfo } from "./hooks/useMediaInfo.js";
|
|
34
39
|
import { usePanZoomTransform } from "./hooks/usePanZoomTransform.js";
|
|
35
40
|
import { useRenderData } from "./hooks/useRenderData.js";
|
|
36
|
-
import { TrimChangeDetail, TrimValue, elementNeedsFitScale, needsFitScale } from "@editframe/elements";
|
|
37
|
-
export { Audio, Captions, CaptionsActiveWord, CaptionsAfterActiveWord, CaptionsBeforeActiveWord, CaptionsSegment, Configuration, Controls, Dial, Filmstrip, FitScale, FocusOverlay, Image, type MediaInfo, OverlayItem, type OverlayItemProps, OverlayLayer, PanZoom, Pause, Play, Preview, ResizableBox, Scrubber, type ScrubberProps, Surface, Text, TextSegment, ThumbnailStrip, TimeDisplay, Timegroup, TimelineRoot, TimelineRuler, ToggleLoop, TogglePlay, TransformHandles, type TrimChangeDetail, TrimHandles, type TrimValue, Video, Waveform, Workbench, elementNeedsFitScale, needsFitScale, useMediaInfo, usePanZoomTransform, useRenderData, useTimingInfo };
|
|
41
|
+
import { ResolutionChangeDetail, TrimChangeDetail, TrimValue, elementNeedsFitScale, needsFitScale } from "@editframe/elements";
|
|
42
|
+
export { Audio, Captions, CaptionsActiveWord, CaptionsAfterActiveWord, CaptionsBeforeActiveWord, CaptionsSegment, Configuration, Controls, Dial, Filmstrip, FitScale, FocusOverlay, Fullscreen, Image, type MediaInfo, Mute, OverlayItem, type OverlayItemProps, OverlayLayer, PIP, PanZoom, Pause, Play, Preview, ResizableBox, Resolution, type ResolutionChangeDetail, Scrubber, type ScrubberProps, Surface, Text, TextSegment, ThumbnailStrip, TimeDisplay, Timegroup, TimelineRoot, TimelineRuler, ToggleLoop, TogglePlay, TransformHandles, type TrimChangeDetail, TrimHandles, type TrimValue, Video, Volume, Waveform, Workbench, elementNeedsFitScale, needsFitScale, useMediaInfo, usePanZoomTransform, useRenderData, useTimingInfo };
|
package/dist/index.js
CHANGED
|
@@ -14,6 +14,11 @@ import { OverlayItem } from "./gui/OverlayItem.js";
|
|
|
14
14
|
import { Configuration } from "./gui/Configuration.js";
|
|
15
15
|
import { Controls } from "./gui/Controls.js";
|
|
16
16
|
import { Dial } from "./gui/EFDial.js";
|
|
17
|
+
import { Fullscreen } from "./gui/Fullscreen.js";
|
|
18
|
+
import { Mute } from "./gui/Mute.js";
|
|
19
|
+
import { PIP } from "./gui/PIP.js";
|
|
20
|
+
import { Resolution } from "./gui/Resolution.js";
|
|
21
|
+
import { Volume } from "./gui/Volume.js";
|
|
17
22
|
import { ResizableBox } from "./gui/EFResizableBox.js";
|
|
18
23
|
import { TransformHandles } from "./gui/EFTransformHandles.js";
|
|
19
24
|
import { Filmstrip } from "./gui/Filmstrip.js";
|
|
@@ -34,4 +39,4 @@ import { useMediaInfo } from "./hooks/useMediaInfo.js";
|
|
|
34
39
|
import { usePanZoomTransform } from "./hooks/usePanZoomTransform.js";
|
|
35
40
|
import { useRenderData } from "./hooks/useRenderData.js";
|
|
36
41
|
import { elementNeedsFitScale, needsFitScale } from "@editframe/elements";
|
|
37
|
-
export { Audio, Captions, CaptionsActiveWord, CaptionsAfterActiveWord, CaptionsBeforeActiveWord, CaptionsSegment, Configuration, Controls, Dial, Filmstrip, FitScale, FocusOverlay, Image, OverlayItem, OverlayLayer, PanZoom, Pause, Play, Preview, ResizableBox, Scrubber, Surface, Text, TextSegment, ThumbnailStrip, TimeDisplay, Timegroup, TimelineRoot, TimelineRuler, ToggleLoop, TogglePlay, TransformHandles, TrimHandles, Video, Waveform, Workbench, elementNeedsFitScale, needsFitScale, useMediaInfo, usePanZoomTransform, useRenderData, useTimingInfo };
|
|
42
|
+
export { Audio, Captions, CaptionsActiveWord, CaptionsAfterActiveWord, CaptionsBeforeActiveWord, CaptionsSegment, Configuration, Controls, Dial, Filmstrip, FitScale, FocusOverlay, Fullscreen, Image, Mute, OverlayItem, OverlayLayer, PIP, PanZoom, Pause, Play, Preview, ResizableBox, Resolution, Scrubber, Surface, Text, TextSegment, ThumbnailStrip, TimeDisplay, Timegroup, TimelineRoot, TimelineRuler, ToggleLoop, TogglePlay, TransformHandles, TrimHandles, Video, Volume, Waveform, Workbench, elementNeedsFitScale, needsFitScale, useMediaInfo, usePanZoomTransform, useRenderData, useTimingInfo };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@editframe/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.56.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"author": "",
|
|
40
40
|
"license": "SEE LICENSE IN LICENSE-FULL.md",
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@editframe/elements": "0.
|
|
42
|
+
"@editframe/elements": "0.56.0",
|
|
43
43
|
"lit": "^3.3.1",
|
|
44
44
|
"mitt": "^3.0.1"
|
|
45
45
|
},
|
|
@@ -101,4 +101,4 @@
|
|
|
101
101
|
"./types.json": "./types.json"
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
|
-
}
|
|
104
|
+
}
|