@editframe/react 0.13.0-beta.3 → 0.14.0-beta.2
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.
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { EFTimegroup as EFTimegroupElement } from '../../../elements/src/index.ts';
|
|
2
|
-
export declare const Timegroup: import('../create-component.
|
|
2
|
+
export declare const Timegroup: import('../create-component.ts').ReactWebComponent<EFTimegroupElement, {}>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EFConfiguration } from "@editframe/elements";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { createComponent } from "../create-component.js";
|
|
4
|
+
const Configuration = createComponent({
|
|
5
|
+
tagName: "ef-configuration",
|
|
6
|
+
elementClass: EFConfiguration,
|
|
7
|
+
react: React
|
|
8
|
+
});
|
|
9
|
+
export {
|
|
10
|
+
Configuration
|
|
11
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export { Image } from './elements/Image.js';
|
|
|
4
4
|
export { Timegroup } from './elements/Timegroup.js';
|
|
5
5
|
export { Video } from './elements/Video.js';
|
|
6
6
|
export { Waveform } from './elements/Waveform.js';
|
|
7
|
+
export { Configuration } from './gui/Configuration.js';
|
|
7
8
|
export { Workbench } from './gui/Workbench.js';
|
|
8
9
|
export { Filmstrip } from './gui/Filmstrip.js';
|
|
9
10
|
export { Preview } from './gui/Preview.js';
|
package/dist/index.js
CHANGED
|
@@ -4,6 +4,7 @@ import { Image } from "./elements/Image.js";
|
|
|
4
4
|
import { Timegroup } from "./elements/Timegroup.js";
|
|
5
5
|
import { Video } from "./elements/Video.js";
|
|
6
6
|
import { Waveform } from "./elements/Waveform.js";
|
|
7
|
+
import { Configuration } from "./gui/Configuration.js";
|
|
7
8
|
import { Workbench } from "./gui/Workbench.js";
|
|
8
9
|
import { Filmstrip } from "./gui/Filmstrip.js";
|
|
9
10
|
import { Preview } from "./gui/Preview.js";
|
|
@@ -20,6 +21,7 @@ export {
|
|
|
20
21
|
CaptionsAfterActiveWord,
|
|
21
22
|
CaptionsBeforeActiveWord,
|
|
22
23
|
CaptionsSegment,
|
|
24
|
+
Configuration,
|
|
23
25
|
Filmstrip,
|
|
24
26
|
FocusOverlay,
|
|
25
27
|
Image,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@editframe/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0-beta.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"author": "",
|
|
21
21
|
"license": "UNLICENSED",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@editframe/elements": "0.
|
|
23
|
+
"@editframe/elements": "0.14.0-beta.2",
|
|
24
24
|
"@lit/react": "^1.0.5",
|
|
25
25
|
"debug": "^4.3.5",
|
|
26
26
|
"lit": "^3.2.1",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EFTimegroup as EFTimegroupElement } from "@editframe/elements";
|
|
2
2
|
import React from "react";
|
|
3
|
-
import { createComponent } from "../create-component.
|
|
3
|
+
import { createComponent } from "../create-component.ts";
|
|
4
4
|
|
|
5
5
|
export const Timegroup = createComponent({
|
|
6
6
|
tagName: "ef-timegroup",
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { EFConfiguration } from "@editframe/elements";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { createComponent } from "../create-component.ts";
|
|
4
|
+
|
|
5
|
+
export const Configuration = createComponent({
|
|
6
|
+
tagName: "ef-configuration",
|
|
7
|
+
elementClass: EFConfiguration,
|
|
8
|
+
react: React,
|
|
9
|
+
});
|