@waveform-playlist/browser 5.0.0-alpha.17 → 5.0.0-alpha.19
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 +4 -0
- package/dist/index.js +114 -114
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1955 -1965
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -701,6 +701,8 @@ export declare interface MediaElementWaveformProps {
|
|
|
701
701
|
onAnnotationUpdate?: OnAnnotationUpdateFn;
|
|
702
702
|
/** Where to position the active annotation when auto-scrolling: 'center', 'start', 'end', or 'nearest'. Defaults to 'center'. */
|
|
703
703
|
scrollActivePosition?: ScrollLogicalPosition;
|
|
704
|
+
/** Which scrollable containers to scroll: 'nearest' (only the annotation list) or 'all' (including viewport). Defaults to 'nearest'. */
|
|
705
|
+
scrollActiveContainer?: 'nearest' | 'all';
|
|
704
706
|
className?: string;
|
|
705
707
|
}
|
|
706
708
|
|
|
@@ -1865,6 +1867,8 @@ export declare interface WaveformProps {
|
|
|
1865
1867
|
getAnnotationBoxLabel?: GetAnnotationBoxLabelFn;
|
|
1866
1868
|
/** Where to position the active annotation when auto-scrolling: 'center', 'start', 'end', or 'nearest'. Defaults to 'center'. */
|
|
1867
1869
|
scrollActivePosition?: ScrollLogicalPosition;
|
|
1870
|
+
/** Which scrollable containers to scroll: 'nearest' (only the annotation list) or 'all' (including viewport). Defaults to 'nearest'. */
|
|
1871
|
+
scrollActiveContainer?: 'nearest' | 'all';
|
|
1868
1872
|
className?: string;
|
|
1869
1873
|
showClipHeaders?: boolean;
|
|
1870
1874
|
interactiveClips?: boolean;
|