@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.cjs.js +27 -27
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +5914 -5842
- package/dist/index.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
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
|
|