@arcware-cloud/pixelstreaming-websdk 0.1.4 → 0.1.6
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,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.6",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./index.umd.js",
|
|
7
7
|
"module": "./index.umd.js",
|
|
@@ -42,4 +42,5 @@ export declare class ArcwareApplication extends Application {
|
|
|
42
42
|
* Mainly used to bubble events like a button press or other command inputs towards the UE Application.
|
|
43
43
|
*/
|
|
44
44
|
emitUIInteraction(descriptor: object | string): void;
|
|
45
|
+
private addTextToConnectOverlay;
|
|
45
46
|
}
|
|
@@ -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.6";
|
|
31
31
|
constructor(config: ArcwareConfigParams);
|
|
32
32
|
/** Setup connection string. */
|
|
33
33
|
get urlFlags(): string;
|
|
@@ -241,10 +241,36 @@ export declare const ArcwareStyles: {
|
|
|
241
241
|
margin: string;
|
|
242
242
|
width: string;
|
|
243
243
|
};
|
|
244
|
+
"#connectOverlay #connectButton": {
|
|
245
|
+
textTransform: string;
|
|
246
|
+
textAlign: string;
|
|
247
|
+
color: string;
|
|
248
|
+
padding: string;
|
|
249
|
+
fontSize: string;
|
|
250
|
+
border: string;
|
|
251
|
+
margin: string;
|
|
252
|
+
width: string;
|
|
253
|
+
};
|
|
254
|
+
"#connectOverlay .connection-text": {
|
|
255
|
+
textTransform: string;
|
|
256
|
+
textAlign: string;
|
|
257
|
+
margin: string;
|
|
258
|
+
};
|
|
259
|
+
"#connectOverlay .connection-text .title": {
|
|
260
|
+
color: string;
|
|
261
|
+
fontSize: string;
|
|
262
|
+
margin: string;
|
|
263
|
+
};
|
|
264
|
+
"#connectOverlay .connection-text .subtitle": {
|
|
265
|
+
color: string;
|
|
266
|
+
opacity: number;
|
|
267
|
+
fontSize: string;
|
|
268
|
+
margin: string;
|
|
269
|
+
};
|
|
244
270
|
"#infoOverlay.hiddenState": {
|
|
245
271
|
display: string;
|
|
246
272
|
};
|
|
247
|
-
"#disconnectOverlay, #playOverlay, #errorOverlay, #microphoneOverlay": {
|
|
273
|
+
"#disconnectOverlay, #playOverlay, #errorOverlay, #microphoneOverlay, #connectOverlay": {
|
|
248
274
|
background: string;
|
|
249
275
|
display: string;
|
|
250
276
|
transition: string;
|
|
@@ -305,6 +331,12 @@ export declare const ArcwareStyles: {
|
|
|
305
331
|
"#infoOverlay.hiddenState, #connectOverlay.hiddenState": {
|
|
306
332
|
display: string;
|
|
307
333
|
};
|
|
334
|
+
"#connectOverlay": {
|
|
335
|
+
display: string;
|
|
336
|
+
flexDirection: string;
|
|
337
|
+
alignItems: string;
|
|
338
|
+
justifyContent: string;
|
|
339
|
+
};
|
|
308
340
|
"#infoOverlay": {
|
|
309
341
|
display: string;
|
|
310
342
|
};
|