@zezosoft/react-player 1.0.1 → 1.0.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.
@@ -10,6 +10,7 @@ export declare const timeFormat: (seconds: number) => string;
10
10
  * @returns
11
11
  */
12
12
  export declare const secondsToMilliseconds: (seconds: number) => number;
13
+ export declare const getSeekableLiveEdge: (video: HTMLVideoElement) => number | null;
13
14
  /**
14
15
  * @description
15
16
  * @param url
@@ -5,6 +5,8 @@ interface PopoverProps {
5
5
  closeOnButtonClick?: boolean;
6
6
  className?: string;
7
7
  align?: "left" | "center" | "right";
8
+ onOpenChange?: (open: boolean) => void;
9
+ triggerAriaLabel?: string;
8
10
  }
9
11
  declare const Popover: React.FC<PopoverProps>;
10
12
  export default Popover;