@rtsee/ngx 0.0.65 → 0.0.66
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/dist/ngx/fesm2022/rtsee-ngx.mjs +159 -167
- package/dist/ngx/fesm2022/rtsee-ngx.mjs.map +1 -1
- package/dist/ngx/index.d.ts +0 -1
- package/dist/ngx/src/lib/theme/messenger/call-widget.scss +0 -5
- package/dist/ngx/src/lib/theme/video-chat/video-chat.scss +6 -4
- package/dist/ngx/src/lib/theme/video-chat/video-peer.scss +1 -2
- package/package.json +7 -7
package/dist/ngx/index.d.ts
CHANGED
|
@@ -342,7 +342,6 @@ declare class CallWidgetComponent implements OnInit {
|
|
|
342
342
|
message: RTSeeMessage<IRTSeeCall>;
|
|
343
343
|
messenger: RTSeeMessenger;
|
|
344
344
|
chat: RTSeeChat;
|
|
345
|
-
callerName?: string;
|
|
346
345
|
ngOnInit(): void;
|
|
347
346
|
joinCall(): void;
|
|
348
347
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallWidgetComponent, never>;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@import "../common-variables";
|
|
2
|
+
|
|
1
3
|
$own-video-divider: 4;
|
|
2
4
|
$own-video-expanded-divider: 0.66;
|
|
3
5
|
$expanded-video-container-width: $video-container-width * $own-video-expanded-divider;
|
|
@@ -39,17 +41,17 @@ $expanded-peer-wrapper-offset: 4px;
|
|
|
39
41
|
height: $own-video-container-height;
|
|
40
42
|
z-index: 1;
|
|
41
43
|
text-align: center;
|
|
44
|
+
overflow: hidden;
|
|
42
45
|
|
|
43
46
|
.rtsee-local-video {
|
|
44
47
|
position: absolute;
|
|
45
48
|
top: 50%;
|
|
46
49
|
left: 50%;
|
|
47
|
-
transform: translateX(-50%) translateY(-50%);
|
|
50
|
+
transform: translateX(-50%) translateY(-50%) rotateY(180deg);
|
|
48
51
|
min-width: 100%;
|
|
49
52
|
min-height: 100%;
|
|
50
|
-
width:
|
|
51
|
-
height:
|
|
52
|
-
overflow: hidden;
|
|
53
|
+
width: 100%;
|
|
54
|
+
height: 100%;
|
|
53
55
|
}
|
|
54
56
|
}
|
|
55
57
|
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.0.
|
|
2
|
+
"version": "0.0.66",
|
|
3
3
|
"name": "@rtsee/ngx",
|
|
4
4
|
"module": "./dist/ngx/fesm2022/rtsee-ngx.mjs",
|
|
5
5
|
"types": "./dist/ngx/index.d.ts",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"@angular/platform-browser-dynamic": "^20.1.2",
|
|
35
35
|
"@angular/router": "^20.1.2",
|
|
36
36
|
"@primeuix/themes": "^1.2.3",
|
|
37
|
-
"@rtsee/common": "^0.0.
|
|
38
|
-
"@rtsee/conference": "^0.0.
|
|
39
|
-
"@rtsee/events-dashboard": "^0.0.
|
|
40
|
-
"@rtsee/factory": "^0.0.
|
|
41
|
-
"@rtsee/messenger": "^0.0.
|
|
37
|
+
"@rtsee/common": "^0.0.36",
|
|
38
|
+
"@rtsee/conference": "^0.0.37",
|
|
39
|
+
"@rtsee/events-dashboard": "^0.0.70",
|
|
40
|
+
"@rtsee/factory": "^0.0.79",
|
|
41
|
+
"@rtsee/messenger": "^0.0.70",
|
|
42
42
|
"@rtsee/signaling-client": "^0.0.66",
|
|
43
43
|
"dayjs": "^1.11.9",
|
|
44
44
|
"ngx-autosize": "^2.0.4",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "785ce4b3f963ce334f767dc6499b9e029c5a28c2"
|
|
68
68
|
}
|