react-iiif-vault 2.0.5 → 2.0.6

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
@@ -616,6 +616,7 @@ type MediaStrategy = {
616
616
  media: SingleAudio | SingleVideo | AudioSequence | VideoSequence | SingleYouTubeVideo;
617
617
  choice?: ChoiceDescription;
618
618
  annotations?: AnnotationPageDescription;
619
+ noSpatial?: boolean;
619
620
  captions?: Array<{
620
621
  id: string;
621
622
  type: string;
@@ -1688,7 +1689,7 @@ declare const unknownResponse: UseRenderingStrategy[0];
1688
1689
  declare const unsupportedStrategy: (reason: string) => UnknownStrategy;
1689
1690
  declare const emptyStrategy: (width: number, height: number) => UseRenderingStrategy[0];
1690
1691
 
1691
- declare function getVideoStrategy(canvas: CanvasNormalized, paintables: Paintables, vault: CompatVault): UnknownStrategy | MediaStrategy;
1692
+ declare function getVideoStrategy(canvas: CanvasNormalized, paintables: Paintables, vault: CompatVault, enforceSpatial?: boolean): UnknownStrategy | MediaStrategy;
1692
1693
 
1693
1694
  declare function useAnnotation(options?: {
1694
1695
  id: string;