@kkcompany/player 2.25.0-canary.23 → 2.25.0-canary.25
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/CHANGELOG.md +4 -0
- package/dist/StallReload-BFlQRphx.mjs +717 -0
- package/dist/Video-CMbK-cxg.mjs +120 -0
- package/dist/adaptation-BcTsh-wx.mjs +74 -0
- package/dist/api-2BOrEA5d.mjs +1057 -0
- package/dist/debugUtil-IF7p5TSI.mjs +23 -0
- package/dist/events-B3vI3Srm.mjs +16 -0
- package/dist/fixDashManifest-CJ63KKaA.mjs +56 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.mjs +3 -10148
- package/dist/loadPlayer-CQdGA3Te.mjs +1560 -0
- package/dist/loadScript-Ct19kU9g.mjs +13 -0
- package/dist/mediaBindings-CoY60lQw.mjs +542 -0
- package/dist/modules.d.mts +51 -0
- package/dist/modules.mjs +631 -2201
- package/dist/playerCore/index.d.mts +3 -0
- package/dist/playerCore/index.mjs +4 -0
- package/dist/plugins/index.d.mts +2 -0
- package/dist/plugins/index.mjs +3 -0
- package/dist/reactEntry.d.mts +20 -0
- package/dist/reactEntry.mjs +6339 -0
- package/dist/util-B2YBSBjR.mjs +29 -0
- package/package.json +24 -19
- package/dist/core.mjs +0 -3075
- package/dist/index.d.ts +0 -18
- package/dist/index.js +0 -20938
- package/dist/modules.d.ts +0 -89
- package/dist/plugins.d.ts +0 -5
- package/dist/plugins.mjs +0 -1105
- package/dist/react.d.ts +0 -178
- package/dist/react.mjs +0 -13061
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { a as load, i as isLiveDuration, o as seek, t as getMediaTime, u as subscribePlaybackState } from "../mediaBindings-CoY60lQw.mjs";
|
|
2
|
+
import { t as loadPlayer_default } from "../loadPlayer-CQdGA3Te.mjs";
|
|
3
|
+
export { getMediaTime, isLiveDuration, load, loadPlayer_default as loadPlayer, seek, subscribePlaybackState };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { a as load, i as isLiveDuration, o as seek, t as getMediaTime, u as subscribePlaybackState } from "../mediaBindings-CoY60lQw.mjs";
|
|
2
|
+
import { t as loadPlayer_default } from "../loadPlayer-CQdGA3Te.mjs";
|
|
3
|
+
|
|
4
|
+
export { getMediaTime, isLiveDuration, load, loadPlayer_default as loadPlayer, seek, subscribePlaybackState };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { t as Video_default } from "./Video-CMbK-cxg.mjs";
|
|
2
|
+
import { DEBUG_OPTIONS, setupDebugOption, setupLicenseServerOverride } from "util/debugUtil";
|
|
3
|
+
import PremiumPlayer from "premium/PremiumPlayer";
|
|
4
|
+
import PremiumPlusPlayer from "PremiumPlusPlayer";
|
|
5
|
+
import { FunctionBarExtension, InfoBarExtension, TitleBarExtension } from "playerUi/uiExtensions";
|
|
6
|
+
import Backdrop from "playerUi/Backdrop";
|
|
7
|
+
import Addons from "sdk/Addons";
|
|
8
|
+
import { Button, SkipButton } from "playerUi/buttons";
|
|
9
|
+
import MenuItem from "playerUi/MenuItem";
|
|
10
|
+
import OverlayPanel from "playerUi/OverlayPanel";
|
|
11
|
+
import LanguageMenu from "playerUi/LanguageMenu";
|
|
12
|
+
import LiveEnd from "premium/LiveEnd";
|
|
13
|
+
import CoverImage from "premium/CoverImage";
|
|
14
|
+
import AutoplayPrompt from "premium/AutoplayPrompt";
|
|
15
|
+
import RecommendationPanel from "playerUi/RecommendationPanel";
|
|
16
|
+
import ClassicSettingsContainer from "playerUi/ClassicSettingsContainer";
|
|
17
|
+
import CastSender from "cast";
|
|
18
|
+
import CastButton from "cast/CastButton";
|
|
19
|
+
import CastSessionControl from "cast/CastSessionControl";
|
|
20
|
+
export { Addons, AutoplayPrompt, Backdrop, Button, CastButton, CastSender, CastSessionControl, ClassicSettingsContainer, CoverImage, DEBUG_OPTIONS, FunctionBarExtension, InfoBarExtension, LanguageMenu, LiveEnd, MenuItem, OverlayPanel, PremiumPlayer, PremiumPlusPlayer, RecommendationPanel, SkipButton, TitleBarExtension, Video_default as Video, setupDebugOption, setupLicenseServerOverride };
|