@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.
- package/dist/components/TimeDisplay.d.ts +8 -0
- package/dist/components/TimeDisplay.js +10 -7
- package/dist/components/TimeDisplay.js.map +1 -0
- package/dist/elements/Audio.d.ts +8 -2
- package/dist/elements/Audio.js +10 -7
- package/dist/elements/Audio.js.map +1 -0
- package/dist/elements/Captions.d.ts +12 -6
- package/dist/elements/Captions.js +23 -24
- package/dist/elements/Captions.js.map +1 -0
- package/dist/elements/Image.d.ts +8 -2
- package/dist/elements/Image.js +10 -7
- package/dist/elements/Image.js.map +1 -0
- package/dist/elements/Surface.d.ts +8 -2
- package/dist/elements/Surface.js +12 -9
- package/dist/elements/Surface.js.map +1 -0
- package/dist/elements/ThumbnailStrip.d.ts +8 -2
- package/dist/elements/ThumbnailStrip.js +12 -9
- package/dist/elements/ThumbnailStrip.js.map +1 -0
- package/dist/elements/Timegroup.d.ts +8 -2
- package/dist/elements/Timegroup.js +10 -7
- package/dist/elements/Timegroup.js.map +1 -0
- package/dist/elements/Video.d.ts +8 -2
- package/dist/elements/Video.js +10 -7
- package/dist/elements/Video.js.map +1 -0
- package/dist/elements/Waveform.d.ts +8 -2
- package/dist/elements/Waveform.js +10 -7
- package/dist/elements/Waveform.js.map +1 -0
- package/dist/gui/Configuration.d.ts +8 -2
- package/dist/gui/Configuration.js +10 -7
- package/dist/gui/Configuration.js.map +1 -0
- package/dist/gui/Controls.d.ts +8 -2
- package/dist/gui/Controls.js +10 -7
- package/dist/gui/Controls.js.map +1 -0
- package/dist/gui/EFDial.d.ts +9 -3
- package/dist/gui/EFDial.js +11 -10
- package/dist/gui/EFDial.js.map +1 -0
- package/dist/gui/EFResizableBox.d.ts +9 -3
- package/dist/gui/EFResizableBox.js +11 -10
- package/dist/gui/EFResizableBox.js.map +1 -0
- package/dist/gui/Filmstrip.d.ts +8 -2
- package/dist/gui/Filmstrip.js +10 -7
- package/dist/gui/Filmstrip.js.map +1 -0
- package/dist/gui/FitScale.d.ts +8 -2
- package/dist/gui/FitScale.js +10 -7
- package/dist/gui/FitScale.js.map +1 -0
- package/dist/gui/FocusOverlay.d.ts +8 -2
- package/dist/gui/FocusOverlay.js +10 -7
- package/dist/gui/FocusOverlay.js.map +1 -0
- package/dist/gui/Pause.d.ts +8 -2
- package/dist/gui/Pause.js +10 -7
- package/dist/gui/Pause.js.map +1 -0
- package/dist/gui/Play.d.ts +8 -2
- package/dist/gui/Play.js +10 -7
- package/dist/gui/Play.js.map +1 -0
- package/dist/gui/Preview.d.ts +8 -2
- package/dist/gui/Preview.js +10 -7
- package/dist/gui/Preview.js.map +1 -0
- package/dist/gui/Scrubber.d.ts +8 -2
- package/dist/gui/Scrubber.js +10 -7
- package/dist/gui/Scrubber.js.map +1 -0
- package/dist/gui/ToggleLoop.d.ts +8 -2
- package/dist/gui/ToggleLoop.js +10 -7
- package/dist/gui/ToggleLoop.js.map +1 -0
- package/dist/gui/TogglePlay.d.ts +8 -2
- package/dist/gui/TogglePlay.js +10 -7
- package/dist/gui/TogglePlay.js.map +1 -0
- package/dist/gui/Workbench.d.ts +8 -2
- package/dist/gui/Workbench.js +10 -7
- package/dist/gui/Workbench.js.map +1 -0
- package/dist/hooks/create-element.d.ts +9 -18
- package/dist/hooks/create-element.js +72 -94
- package/dist/hooks/create-element.js.map +1 -0
- package/dist/hooks/useTimingInfo.d.ts +12 -6
- package/dist/hooks/useTimingInfo.js +63 -66
- package/dist/hooks/useTimingInfo.js.map +1 -0
- package/dist/index.d.ts +25 -24
- package/dist/index.js +2 -30
- package/package.json +24 -12
- 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
|
-
|
|
4
|
+
|
|
5
|
+
//#region src/components/TimeDisplay.tsx
|
|
4
6
|
const TimeDisplay = createComponent({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
tagName: "ef-time-display",
|
|
8
|
+
elementClass: EFTimeDisplay,
|
|
9
|
+
react: React
|
|
8
10
|
});
|
|
9
|
-
|
|
10
|
-
|
|
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"}
|
package/dist/elements/Audio.d.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
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
|
package/dist/elements/Audio.js
CHANGED
|
@@ -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
|
-
|
|
4
|
+
|
|
5
|
+
//#region src/elements/Audio.ts
|
|
4
6
|
const Audio = createComponent({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
tagName: "ef-audio",
|
|
8
|
+
elementClass: EFAudio,
|
|
9
|
+
react: React
|
|
8
10
|
});
|
|
9
|
-
|
|
10
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
tagName: "ef-captions",
|
|
8
|
+
elementClass: EFCaptions,
|
|
9
|
+
react: React
|
|
8
10
|
});
|
|
9
11
|
const CaptionsActiveWord = createComponent({
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
12
|
+
tagName: "ef-captions-active-word",
|
|
13
|
+
elementClass: EFCaptionsActiveWord,
|
|
14
|
+
react: React
|
|
13
15
|
});
|
|
14
16
|
const CaptionsSegment = createComponent({
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
17
|
+
tagName: "ef-captions-segment",
|
|
18
|
+
elementClass: EFCaptionsSegment,
|
|
19
|
+
react: React
|
|
18
20
|
});
|
|
19
21
|
const CaptionsBeforeActiveWord = createComponent({
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
22
|
+
tagName: "ef-captions-before-active-word",
|
|
23
|
+
elementClass: EFCaptionsBeforeActiveWord,
|
|
24
|
+
react: React
|
|
23
25
|
});
|
|
24
26
|
const CaptionsAfterActiveWord = createComponent({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
27
|
+
tagName: "ef-captions-after-active-word",
|
|
28
|
+
elementClass: EFCaptionsAfterActiveWord,
|
|
29
|
+
react: React
|
|
28
30
|
});
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
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"}
|
package/dist/elements/Image.d.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
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
|
package/dist/elements/Image.js
CHANGED
|
@@ -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
|
-
|
|
4
|
+
|
|
5
|
+
//#region src/elements/Image.ts
|
|
4
6
|
const Image = createComponent({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
tagName: "ef-image",
|
|
8
|
+
elementClass: EFImage,
|
|
9
|
+
react: React
|
|
8
10
|
});
|
|
9
|
-
|
|
10
|
-
|
|
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 {
|
|
2
|
-
|
|
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
|
package/dist/elements/Surface.js
CHANGED
|
@@ -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
|
-
|
|
4
|
+
|
|
5
|
+
//#region src/elements/Surface.ts
|
|
4
6
|
const Surface = createComponent({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
tagName: "ef-surface",
|
|
8
|
+
elementClass: EFSurface,
|
|
9
|
+
react: React,
|
|
10
|
+
displayName: "Surface",
|
|
11
|
+
events: {}
|
|
10
12
|
});
|
|
11
|
-
|
|
12
|
-
|
|
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 {
|
|
2
|
-
|
|
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
|
-
|
|
4
|
+
|
|
5
|
+
//#region src/elements/ThumbnailStrip.ts
|
|
4
6
|
const ThumbnailStrip = createComponent({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
tagName: "ef-thumbnail-strip",
|
|
8
|
+
elementClass: EFThumbnailStrip,
|
|
9
|
+
react: React,
|
|
10
|
+
displayName: "ThumbnailStrip",
|
|
11
|
+
events: {}
|
|
10
12
|
});
|
|
11
|
-
|
|
12
|
-
|
|
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 {
|
|
2
|
-
|
|
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
|
-
|
|
4
|
+
|
|
5
|
+
//#region src/elements/Timegroup.ts
|
|
4
6
|
const Timegroup = createComponent({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
tagName: "ef-timegroup",
|
|
8
|
+
elementClass: EFTimegroup,
|
|
9
|
+
react: React
|
|
8
10
|
});
|
|
9
|
-
|
|
10
|
-
|
|
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"}
|
package/dist/elements/Video.d.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
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
|
package/dist/elements/Video.js
CHANGED
|
@@ -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
|
-
|
|
4
|
+
|
|
5
|
+
//#region src/elements/Video.ts
|
|
4
6
|
const Video = createComponent({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
tagName: "ef-video",
|
|
8
|
+
elementClass: EFVideo,
|
|
9
|
+
react: React
|
|
8
10
|
});
|
|
9
|
-
|
|
10
|
-
|
|
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 {
|
|
2
|
-
|
|
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
|
-
|
|
4
|
+
|
|
5
|
+
//#region src/elements/Waveform.ts
|
|
4
6
|
const Waveform = createComponent({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
tagName: "ef-waveform",
|
|
8
|
+
elementClass: EFWaveform,
|
|
9
|
+
react: React
|
|
8
10
|
});
|
|
9
|
-
|
|
10
|
-
|
|
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 {
|
|
2
|
-
|
|
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
|
-
|
|
4
|
+
|
|
5
|
+
//#region src/gui/Configuration.ts
|
|
4
6
|
const Configuration = createComponent({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
tagName: "ef-configuration",
|
|
8
|
+
elementClass: EFConfiguration,
|
|
9
|
+
react: React
|
|
8
10
|
});
|
|
9
|
-
|
|
10
|
-
|
|
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"}
|
package/dist/gui/Controls.d.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
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
|
package/dist/gui/Controls.js
CHANGED
|
@@ -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
|
-
|
|
4
|
+
|
|
5
|
+
//#region src/gui/Controls.ts
|
|
4
6
|
const Controls = createComponent({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
tagName: "ef-controls",
|
|
8
|
+
elementClass: EFControls,
|
|
9
|
+
react: React
|
|
8
10
|
});
|
|
9
|
-
|
|
10
|
-
|
|
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"}
|
package/dist/gui/EFDial.d.ts
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
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
|
package/dist/gui/EFDial.js
CHANGED
|
@@ -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
|
-
|
|
4
|
+
|
|
5
|
+
//#region src/gui/EFDial.ts
|
|
4
6
|
const Dial = createComponent({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
onChange: "change"
|
|
10
|
-
}
|
|
7
|
+
tagName: "ef-dial",
|
|
8
|
+
elementClass: EFDial,
|
|
9
|
+
react: React,
|
|
10
|
+
events: { onChange: "change" }
|
|
11
11
|
});
|
|
12
|
-
|
|
13
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
|
|
4
|
+
|
|
5
|
+
//#region src/gui/EFResizableBox.ts
|
|
4
6
|
const ResizableBox = createComponent({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
onBoundsChange: "bounds-change"
|
|
10
|
-
}
|
|
7
|
+
tagName: "ef-resizable-box",
|
|
8
|
+
elementClass: EFResizableBox,
|
|
9
|
+
react: React,
|
|
10
|
+
events: { onBoundsChange: "bounds-change" }
|
|
11
11
|
});
|
|
12
|
-
|
|
13
|
-
|
|
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"}
|
package/dist/gui/Filmstrip.d.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
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
|
package/dist/gui/Filmstrip.js
CHANGED
|
@@ -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
|
-
|
|
4
|
+
|
|
5
|
+
//#region src/gui/Filmstrip.ts
|
|
4
6
|
const Filmstrip = createComponent({
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
tagName: "ef-filmstrip",
|
|
8
|
+
elementClass: EFFilmstrip,
|
|
9
|
+
react: React
|
|
8
10
|
});
|
|
9
|
-
|
|
10
|
-
|
|
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"}
|