@editframe/elements 0.10.0-beta.7 → 0.11.0-beta.1
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 +1 -1
- package/dist/elements/EFMedia.d.ts +3 -3
- package/dist/elements/EFTimegroup.d.ts +1 -1
- package/dist/elements/EFVideo.d.ts +1 -1
- package/dist/elements/src/elements/EFMedia.js +2 -2
- package/package.json +2 -2
- /package/dist/assets/{dist → src}/EncodedAsset.js +0 -0
- /package/dist/assets/{dist → src}/MP4File.js +0 -0
- /package/dist/assets/{dist → src}/memoize.js +0 -0
package/dist/EF_FRAMEGEN.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { LitElement, PropertyValueMap } from 'lit';
|
|
2
2
|
import { Task } from '@lit/task';
|
|
3
|
-
import { TrackFragmentIndex, TrackSegment } from '../../../assets/src';
|
|
4
|
-
import { MP4File } from '
|
|
5
|
-
import { VideoAsset } from '
|
|
3
|
+
import { TrackFragmentIndex, TrackSegment } from '../../../assets/src/index.ts';
|
|
4
|
+
import { MP4File } from '../../../assets/src/MP4File.ts';
|
|
5
|
+
import { VideoAsset } from '../../../assets/src/EncodedAsset.ts';
|
|
6
6
|
import type * as MP4Box from "mp4box";
|
|
7
7
|
export declare const deepGetMediaElements: (element: Element, medias?: EFMedia[]) => EFMedia[];
|
|
8
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;
|
|
@@ -17,7 +17,7 @@ export declare class EFTimegroup extends EFTimegroup_base {
|
|
|
17
17
|
connectedCallback(): void;
|
|
18
18
|
get storageKey(): string;
|
|
19
19
|
get durationMs(): number;
|
|
20
|
-
waitForMediaDurations(): Promise<Record<number, import('
|
|
20
|
+
waitForMediaDurations(): Promise<Record<number, import('../../../assets/src/index.ts').TrackFragmentIndex>[]>;
|
|
21
21
|
get childTemporals(): import('./EFTemporal.ts').TemporalMixinInterface[];
|
|
22
22
|
protected updated(changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
23
23
|
shouldWrapWithWorkbench(): boolean;
|
|
@@ -8,7 +8,7 @@ export declare class EFVideo extends EFVideo_base {
|
|
|
8
8
|
render(): import('lit-html').TemplateResult<1>;
|
|
9
9
|
get canvasElement(): HTMLCanvasElement | undefined;
|
|
10
10
|
frameTask: Task<readonly [import('@lit/task').TaskStatus, import('@lit/task').TaskStatus, import('@lit/task').TaskStatus, import('@lit/task').TaskStatus, import('@lit/task').TaskStatus, import('@lit/task').TaskStatus], void>;
|
|
11
|
-
paintTask: Task<readonly [import('
|
|
11
|
+
paintTask: Task<readonly [import('../../../assets/src/EncodedAsset.ts').VideoAsset | undefined, number], number | undefined>;
|
|
12
12
|
}
|
|
13
13
|
declare global {
|
|
14
14
|
interface HTMLElementTagNameMap {
|
|
@@ -4,8 +4,8 @@ import { deepArrayEquals } from "@lit/task/deep-equals.js";
|
|
|
4
4
|
import { Task } from "@lit/task";
|
|
5
5
|
import { consume } from "@lit/context";
|
|
6
6
|
import debug from "debug";
|
|
7
|
-
import { MP4File } from "../../../assets/
|
|
8
|
-
import { VideoAsset } from "../../../assets/
|
|
7
|
+
import { MP4File } from "../../../assets/src/MP4File.js";
|
|
8
|
+
import { VideoAsset } from "../../../assets/src/EncodedAsset.js";
|
|
9
9
|
import { EFTemporal } from "./EFTemporal.js";
|
|
10
10
|
import { FetchMixin } from "./FetchMixin.js";
|
|
11
11
|
import { EFSourceMixin } from "./EFSourceMixin.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@editframe/elements",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0-beta.1",
|
|
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.
|
|
23
|
+
"@editframe/assets": "0.11.0-beta.1",
|
|
24
24
|
"@lit/context": "^1.1.2",
|
|
25
25
|
"@lit/task": "^1.0.1",
|
|
26
26
|
"d3": "^7.9.0",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|