@nicorp/nui 0.11.4 → 0.11.7

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/index.d.ts CHANGED
@@ -1975,6 +1975,7 @@ export declare interface VideoPlayerProps extends VariantProps<typeof videoPlaye
1975
1975
  enablePiP?: boolean;
1976
1976
  enableFullscreen?: boolean;
1977
1977
  enablePlaybackRate?: boolean;
1978
+ enableQualitySelector?: boolean;
1978
1979
  playbackRates?: number[];
1979
1980
  tracks?: VideoTrack[];
1980
1981
  chapters?: VideoChapter[];
@@ -1988,6 +1989,7 @@ export declare interface VideoPlayerProps extends VariantProps<typeof videoPlaye
1988
1989
  onEnded?: () => void;
1989
1990
  onTimeUpdate?: (currentTime: number) => void;
1990
1991
  onFullscreenChange?: (isFullscreen: boolean) => void;
1992
+ live?: boolean;
1991
1993
  className?: string;
1992
1994
  }
1993
1995