react-iiif-vault 1.2.3 → 1.2.4
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/bundle.d.ts +3 -1
- package/dist/bundle.global.js +18 -18
- package/dist/canvas-panel.cjs +5 -5
- package/dist/canvas-panel.d.cts +1 -1
- package/dist/canvas-panel.d.ts +1 -1
- package/dist/canvas-panel.js +1 -1
- package/dist/chunk-FMNC7JOX.js +48 -0
- package/dist/{index-ns1Yq6EJ.d.cts → index-Bxl9_Mut.d.cts} +3 -1
- package/dist/{index-DBIPIOrR.d.ts → index-DolLOoZi.d.ts} +3 -1
- package/dist/index.cjs +7 -7
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-AWTNLE7O.js +0 -48
package/dist/bundle.d.ts
CHANGED
|
@@ -305,12 +305,14 @@ interface VideoComponentProps {
|
|
|
305
305
|
element: RefObject<HTMLVideoElement>;
|
|
306
306
|
media: SingleVideo;
|
|
307
307
|
playPause: () => void;
|
|
308
|
+
poster?: string;
|
|
308
309
|
}
|
|
309
|
-
declare function VideoHTML({ element, media, playPause }: VideoComponentProps): react_jsx_runtime.JSX.Element;
|
|
310
|
+
declare function VideoHTML({ element, media, playPause, poster }: VideoComponentProps): react_jsx_runtime.JSX.Element;
|
|
310
311
|
declare function Video({ media, mediaControlsDeps, children, videoComponent, }: {
|
|
311
312
|
media: SingleVideo;
|
|
312
313
|
mediaControlsDeps?: any[];
|
|
313
314
|
children: ReactNode;
|
|
315
|
+
posterCanvasId?: string;
|
|
314
316
|
videoComponent?: FC<VideoComponentProps>;
|
|
315
317
|
}): null;
|
|
316
318
|
|