@editframe/elements 0.36.0-beta → 0.36.1-beta

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.
Files changed (42) hide show
  1. package/dist/canvas/EFCanvas.d.ts +4 -4
  2. package/dist/elements/EFAudio.d.ts +4 -4
  3. package/dist/elements/EFCaptions.d.ts +0 -4
  4. package/dist/elements/EFCaptions.js +12 -32
  5. package/dist/elements/EFCaptions.js.map +1 -1
  6. package/dist/elements/EFPanZoom.d.ts +4 -4
  7. package/dist/elements/EFSurface.d.ts +4 -4
  8. package/dist/elements/EFText.d.ts +4 -4
  9. package/dist/elements/EFTextSegment.d.ts +4 -4
  10. package/dist/elements/EFThumbnailStrip.d.ts +4 -4
  11. package/dist/elements/EFVideo.d.ts +6 -6
  12. package/dist/elements/EFWaveform.d.ts +4 -4
  13. package/dist/elements/updateAnimations.js +75 -0
  14. package/dist/elements/updateAnimations.js.map +1 -1
  15. package/dist/gui/EFActiveRootTemporal.d.ts +4 -4
  16. package/dist/gui/EFConfiguration.d.ts +4 -4
  17. package/dist/gui/EFControls.d.ts +2 -2
  18. package/dist/gui/EFDial.d.ts +4 -4
  19. package/dist/gui/EFFilmstrip.d.ts +2 -2
  20. package/dist/gui/EFFitScale.d.ts +3 -3
  21. package/dist/gui/EFFocusOverlay.d.ts +4 -4
  22. package/dist/gui/EFPause.d.ts +4 -4
  23. package/dist/gui/EFPlay.d.ts +4 -4
  24. package/dist/gui/EFPreview.d.ts +4 -4
  25. package/dist/gui/EFResizableBox.d.ts +4 -4
  26. package/dist/gui/EFScrubber.d.ts +4 -4
  27. package/dist/gui/EFTimeDisplay.d.ts +4 -4
  28. package/dist/gui/EFToggleLoop.d.ts +4 -4
  29. package/dist/gui/EFTogglePlay.d.ts +4 -4
  30. package/dist/gui/EFTransformHandles.d.ts +4 -4
  31. package/dist/gui/EFWorkbench.d.ts +6 -6
  32. package/dist/gui/EFWorkbench.js +28 -0
  33. package/dist/gui/EFWorkbench.js.map +1 -1
  34. package/dist/gui/hierarchy/EFHierarchy.d.ts +4 -4
  35. package/dist/gui/hierarchy/EFHierarchyItem.d.ts +2 -2
  36. package/dist/gui/timeline/tracks/ImageTrack.d.ts +2 -2
  37. package/dist/gui/timeline/tracks/TimegroupTrack.d.ts +5 -5
  38. package/dist/gui/timeline/tracks/VideoTrack.d.ts +4 -4
  39. package/dist/gui/tree/EFTree.d.ts +4 -4
  40. package/dist/gui/tree/EFTreeItem.d.ts +4 -4
  41. package/dist/style.css +33 -0
  42. package/package.json +2 -2
@@ -1,7 +1,7 @@
1
1
  import { ControllableInterface } from "./Controllable.js";
2
- import * as lit18 from "lit";
2
+ import * as lit20 from "lit";
3
3
  import { LitElement } from "lit";
4
- import * as lit_html18 from "lit-html";
4
+ import * as lit_html20 from "lit-html";
5
5
 
6
6
  //#region src/gui/EFScrubber.d.ts
