@waveform-playlist/browser 9.3.2 → 9.4.0

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/index.d.ts CHANGED
@@ -650,8 +650,6 @@ export declare interface KeyboardShortcutsProps {
650
650
  annotations?: boolean;
651
651
  /** Additional shortcuts appended to the defaults. */
652
652
  additionalShortcuts?: KeyboardShortcut[];
653
- /** Disable all shortcuts. Defaults to true. */
654
- enabled?: boolean;
655
653
  }
656
654
 
657
655
  /**
@@ -804,6 +802,8 @@ export declare interface MediaElementPlaylistProps {
804
802
  * Called with the full updated annotations array.
805
803
  */
806
804
  onAnnotationUpdate?: OnAnnotationUpdateFn;
805
+ /** Custom playhead render function. Receives position, color, and animation refs for smooth 60fps animation. */
806
+ renderPlayhead?: RenderPlayheadFunction;
807
807
  className?: string;
808
808
  }
809
809
 
@@ -918,6 +918,8 @@ export declare interface MediaElementWaveformProps {
918
918
  scrollActivePosition?: ScrollLogicalPosition;
919
919
  /** Which scrollable containers to scroll: 'nearest' (only the annotation list) or 'all' (including viewport). Defaults to 'nearest'. */
920
920
  scrollActiveContainer?: 'nearest' | 'all';
921
+ /** Custom playhead render function. Receives position, color, and animation refs for smooth 60fps animation. */
922
+ renderPlayhead?: RenderPlayheadFunction;
921
923
  className?: string;
922
924
  }
923
925