react-iiif-vault 1.5.1 → 1.5.3

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
@@ -479,14 +479,14 @@ declare function RenderAnnotationStrategy({ children }: AnnotationStrategyProps)
479
479
  interface RenderAudioStrategyProps {
480
480
  as?: React.ComponentType<AudioComponentProps>;
481
481
  }
482
- declare function RenderAudioStrategy({ as: CustomAudio }: RenderAudioStrategyProps): react_jsx_runtime.JSX.Element | null;
482
+ declare function RenderAudioStrategy({ as: CustomAudio, }: RenderAudioStrategyProps): react_jsx_runtime.JSX.Element | null;
483
483
 
484
484
  declare function RenderAccompanyingCanvas(): react_jsx_runtime.JSX.Element;
485
485
 
486
486
  interface RenderVideoStrategyProps {
487
487
  as?: React__default.ComponentType<VideoComponentProps>;
488
488
  }
489
- declare function RenderVideoStrategy({ as: CustomVideo }: RenderVideoStrategyProps): react_jsx_runtime.JSX.Element | null;
489
+ declare function RenderVideoStrategy({ as: CustomVideo, }: RenderVideoStrategyProps): react_jsx_runtime.JSX.Element | null;
490
490
 
491
491
  declare function RenderYouTubeStrategy(): react_jsx_runtime.JSX.Element | null;
492
492
 
@@ -565,6 +565,7 @@ interface SequenceThumbnailsProps {
565
565
  width: number;
566
566
  height?: number;
567
567
  };
568
+ dereference?: boolean;
568
569
  classes?: {
569
570
  container?: string;
570
571
  row?: string;
@@ -585,8 +586,9 @@ interface SequenceThumbnailsProps {
585
586
  figure?: boolean;
586
587
  showLabel?: boolean;
587
588
  fallback?: React.ReactNode;
589
+ scrollBehaviour?: ScrollBehavior;
588
590
  }
589
- declare function SequenceThumbnails({ flat, size, classes, showLabel, figure, fallback }: SequenceThumbnailsProps): react_jsx_runtime.JSX.Element;
591
+ declare function SequenceThumbnails({ scrollBehaviour, dereference, flat, size, classes, showLabel, figure, fallback }: SequenceThumbnailsProps): react_jsx_runtime.JSX.Element;
590
592
 
591
593
  interface SingleCanvasThumbnailProps {
592
594
  canvasId?: string;