@instructure/studio-player 0.3.3 → 0.3.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.
@@ -23,8 +23,9 @@ export type StudioPlayerProps = {
23
23
  forceComments?: boolean;
24
24
  /** Should player disable any caption related UI from player or not */
25
25
  disableCaptionSettings?: boolean;
26
+ disableStorage?: boolean;
26
27
  /** Specify to start video playback at a given time */
27
28
  startAt?: number;
28
29
  crossOrigin?: MediaPlayerProps['crossOrigin'];
29
30
  };
30
- export declare function StudioPlayer({ title, playerRef, src, captions, thumbnail, hideFullScreen, comments, locale, annotations, quizMarkers, interactive, onAnnotationClick, onQuizMarkerClick, onInteractivePinClick, interactiveMenuElements, kebabMenuElements, darkMode, autoLoadCaptionSrc, forceComments, disableCaptionSettings, startAt, crossOrigin, }: StudioPlayerProps): import("react/jsx-runtime").JSX.Element;
31
+ export declare function StudioPlayer({ title, playerRef, src, captions, thumbnail, hideFullScreen, comments, locale, annotations, quizMarkers, interactive, onAnnotationClick, onQuizMarkerClick, onInteractivePinClick, interactiveMenuElements, kebabMenuElements, darkMode, autoLoadCaptionSrc, forceComments, disableCaptionSettings, disableStorage, startAt, crossOrigin, }: StudioPlayerProps): import("react/jsx-runtime").JSX.Element;