@rtsee/ngx 0.0.64 → 0.0.65
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/index.d.ts
CHANGED
|
@@ -341,11 +341,12 @@ declare class ManageChatComponent {
|
|
|
341
341
|
declare class CallWidgetComponent implements OnInit {
|
|
342
342
|
message: RTSeeMessage<IRTSeeCall>;
|
|
343
343
|
messenger: RTSeeMessenger;
|
|
344
|
+
chat: RTSeeChat;
|
|
344
345
|
callerName?: string;
|
|
345
346
|
ngOnInit(): void;
|
|
346
347
|
joinCall(): void;
|
|
347
348
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallWidgetComponent, never>;
|
|
348
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CallWidgetComponent, "ngx-call-widget", never, { "message": { "alias": "message"; "required": false; }; "messenger": { "alias": "messenger"; "required": false; }; }, {}, never, never, true, never>;
|
|
349
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CallWidgetComponent, "ngx-call-widget", never, { "message": { "alias": "message"; "required": false; }; "messenger": { "alias": "messenger"; "required": false; }; "chat": { "alias": "chat"; "required": false; }; }, {}, never, never, true, never>;
|
|
349
350
|
}
|
|
350
351
|
|
|
351
352
|
declare class RtseeEventsDashboardClientComponent {
|
|
@@ -41,8 +41,15 @@ $expanded-peer-wrapper-offset: 4px;
|
|
|
41
41
|
text-align: center;
|
|
42
42
|
|
|
43
43
|
.rtsee-local-video {
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
position: absolute;
|
|
45
|
+
top: 50%;
|
|
46
|
+
left: 50%;
|
|
47
|
+
transform: translateX(-50%) translateY(-50%);
|
|
48
|
+
min-width: 100%;
|
|
49
|
+
min-height: 100%;
|
|
50
|
+
width: auto;
|
|
51
|
+
height: auto;
|
|
52
|
+
overflow: hidden;
|
|
46
53
|
}
|
|
47
54
|
}
|
|
48
55
|
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.0.
|
|
2
|
+
"version": "0.0.65",
|
|
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.35",
|
|
38
|
+
"@rtsee/conference": "^0.0.36",
|
|
39
|
+
"@rtsee/events-dashboard": "^0.0.69",
|
|
40
|
+
"@rtsee/factory": "^0.0.78",
|
|
41
|
+
"@rtsee/messenger": "^0.0.69",
|
|
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": "af2aac90a2382bfc482e449e19f69a3ac81e081a"
|
|
68
68
|
}
|