@edm-webplayer/webplayer-angular 0.1.50 → 0.1.52
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
|
@@ -40,9 +40,6 @@ export declare class PlyrPlayerComponent implements AfterViewInit, OnDestroy, On
|
|
|
40
40
|
private normalizeLocaleCandidate;
|
|
41
41
|
private resolveLocale;
|
|
42
42
|
private resolveCaptionsLanguage;
|
|
43
|
-
private shouldHideVimeoRecommendations;
|
|
44
|
-
private clearVimeoEndedState;
|
|
45
|
-
private preventVimeoRecommendations;
|
|
46
43
|
private getVideoWrapper;
|
|
47
44
|
private ensureRecommendationBlocker;
|
|
48
45
|
private toggleRecommendationBlocker;
|
|
@@ -55,15 +52,12 @@ export declare class PlyrPlayerComponent implements AfterViewInit, OnDestroy, On
|
|
|
55
52
|
private isTouchDevice;
|
|
56
53
|
private isIframeProvider;
|
|
57
54
|
private shouldDisableAutoplayForIOS;
|
|
58
|
-
private tryEnterVimeoFullscreen;
|
|
59
|
-
private shouldDisableAutoplayForVimeo;
|
|
60
55
|
private shouldResetProgressToBeginning;
|
|
61
56
|
private wantsAutoplay;
|
|
62
57
|
private shouldAutoplay;
|
|
63
58
|
private requiresMutedAutoplay;
|
|
64
59
|
private shouldBlockIframeAutoplay;
|
|
65
60
|
private stopRestrictedIframeAutoplay;
|
|
66
|
-
private enforceVimeoVolumeAfterPlay;
|
|
67
61
|
private setPlayerMutedState;
|
|
68
62
|
private clearAutoplayUnlockListener;
|
|
69
63
|
private ensureAutoplayUnlockListener;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import 'plyr/dist/plyr.css';
|
|
3
|
+
import { WebplayerConfig } from '../../webplayer.types';
|
|
4
|
+
import { WebplayerProgressService } from '../../progress.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class VimeoPlayerComponent implements OnInit, AfterViewInit, OnDestroy, OnChanges {
|
|
7
|
+
private progressService;
|
|
8
|
+
private document;
|
|
9
|
+
config: WebplayerConfig;
|
|
10
|
+
ready: EventEmitter<void>;
|
|
11
|
+
videoRef: ElementRef<HTMLVideoElement>;
|
|
12
|
+
private plyr?;
|
|
13
|
+
private pendingIOSReload;
|
|
14
|
+
private pendingStartOverride?;
|
|
15
|
+
private resumeAutoplayAfterSetup;
|
|
16
|
+
private readonly onCastMessage;
|
|
17
|
+
constructor(progressService: WebplayerProgressService, document: Document);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
ngAfterViewInit(): void;
|
|
20
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
21
|
+
private setupPlayer;
|
|
22
|
+
private bindEvents;
|
|
23
|
+
private resolveStartTime;
|
|
24
|
+
private isIOSDevice;
|
|
25
|
+
ngOnDestroy(): void;
|
|
26
|
+
private postCastEvent;
|
|
27
|
+
private applyTheme;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VimeoPlayerComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VimeoPlayerComponent, "app-vimeo-player", never, { "config": { "alias": "config"; "required": false; }; }, { "ready": "ready"; }, never, never, true, never>;
|
|
30
|
+
}
|