7
7
  declare const EFScrubber_base: (new (...args: any[]) => {
@@ -10,7 +10,7 @@ declare const EFScrubber_base: (new (...args: any[]) => {
10
10
  effectiveContext: ControllableInterface | null;
11
11
  }) & typeof LitElement;
12
12
  declare class EFScrubber extends EFScrubber_base {
13
- static styles: lit18.CSSResult[];
13
+ static styles: lit20.CSSResult[];
14
14
  playing: boolean;
15
15
  contextCurrentTimeMs: number;
16
16
  contextDurationMs: number;
@@ -50,7 +50,7 @@ declare class EFScrubber extends EFScrubber_base {
50
50
  private boundHandlePointerUp;
51
51
  private boundHandlePointerCancel;
52
52
  private boundHandleContextMenu;
53
- render(): lit_html18.TemplateResult<1>;
53
+ render(): lit_html20.TemplateResult<1>;
54
54
  connectedCallback(): void;
55
55
  disconnectedCallback(): void;
56
56
  }
@@ -1,7 +1,7 @@
1
1
  import { ControllableInterface } from "./Controllable.js";
2
- import * as lit19 from "lit";
2
+ import * as lit21 from "lit";
3
3
  import { LitElement } from "lit";
4
- import * as lit_html19 from "lit-html";
4
+ import * as lit_html21 from "lit-html";
5
5
 
6
6
  //#region src/gui/EFTimeDisplay.d.ts
7
7
  declare const EFTimeDisplay_base: (new (...args: any[]) => {
@@ -10,11 +10,11 @@ declare const EFTimeDisplay_base: (new (...args: any[]) => {
10
10
  effectiveContext: ControllableInterface | null;
11
11
  }) & typeof LitElement;
12
12
  declare class EFTimeDisplay extends EFTimeDisplay_base {
13
- static styles: lit19.CSSResult;
13
+ static styles: lit21.CSSResult;
14
14
  currentTimeMs: number;
15
15
  durationMs: number;
16
16
  private formatTime;
17
- render(): lit_html19.TemplateResult<1>;
17
+ render(): lit_html21.TemplateResult<1>;
18
18
  }
19
19
  declare global {
20
20
  interface HTMLElementTagNameMap {
@@ -1,7 +1,7 @@
1
1
  import { ControllableInterface } from "./Controllable.js";
2
- import * as lit17 from "lit";
2
+ import * as lit19 from "lit";
3
3
  import { LitElement } from "lit";
4
- import * as lit_html17 from "lit-html";
4
+ import * as lit_html19 from "lit-html";
5
5
 
6
6
  //#region src/gui/EFToggleLoop.d.ts
7
7
  declare const EFToggleLoop_base: (new (...args: any[]) => {
@@ -10,9 +10,9 @@ declare const EFToggleLoop_base: (new (...args: any[]) => {
10
10
  effectiveContext: ControllableInterface | null;
11
11
  }) & typeof LitElement;
12
12
  declare class EFToggleLoop extends EFToggleLoop_base {
13
- static styles: lit17.CSSResult[];
13
+ static styles: lit19.CSSResult[];
14
14
  get context(): ControllableInterface | null;
15
- render(): lit_html17.TemplateResult<1>;
15
+ render(): lit_html19.TemplateResult<1>;
16
16
  }
17
17
  declare global {
18
18
  interface HTMLElementTagNameMap {
@@ -1,7 +1,7 @@
1
1
  import { ControllableInterface } from "./Controllable.js";
2
- import * as lit14 from "lit";
2
+ import * as lit16 from "lit";
3
3
  import { LitElement } from "lit";
4
- import * as lit_html14 from "lit-html";
4
+ import * as lit_html16 from "lit-html";
5
5
 
6
6
  //#region src/gui/EFTogglePlay.d.ts
7
7
  declare const EFTogglePlay_base: (new (...args: any[]) => {
@@ -10,12 +10,12 @@ declare const EFTogglePlay_base: (new (...args: any[]) => {
10
10
  effectiveContext: ControllableInterface | null;
11
11
  }) & typeof LitElement;
12
12
  declare class EFTogglePlay extends EFTogglePlay_base {
13
- static styles: lit14.CSSResult[];
13
+ static styles: lit16.CSSResult[];
14
14
  playing: boolean;
15
15
  get efContext(): ControllableInterface | null;
16
16
  connectedCallback(): void;
17
17
  disconnectedCallback(): void;
18
- render(): lit_html14.TemplateResult<1>;
18
+ render(): lit_html16.TemplateResult<1>;
19
19
  togglePlay: () => void;
20
20
  private getPlaybackController;
21
21
  }
@@ -1,7 +1,7 @@
1
1
  import { PanZoomTransform } from "../elements/EFPanZoom.js";
2
- import * as lit24 from "lit";
2
+ import * as lit26 from "lit";
3
3
  import { LitElement } from "lit";
4
- import * as lit_html23 from "lit-html";
4
+ import * as lit_html25 from "lit-html";
5
5
 
6
6
  //#region src/gui/EFTransformHandles.d.ts
7
7
  interface TransformBounds {
@@ -49,7 +49,7 @@ declare class EFTransformHandles extends LitElement {
49
49
  * Note: Not a @state() property to avoid re-renders during interaction.
50
50
  */
51
51
  private initialBounds;
52
- static styles: lit24.CSSResult;
52
+ static styles: lit26.CSSResult;
53
53
  private resizeObserver?;
54
54
  /**
55
55
  * Single source of truth for zoom scale.
@@ -79,7 +79,7 @@ declare class EFTransformHandles extends LitElement {
79
79
  private handleMouseMove;
80
80
  private handleMouseUp;
81
81
  private cleanup;
82
- render(): lit_html23.TemplateResult<1>;
82
+ render(): lit_html25.TemplateResult<1>;
83
83
  }
84
84
  declare global {
85
85
  interface HTMLElementTagNameMap {
@@ -1,15 +1,15 @@
1
1
  import { ContextMixinInterface } from "./ContextMixin.js";
2
2
  import { RenderToVideoOptions } from "../preview/renderTimegroupToVideo.js";
3
3
  import "./EFFitScale.js";
4
- import * as lit8 from "lit";
4
+ import * as lit5 from "lit";
5
5
  import { LitElement, PropertyValueMap } from "lit";
6
- import * as lit_html8 from "lit-html";
7
- import * as lit_html_directives_ref_js2 from "lit-html/directives/ref.js";
6
+ import * as lit_html5 from "lit-html";
7
+ import * as lit_html_directives_ref_js1 from "lit-html/directives/ref.js";
8
8
 
9
9
  //#region src/gui/EFWorkbench.d.ts
10
10
  declare const EFWorkbench_base: (new (...args: any[]) => ContextMixinInterface) & typeof LitElement;
11
11
  declare class EFWorkbench extends EFWorkbench_base {
12
- static styles: lit8.CSSResult[];
12
+ static styles: lit5.CSSResult[];
13
13
  rendering: boolean;
14
14
  private panZoomTransform;
15
15
  private isExporting;
@@ -61,7 +61,7 @@ declare class EFWorkbench extends EFWorkbench_base {
61
61
  private canvasPreviewResult;
62
62
  private canvasAnimationFrame;
63
63
  private boundHandleTransformChanged;
64
- focusOverlay: lit_html_directives_ref_js2.Ref<HTMLDivElement>;
64
+ focusOverlay: lit_html_directives_ref_js1.Ref<HTMLDivElement>;
65
65
  handleStageWheel(event: WheelEvent): void;
66
66
  connectedCallback(): void;
67
67
  disconnectedCallback(): void;
@@ -194,7 +194,7 @@ declare class EFWorkbench extends EFWorkbench_base {
194
194
  updated(changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
195
195
  drawOverlays: () => void;
196
196
  private renderPlaybackStats;
197
- render(): lit_html8.TemplateResult<1>;
197
+ render(): lit_html5.TemplateResult<1>;
198
198
  }
199
199
  declare global {
200
200
  interface HTMLElementTagNameMap {
@@ -126,6 +126,34 @@ let EFWorkbench = class EFWorkbench$1 extends ContextMixin(TWMixin(LitElement))
126
126
  --toolbar-border: rgba(148, 163, 184, 0.15);
127
127
  }
128
128
 
129
+ /* Utility classes (not relying on external Tailwind) */
130
+ .grid {
131
+ display: grid;
132
+ }
133
+
134
+ .overflow-hidden {
135
+ overflow: hidden;
136
+ }
137
+
138
+ .fixed {
139
+ position: fixed;
140
+ }
141
+
142
+ .inset-0 {
143
+ top: 0;
144
+ right: 0;
145
+ bottom: 0;
146
+ left: 0;
147
+ }
148
+
149
+ .h-full {
150
+ height: 100%;
151
+ }
152
+
153
+ .w-full {
154
+ width: 100%;
155
+ }
156
+
129
157
  .toolbar {
130
158
  display: flex;
131
159
  align-items: center;