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 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