@cqa-lib/cqa-ui 1.1.160 → 1.1.161
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 +18 -3
- package/esm2020/lib/visual-difference-modal/visual-difference-modal.component.mjs +3 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +19 -4
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +19 -4
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/simulator/simulator.component.d.ts +9 -1
- package/package.json +1 -1
|
@@ -32,6 +32,10 @@ export declare class SimulatorComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
32
32
|
vncSessionIntupptedMessage: string;
|
|
33
33
|
selectedView: SegmentType;
|
|
34
34
|
hideVideoTab: boolean;
|
|
35
|
+
browserViewPort: {
|
|
36
|
+
width: number;
|
|
37
|
+
height: number;
|
|
38
|
+
} | null;
|
|
35
39
|
videoTimeUpdate: EventEmitter<number>;
|
|
36
40
|
videoPlay: EventEmitter<void>;
|
|
37
41
|
videoPause: EventEmitter<void>;
|
|
@@ -62,6 +66,10 @@ export declare class SimulatorComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
62
66
|
actions: any[];
|
|
63
67
|
imageUrl: string;
|
|
64
68
|
};
|
|
69
|
+
get effectiveBrowserViewPort(): {
|
|
70
|
+
width: number;
|
|
71
|
+
height: number;
|
|
72
|
+
};
|
|
65
73
|
private readonly deviceFrameConfigs;
|
|
66
74
|
constructor(sanitizer: DomSanitizer);
|
|
67
75
|
private get deviceFrameConfig();
|
|
@@ -103,6 +111,6 @@ export declare class SimulatorComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
103
111
|
private updateSegments;
|
|
104
112
|
private onVideoElementReady;
|
|
105
113
|
static ɵfac: i0.ɵɵFactoryDeclaration<SimulatorComponent, never>;
|
|
106
|
-
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"; }, { "videoTimeUpdate": "videoTimeUpdate"; "videoPlay": "videoPlay"; "videoPause": "videoPause"; }, never, ["*"]>;
|
|
114
|
+
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"; }, never, ["*"]>;
|
|
107
115
|
}
|
|
108
116
|
export {};
|