@vkontakte/videoplayer 1.1.76-beta.3 → 1.1.76-dev.44b02f36.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vkontakte/videoplayer",
3
- "version": "1.1.76-beta.3",
3
+ "version": "1.1.76-dev.44b02f36.0",
4
4
  "author": "vk.com",
5
5
  "description": "Videoplayer based on the vk.com platform",
6
6
  "homepage": "https://vk.com",
@@ -55,9 +55,9 @@
55
55
  ],
56
56
  "dependencies": {
57
57
  "@adtech/rbadman": "2.2.57",
58
- "@vkontakte/videoplayer-core": "2.0.145-beta.3",
59
- "@vkontakte/videoplayer-interactive": "1.0.51-beta.3",
60
- "@vkontakte/videoplayer-shared": "1.0.73-beta.3",
61
- "@vkontakte/videoplayer-statistics": "1.0.91-beta.3"
58
+ "@vkontakte/videoplayer-core": "2.0.145-dev.44b02f36.0",
59
+ "@vkontakte/videoplayer-interactive": "1.0.51-dev.44b02f36.0",
60
+ "@vkontakte/videoplayer-shared": "1.0.73-dev.44b02f36.0",
61
+ "@vkontakte/videoplayer-statistics": "1.0.91-dev.44b02f36.0"
62
62
  }
63
63
  }
@@ -48,7 +48,6 @@ export declare class VKVideoPlayer extends HTMLElement {
48
48
  private focusManager;
49
49
  private prevIsid;
50
50
  private isInited;
51
- private postponedInitParams;
52
51
  private internalsExposure;
53
52
  private shadowDOMCallbacksDisabled;
54
53
  private readonly fatalError$;
@@ -250,8 +250,8 @@ export interface IStore {
250
250
  setVideoStream: (stream: IVideoStream) => void;
251
251
  setQuality: (quality: VideoQualityUI, info?: Info) => void;
252
252
  setPlaybackRate: (playbackRate: PlaybackRate) => void;
253
- incrementPlaybackRate: () => void;
254
- decrementPlaybackRate: () => void;
253
+ incrementPlaybackRate: () => VideoPlaybackRate;
254
+ decrementPlaybackRate: () => VideoPlaybackRate;
255
255
  setSubtitle: (subtitle?: VideoSubtitle) => void;
256
256
  toggleSubtitle: () => void;
257
257
  togglePictureInPicture: () => void;
@@ -1,7 +0,0 @@
1
- export declare enum IconSize {
2
- S = "16",
3
- M = "24",
4
- ML = "32",
5
- L = "48"
6
- }
7
- export declare const DEFAULT_ICON_COLOR = "var(--btn-color, #fff)";
@@ -1,2 +0,0 @@
1
- import type { IconSize } from './constants';
2
- export declare const getSizeStyle: (size: IconSize) => string;