@twick/live-player 0.14.2 → 0.14.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.
package/dist/index.mjs CHANGED
@@ -1,8 +1,11 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import { useState, useRef, useEffect, useCallback, useMemo, createContext, useContext } from "react";
3
3
  const PLAYER_STATE = {
4
+ /** Player is refreshing/reloading content */
4
5
  REFRESH: "Refresh",
6
+ /** Player is actively playing content */
5
7
  PLAYING: "Playing",
8
+ /** Player is paused */
6
9
  PAUSED: "Paused"
7
10
  };
8
11
  const getBaseProject = (videoSize, playerId) => {
@@ -22645,6 +22648,7 @@ export {
22645
22648
  LivePlayer,
22646
22649
  LivePlayerProvider,
22647
22650
  PLAYER_STATE,
22651
+ generateId,
22648
22652
  getBaseProject,
22649
22653
  useLivePlayerContext
22650
22654
  };