@cqa-lib/cqa-ui 1.1.406 → 1.1.407
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/esm2020/lib/simulator/simulator.component.mjs +47 -18
- package/fesm2015/cqa-lib-cqa-ui.mjs +46 -17
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +46 -17
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/simulator/simulator.component.d.ts +5 -1
- package/package.json +1 -1
|
@@ -41,6 +41,7 @@ export declare class SimulatorComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
41
41
|
width: number;
|
|
42
42
|
height: number;
|
|
43
43
|
} | null;
|
|
44
|
+
browserDevice: string;
|
|
44
45
|
videoTimeUpdate: EventEmitter<number>;
|
|
45
46
|
videoPlay: EventEmitter<void>;
|
|
46
47
|
videoPause: EventEmitter<void>;
|
|
@@ -69,6 +70,7 @@ export declare class SimulatorComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
69
70
|
private hitMarkers;
|
|
70
71
|
private playerState;
|
|
71
72
|
private operationQueue;
|
|
73
|
+
get effectivePlatformType(): 'browser' | 'device';
|
|
72
74
|
get hasDeviceFrame(): boolean;
|
|
73
75
|
get isPlayerSwitching(): boolean;
|
|
74
76
|
get isAspectRatioMatched(): boolean;
|
|
@@ -99,6 +101,8 @@ export declare class SimulatorComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
99
101
|
width: number;
|
|
100
102
|
height: number;
|
|
101
103
|
};
|
|
104
|
+
private readonly MOBILE_BROWSER_DEVICE_MAP;
|
|
105
|
+
private resolveMobileBrowserDevice;
|
|
102
106
|
private readonly deviceFrameConfigs;
|
|
103
107
|
constructor(sanitizer: DomSanitizer, cdr: ChangeDetectorRef);
|
|
104
108
|
onWindowResize(): void;
|
|
@@ -230,6 +234,6 @@ export declare class SimulatorComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
230
234
|
private switchToVideoAndSeek;
|
|
231
235
|
private switchToVideoAndSeekInternal;
|
|
232
236
|
static ɵfac: i0.ɵɵFactoryDeclaration<SimulatorComponent, never>;
|
|
233
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SimulatorComponent, "cqa-simulator", never, { "videoUrl": "videoUrl"; "videoUrls": "videoUrls"; "videoCurrentDuration": "videoCurrentDuration"; "stepMarkers": "stepMarkers"; "screenShotUrl": "screenShotUrl"; "traceViewUrl": "traceViewUrl"; "platformName": "platformName"; "platformType": "platformType"; "platform": "platform"; "deviceName": "deviceName"; "isLive": "isLive"; "liveStatus": "liveStatus"; "liveLoadingLabel": "liveLoadingLabel"; "isContentVideoLoading": "isContentVideoLoading"; "failedStatusMessage": "failedStatusMessage"; "isVNCSessionIntruppted": "isVNCSessionIntruppted"; "vncSessionIntupptedMessage": "vncSessionIntupptedMessage"; "selectedView": "selectedView"; "hideVideoTab": "hideVideoTab"; "browserViewPort": "browserViewPort"; }, { "videoTimeUpdate": "videoTimeUpdate"; "videoPlay": "videoPlay"; "videoPause": "videoPause"; "markerHit": "markerHit"; "isVideoPlayingChange": "isVideoPlayingChange"; }, never, ["*"]>;
|
|
237
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SimulatorComponent, "cqa-simulator", never, { "videoUrl": "videoUrl"; "videoUrls": "videoUrls"; "videoCurrentDuration": "videoCurrentDuration"; "stepMarkers": "stepMarkers"; "screenShotUrl": "screenShotUrl"; "traceViewUrl": "traceViewUrl"; "platformName": "platformName"; "platformType": "platformType"; "platform": "platform"; "deviceName": "deviceName"; "isLive": "isLive"; "liveStatus": "liveStatus"; "liveLoadingLabel": "liveLoadingLabel"; "isContentVideoLoading": "isContentVideoLoading"; "failedStatusMessage": "failedStatusMessage"; "isVNCSessionIntruppted": "isVNCSessionIntruppted"; "vncSessionIntupptedMessage": "vncSessionIntupptedMessage"; "selectedView": "selectedView"; "hideVideoTab": "hideVideoTab"; "browserViewPort": "browserViewPort"; "browserDevice": "browserDevice"; }, { "videoTimeUpdate": "videoTimeUpdate"; "videoPlay": "videoPlay"; "videoPause": "videoPause"; "markerHit": "markerHit"; "isVideoPlayingChange": "isVideoPlayingChange"; }, never, ["*"]>;
|
|
234
238
|
}
|
|
235
239
|
export {};
|