@vkontakte/videoplayer-core 2.0.168 → 2.0.169-dev.2cfd41de6.0
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/es2015.cjs +8 -8
- package/es2015.esm.js +8 -8
- package/esnext.cjs +8 -8
- package/esnext.esm.js +8 -8
- package/evergreen.esm.js +8 -8
- package/package.json +2 -2
- package/types/providers/utils/StallsManager.d.ts +2 -0
- package/types/utils/tuningConfig.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vkontakte/videoplayer-core",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.169-dev.2cfd41de6.0",
|
|
4
4
|
"author": "vk.ru",
|
|
5
5
|
"description": "Videoplayer core library based on the vk.ru platform",
|
|
6
6
|
"homepage": "https://vk.ru",
|
|
@@ -42,6 +42,6 @@
|
|
|
42
42
|
"**/*.d.ts"
|
|
43
43
|
],
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@vkontakte/videoplayer-shared": "1.0.
|
|
45
|
+
"@vkontakte/videoplayer-shared": "1.0.98-dev.2cfd41de6.0"
|
|
46
46
|
}
|
|
47
47
|
}
|
|
@@ -9,6 +9,7 @@ interface IConnectData {
|
|
|
9
9
|
isSeeked$: IObservable<boolean>;
|
|
10
10
|
looped$: IObservable<Seconds>;
|
|
11
11
|
playing$: IObservable<undefined>;
|
|
12
|
+
pause$: IObservable<undefined>;
|
|
12
13
|
currentStallDuration$: IValueSubject<Milliseconds>;
|
|
13
14
|
tuning: ITuningConfig["stallsManager"];
|
|
14
15
|
abrParams: ITuningConfig["autoTrackSelection"];
|
|
@@ -24,6 +25,7 @@ declare class StallsManager {
|
|
|
24
25
|
private duration;
|
|
25
26
|
private isSeeked$;
|
|
26
27
|
private isBuffering$;
|
|
28
|
+
private isPaused;
|
|
27
29
|
private maxQualityLimit;
|
|
28
30
|
private lastUniqueVideoTrackSelected;
|
|
29
31
|
private currentStallsCount;
|