@arcware-cloud/pixelstreaming-websdk 0.1.6 → 0.1.7
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/index.cjs.js +3 -3
- package/index.esm.js +3 -3
- package/index.umd.js +3 -3
- package/package.json +1 -1
- package/types/lib/ArcwareApplication.d.ts +1 -0
- package/types/lib/ArcwareConfig.d.ts +1 -1
- package/types/lib/ArcwarePixelStreaming.d.ts +1 -0
- package/types/lib/styles/ArcwarePixelStreamingApplicationStyles.d.ts +5 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcware-cloud/pixelstreaming-websdk",
|
|
3
3
|
"description": "WebSDK for easy implementation of pixel streaming with Arcware CloudRT Services. Heavily based on the '@epicgames-ps' library.",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.7",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./index.umd.js",
|
|
7
7
|
"module": "./index.umd.js",
|
|
@@ -26,6 +26,7 @@ export declare class ArcwareApplication extends Application {
|
|
|
26
26
|
private createMicToggleButton;
|
|
27
27
|
private createStopButton;
|
|
28
28
|
private uiDefaultButtonVisibilty;
|
|
29
|
+
private preventDefaultKeyboardEvents;
|
|
29
30
|
private autoPlayHandler;
|
|
30
31
|
/** Request a response from you UE Application.
|
|
31
32
|
* The returned response depends on the implementation of your UE Application.
|
|
@@ -27,7 +27,7 @@ export declare class ArcwareConfig extends Config {
|
|
|
27
27
|
readonly session: Session;
|
|
28
28
|
readonly settings: Settings;
|
|
29
29
|
private _initialSettings;
|
|
30
|
-
readonly VERSION = "0.1.
|
|
30
|
+
readonly VERSION = "0.1.7";
|
|
31
31
|
constructor(config: ArcwareConfigParams);
|
|
32
32
|
/** Setup connection string. */
|
|
33
33
|
get urlFlags(): string;
|
|
@@ -82,6 +82,7 @@ export declare class ArcwarePixelStreaming extends PixelStreaming {
|
|
|
82
82
|
private sendStats;
|
|
83
83
|
private send;
|
|
84
84
|
private handleResolutionChange;
|
|
85
|
+
private applyResolutionIfPlaying;
|
|
85
86
|
removePlayer(): void;
|
|
86
87
|
private handleMouseLock;
|
|
87
88
|
private initLoveLettersContainer;
|
|
@@ -20,10 +20,10 @@ export declare const ArcwareStyles: {
|
|
|
20
20
|
"*": {
|
|
21
21
|
fontFamily: string;
|
|
22
22
|
};
|
|
23
|
-
"::-webkit-scrollbar": {
|
|
23
|
+
"#shared-stream-container::-webkit-scrollbar": {
|
|
24
24
|
width: string;
|
|
25
25
|
};
|
|
26
|
-
"::-webkit-scrollbar-track": {
|
|
26
|
+
"#shared-stream-container::-webkit-scrollbar-track": {
|
|
27
27
|
background: string;
|
|
28
28
|
opacity: string;
|
|
29
29
|
borderRadius: string;
|
|
@@ -32,10 +32,10 @@ export declare const ArcwareStyles: {
|
|
|
32
32
|
borderBottom: string;
|
|
33
33
|
borderLeft: string;
|
|
34
34
|
};
|
|
35
|
-
"::-webkit-scrollbar-track-piece": {
|
|
35
|
+
"#shared-stream-container::-webkit-scrollbar-track-piece": {
|
|
36
36
|
background: string;
|
|
37
37
|
};
|
|
38
|
-
"::-webkit-scrollbar-thumb": {
|
|
38
|
+
"#shared-stream-container::-webkit-scrollbar-thumb": {
|
|
39
39
|
background: string;
|
|
40
40
|
width: string;
|
|
41
41
|
borderRight: string;
|
|
@@ -43,7 +43,7 @@ export declare const ArcwareStyles: {
|
|
|
43
43
|
transition: string;
|
|
44
44
|
borderRadius: string;
|
|
45
45
|
};
|
|
46
|
-
"::-webkit-scrollbar-thumb:hover": {
|
|
46
|
+
"#shared-stream-container::-webkit-scrollbar-thumb:hover": {
|
|
47
47
|
transition: string;
|
|
48
48
|
background: string;
|
|
49
49
|
};
|