@editframe/react 0.12.0-beta.15 → 0.12.0-beta.18

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.ts').ReactWebComponent<EFTimegroupElement, {}>;
2
+ export declare const Timegroup: import('../create-component.js').ReactWebComponent<EFTimegroupElement, {}>;
@@ -1,6 +1,6 @@
1
+ import { EFTimegroup } from "@editframe/elements";
1
2
  import React from "react";
2
3
  import { createComponent } from "../create-component.js";
3
- import { EFTimegroup } from "@editframe/elements";
4
4
  const Timegroup = createComponent({
5
5
  tagName: "ef-timegroup",
6
6
  elementClass: EFTimegroup,
package/dist/index.d.ts CHANGED
@@ -1,32 +1,32 @@
1
1
  export {
2
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';
3
+ Audio as EFAudio, Audio, } from './elements/Audio.js';
4
4
  export {
5
5
  /** @deprecated Use `Captions` instead of `EFCaptions`. Exports starting `EF*` wil be removed in a future release. */
6
6
  Captions as EFCaptions, Captions,
7
7
  /** @deprecated Use `CaptionsActiveWord` instead of `EFCaptionsActiveWord`. Exports starting `EF*` wil be removed in a future release. */
8
- CaptionsActiveWord as EFCaptionsActiveWord, CaptionsActiveWord, CaptionsSegment, CaptionsBeforeActiveWord, CaptionsAfterActiveWord, } from './elements/Captions.ts';
9
- export { Image as EFImage, Image, } from './elements/Image.ts';
8
+ CaptionsActiveWord as EFCaptionsActiveWord, CaptionsActiveWord, CaptionsSegment, CaptionsBeforeActiveWord, CaptionsAfterActiveWord, } from './elements/Captions.js';
9
+ export { Image as EFImage, Image, } from './elements/Image.js';
10
10
  export {
11
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';
12
+ Timegroup as EFTimegroup, Timegroup, } from './elements/Timegroup.js';
13
13
  export {
14
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';
15
+ Video as EFVideo, Video, } from './elements/Video.js';
16
16
  export {
17
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';
18
+ Waveform as EFWaveform, Waveform, } from './elements/Waveform.js';
19
19
  export {
20
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';
21
+ Workbench as EFWorkbench, Workbench, } from './gui/Workbench.js';
22
22
  export {
23
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';
24
+ Filmstrip as EFFilmstrip, Filmstrip, } from './gui/Filmstrip.js';
25
25
  export {
26
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';
30
- export { Scrubber } from './gui/Scrubber.ts';
31
- export { useTimingInfo } from './hooks/useTimingInfo.ts';
27
+ EFPreview, EFPreview as Preview, } from './gui/Preview.js';
28
+ export { TogglePlay } from './gui/TogglePlay.js';
29
+ export { ToggleLoop } from './gui/ToggleLoop.js';
30
+ export { Scrubber } from './gui/Scrubber.js';
31
+ export { useTimingInfo } from './hooks/useTimingInfo.js';
32
32
  export { TimeDisplay } from './components/TimeDisplay.tsx';
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@editframe/react",
3
- "version": "0.12.0-beta.15",
3
+ "version": "0.12.0-beta.18",
4
4
  "description": "",
5
5
  "exports": {
6
6
  ".": {
7
7
  "import": {
8
- "types": "./dist/packages/react/src/index.d.ts",
8
+ "types": "./dist/index.d.ts",
9
9
  "default": "./dist/index.js"
10
10
  }
11
11
  }
@@ -14,14 +14,16 @@
14
14
  "scripts": {
15
15
  "typecheck": "tsc --noEmit --emitDeclarationOnly false",
16
16
  "build": "vite build",
17
- "build:watch": "vite build --watch"
17
+ "build:watch": "vite build --watch",
18
+ "typedoc": "typedoc --json ../../docs/react.json --plugin typedoc-plugin-zod --excludeExternals ./src"
18
19
  },
19
20
  "author": "",
20
21
  "license": "UNLICENSED",
21
22
  "dependencies": {
22
- "@editframe/elements": "0.12.0-beta.15",
23
+ "@editframe/elements": "0.12.0-beta.18",
23
24
  "@lit/react": "^1.0.5",
24
25
  "debug": "^4.3.5",
26
+ "lit": "^3.2.1",
25
27
  "react": "^18.3.0",
26
28
  "react-dom": "^18.3.0"
27
29
  },
@@ -1,6 +1,6 @@
1
- import React from "react";
2
- import { createComponent } from "../create-component.ts";
3
1
  import { EFTimegroup as EFTimegroupElement } from "@editframe/elements";
2
+ import React from "react";
3
+ import { createComponent } from "../create-component.js";
4
4
 
5
5
  export const Timegroup = createComponent({
6
6
  tagName: "ef-timegroup",