@vkontakte/videoplayer 1.1.41-dev.727c0744.0 → 1.1.41-dev.8a4028d0.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.js +15 -15
- package/es2015.esm.js +15 -15
- package/es2018.cjs.js +15 -15
- package/es2018.esm.js +15 -15
- package/esnext.cjs.js +13 -13
- package/esnext.esm.js +13 -13
- package/evergreen.esm.js +13 -13
- package/package.json +5 -5
- package/types/VKVideoPlayer/index.d.ts +1 -1
- package/types/services/statistics.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vkontakte/videoplayer",
|
|
3
|
-
"version": "1.1.41-dev.
|
|
3
|
+
"version": "1.1.41-dev.8a4028d0.0",
|
|
4
4
|
"author": "vk.com",
|
|
5
5
|
"description": "Videoplayer based on the vk.com platform",
|
|
6
6
|
"homepage": "https://vk.com",
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
"**/*.d.ts"
|
|
50
50
|
],
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@vkontakte/videoplayer-core": "
|
|
53
|
-
"@vkontakte/videoplayer-interactive": "1.0.16-dev.
|
|
54
|
-
"@vkontakte/videoplayer-shared": "
|
|
55
|
-
"@vkontakte/videoplayer-statistics": "
|
|
52
|
+
"@vkontakte/videoplayer-core": "2.0.108-dev.2cb388c2.0",
|
|
53
|
+
"@vkontakte/videoplayer-interactive": "1.0.16-dev.743e36dd.0",
|
|
54
|
+
"@vkontakte/videoplayer-shared": "1.0.40-dev.8f478f62.0",
|
|
55
|
+
"@vkontakte/videoplayer-statistics": "1.0.54-dev.f3d177f0.0"
|
|
56
56
|
}
|
|
57
57
|
}
|
|
@@ -44,7 +44,6 @@ export declare class VKVideoPlayer extends HTMLElement {
|
|
|
44
44
|
private isPrevButtonActive;
|
|
45
45
|
private isControlDisabled;
|
|
46
46
|
private getNextVideoInfo;
|
|
47
|
-
private createOneStat;
|
|
48
47
|
private createPlayer;
|
|
49
48
|
private addPlayerInfoSubscriptions;
|
|
50
49
|
private playNextVideo;
|
|
@@ -55,6 +54,7 @@ export declare class VKVideoPlayer extends HTMLElement {
|
|
|
55
54
|
private seekToInteractive;
|
|
56
55
|
private toggleGraph;
|
|
57
56
|
private initInteractives;
|
|
57
|
+
private initInteractivesStatistics;
|
|
58
58
|
initPlayer(videoConfig: IVKVideoPlayerConfig, sdkConfig?: Partial<ISDKConfig>): void;
|
|
59
59
|
private isOneVideoPlaylist;
|
|
60
60
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ISubscription } from '@vkontakte/videoplayer-shared';
|
|
2
|
-
import { type IOneStat } from '@vkontakte/videoplayer-statistics';
|
|
2
|
+
import { type IConstructorParams, type IOneStat, type IStatContext } from '@vkontakte/videoplayer-statistics';
|
|
3
3
|
export interface IUIStatistics {
|
|
4
4
|
statSubscription: ISubscription;
|
|
5
5
|
oneStat: IOneStat;
|
|
@@ -8,6 +8,6 @@ export interface IUIStatistics {
|
|
|
8
8
|
export declare class UIOneStat implements IUIStatistics {
|
|
9
9
|
oneStat: IOneStat;
|
|
10
10
|
statSubscription: ISubscription;
|
|
11
|
-
constructor(
|
|
11
|
+
constructor(statContext: IStatContext, params: IConstructorParams);
|
|
12
12
|
destroy(): void;
|
|
13
13
|
}
|