@editframe/elements 0.8.0-beta.5 → 0.8.0-beta.8
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/EF_FRAMEGEN.d.ts +0 -1
- package/dist/elements/CrossUpdateController.d.ts +0 -1
- package/dist/elements/EFAudio.d.ts +0 -1
- package/dist/elements/EFCaptions.d.ts +0 -1
- package/dist/elements/EFImage.d.ts +0 -1
- package/dist/elements/EFMedia.d.ts +2 -3
- package/dist/elements/EFSourceMixin.d.ts +0 -1
- package/dist/elements/EFTemporal.d.ts +0 -1
- package/dist/elements/EFTimegroup.browsertest.d.ts +0 -1
- package/dist/elements/EFTimegroup.d.ts +1 -2
- package/dist/elements/EFVideo.d.ts +0 -1
- package/dist/elements/EFWaveform.d.ts +0 -1
- package/dist/elements/FetchMixin.d.ts +0 -1
- package/dist/elements/TimegroupController.d.ts +0 -1
- package/dist/elements/util.d.ts +0 -1
- package/dist/gui/ContextMixin.d.ts +0 -1
- package/dist/gui/EFFilmstrip.d.ts +0 -1
- package/dist/gui/EFPreview.d.ts +0 -1
- package/dist/gui/EFToggleLoop.d.ts +0 -1
- package/dist/gui/EFTogglePlay.d.ts +0 -1
- package/dist/gui/EFWorkbench.d.ts +0 -1
- package/dist/gui/TWMixin.d.ts +0 -1
- package/dist/gui/efContext.d.ts +0 -1
- package/dist/index.d.ts +0 -1
- package/package.json +3 -3
package/dist/EF_FRAMEGEN.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import { LitElement, PropertyValueMap } from 'lit';
|
|
|
2
2
|
import { Task } from '@lit/task';
|
|
3
3
|
import { EFVideo } from './EFVideo.ts';
|
|
4
4
|
import { EFAudio } from './EFAudio.ts';
|
|
5
|
-
|
|
6
5
|
declare const EFCaptionsActiveWord_base: (new (...args: any[]) => import('./EFTemporal.ts').TemporalMixinInterface) & typeof LitElement;
|
|
7
6
|
export declare class EFCaptionsActiveWord extends EFCaptionsActiveWord_base {
|
|
8
7
|
static styles: import('lit').CSSResult[];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Task } from '@lit/task';
|
|
2
2
|
import { LitElement } from 'lit';
|
|
3
|
-
|
|
4
3
|
declare const EFImage_base: (new (...args: any[]) => import('./EFSourceMixin.ts').EFSourceMixinInterface) & (new (...args: any[]) => import('./FetchMixin.ts').FetchMixinInterface) & typeof LitElement;
|
|
5
4
|
export declare class EFImage extends EFImage_base {
|
|
6
5
|
static styles: import('lit').CSSResult[];
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { LitElement, PropertyValueMap } from 'lit';
|
|
2
2
|
import { Task } from '@lit/task';
|
|
3
3
|
import { TrackFragmentIndex, TrackSegment } from '../../../assets/src';
|
|
4
|
-
import { MP4File } from '
|
|
5
|
-
import { VideoAsset } from '
|
|
6
|
-
|
|
4
|
+
import { MP4File } from '@editframe/assets/MP4File.js';
|
|
5
|
+
import { VideoAsset } from '@editframe/assets/EncodedAsset.js';
|
|
7
6
|
import type * as MP4Box from "mp4box";
|
|
8
7
|
export declare const deepGetMediaElements: (element: Element, medias?: EFMedia[]) => EFMedia[];
|
|
9
8
|
declare const EFMedia_base: (new (...args: any[]) => import('./EFSourceMixin.ts').EFSourceMixinInterface) & (new (...args: any[]) => import('./EFTemporal.ts').TemporalMixinInterface) & (new (...args: any[]) => import('./FetchMixin.ts').FetchMixinInterface) & typeof LitElement;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { LitElement, PropertyValueMap } from 'lit';
|
|
2
2
|
import { Task } from '@lit/task';
|
|
3
|
-
|
|
4
3
|
export declare const shallowGetTimegroups: (element: Element, groups?: EFTimegroup[]) => EFTimegroup[];
|
|
5
4
|
declare const EFTimegroup_base: (new (...args: any[]) => import('./EFTemporal.ts').TemporalMixinInterface) & typeof LitElement;
|
|
6
5
|
export declare class EFTimegroup extends EFTimegroup_base {
|
|
@@ -18,7 +17,7 @@ export declare class EFTimegroup extends EFTimegroup_base {
|
|
|
18
17
|
connectedCallback(): void;
|
|
19
18
|
get storageKey(): string;
|
|
20
19
|
get durationMs(): number;
|
|
21
|
-
waitForMediaDurations(): Promise<(Record<number, import('packages/assets/
|
|
20
|
+
waitForMediaDurations(): Promise<(Record<number, import('packages/assets/src/Probe.ts').TrackFragmentIndex> | undefined)[]>;
|
|
22
21
|
get childTemporals(): import('./EFTemporal.ts').TemporalMixinInterface[];
|
|
23
22
|
protected updated(changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
24
23
|
shouldWrapWithWorkbench(): boolean;
|
|
@@ -3,7 +3,6 @@ import { LitElement } from 'lit';
|
|
|
3
3
|
import { EFVideo } from './EFVideo.ts';
|
|
4
4
|
import { Task } from '@lit/task';
|
|
5
5
|
import { Ref } from 'lit/directives/ref.js';
|
|
6
|
-
|
|
7
6
|
declare const EFWaveform_base: (new (...args: any[]) => import('./EFTemporal.ts').TemporalMixinInterface) & typeof LitElement;
|
|
8
7
|
export declare class EFWaveform extends EFWaveform_base {
|
|
9
8
|
static styles: never[];
|
package/dist/elements/util.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ import { EFTimegroup } from '../elements/EFTimegroup.ts';
|
|
|
6
6
|
import { TemporalMixinInterface } from '../elements/EFTemporal.ts';
|
|
7
7
|
import { TimegroupController } from '../elements/TimegroupController.ts';
|
|
8
8
|
import { FocusContext } from './focusContext.ts';
|
|
9
|
-
|
|
10
9
|
declare class ElementFilmstripController implements ReactiveController {
|
|
11
10
|
private host;
|
|
12
11
|
private filmstrip;
|
package/dist/gui/EFPreview.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { LitElement, PropertyValueMap } from 'lit';
|
|
2
|
-
|
|
3
2
|
declare const EFWorkbench_base: (new (...args: any[]) => import('./ContextMixin.ts').ContextMixinInterface) & typeof LitElement;
|
|
4
3
|
export declare class EFWorkbench extends EFWorkbench_base {
|
|
5
4
|
static styles: import('lit').CSSResult[];
|
package/dist/gui/TWMixin.d.ts
CHANGED
package/dist/gui/efContext.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@editframe/elements",
|
|
3
|
-
"version": "0.8.0-beta.
|
|
3
|
+
"version": "0.8.0-beta.8",
|
|
4
4
|
"description": "",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"author": "",
|
|
21
21
|
"license": "UNLICENSED",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@editframe/assets": "0.8.0-beta.
|
|
23
|
+
"@editframe/assets": "0.8.0-beta.8",
|
|
24
24
|
"@lit/context": "^1.1.2",
|
|
25
25
|
"@lit/task": "^1.0.1",
|
|
26
26
|
"d3": "^7.9.0",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"autoprefixer": "^10.4.19",
|
|
36
36
|
"rollup-plugin-tsconfig-paths": "^1.5.2",
|
|
37
37
|
"typescript": "^5.5.4",
|
|
38
|
-
"vite-plugin-dts": "^
|
|
38
|
+
"vite-plugin-dts": "^4.0.3",
|
|
39
39
|
"vite-tsconfig-paths": "^4.3.2"
|
|
40
40
|
}
|
|
41
41
|
}
|