mediasfu-angular 1.0.0 → 1.0.1
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/LICENSE +21 -0
- package/dist/esm2022/lib/components/mediasfu-components/mediasfu-broadcast.component.mjs +5 -3
- package/dist/esm2022/lib/components/mediasfu-components/mediasfu-chat.component.mjs +5 -3
- package/dist/esm2022/lib/components/mediasfu-components/mediasfu-conference.component.mjs +5 -3
- package/dist/esm2022/lib/components/mediasfu-components/mediasfu-generic.component.mjs +5 -3
- package/dist/esm2022/lib/components/mediasfu-components/mediasfu-webinar.component.mjs +5 -3
- package/dist/esm2022/lib/methods/utils/initial-values.util.mjs +13 -3
- package/dist/fesm2022/mediasfu-angular.mjs +32 -12
- package/dist/fesm2022/mediasfu-angular.mjs.map +1 -1
- package/dist/lib/components/mediasfu-components/mediasfu-broadcast.component.d.ts +77 -77
- package/dist/lib/components/mediasfu-components/mediasfu-chat.component.d.ts +77 -77
- package/dist/lib/components/mediasfu-components/mediasfu-conference.component.d.ts +99 -99
- package/dist/lib/components/mediasfu-components/mediasfu-generic.component.d.ts +99 -99
- package/dist/lib/components/mediasfu-components/mediasfu-webinar.component.d.ts +99 -99
- package/package.json +11 -2
|
@@ -352,15 +352,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
352
352
|
landScaped: BehaviorSubject<boolean>;
|
|
353
353
|
lock_screen: BehaviorSubject<boolean>;
|
|
354
354
|
screenId: BehaviorSubject<string>;
|
|
355
|
-
allVideoStreams: BehaviorSubject<(
|
|
356
|
-
newLimitedStreams: BehaviorSubject<(
|
|
355
|
+
allVideoStreams: BehaviorSubject<(Participant | Stream)[]>;
|
|
356
|
+
newLimitedStreams: BehaviorSubject<(Participant | Stream)[]>;
|
|
357
357
|
newLimitedStreamsIDs: BehaviorSubject<string[]>;
|
|
358
358
|
activeSounds: BehaviorSubject<string[]>;
|
|
359
359
|
screenShareIDStream: BehaviorSubject<string>;
|
|
360
360
|
screenShareNameStream: BehaviorSubject<string>;
|
|
361
361
|
adminIDStream: BehaviorSubject<string>;
|
|
362
362
|
adminNameStream: BehaviorSubject<string>;
|
|
363
|
-
youYouStream: BehaviorSubject<(
|
|
363
|
+
youYouStream: BehaviorSubject<(Participant | Stream)[]>;
|
|
364
364
|
youYouStreamIDs: BehaviorSubject<string[]>;
|
|
365
365
|
localStream: BehaviorSubject<MediaStream | null>;
|
|
366
366
|
recordStarted: BehaviorSubject<boolean>;
|
|
@@ -402,15 +402,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
402
402
|
screenAlreadyOn: BehaviorSubject<boolean>;
|
|
403
403
|
chatAlreadyOn: BehaviorSubject<boolean>;
|
|
404
404
|
redirectURL: BehaviorSubject<string>;
|
|
405
|
-
oldAllStreams: BehaviorSubject<(
|
|
405
|
+
oldAllStreams: BehaviorSubject<(Participant | Stream)[]>;
|
|
406
406
|
adminVidID: BehaviorSubject<string>;
|
|
407
407
|
streamNames: BehaviorSubject<Stream[]>;
|
|
408
408
|
non_alVideoStreams: BehaviorSubject<Participant[]>;
|
|
409
409
|
sortAudioLoudness: BehaviorSubject<boolean>;
|
|
410
410
|
audioDecibels: BehaviorSubject<AudioDecibels[]>;
|
|
411
|
-
mixed_alVideoStreams: BehaviorSubject<(
|
|
411
|
+
mixed_alVideoStreams: BehaviorSubject<(Participant | Stream)[]>;
|
|
412
412
|
non_alVideoStreams_muted: BehaviorSubject<Participant[]>;
|
|
413
|
-
paginatedStreams: BehaviorSubject<(
|
|
413
|
+
paginatedStreams: BehaviorSubject<(Participant | Stream)[][]>;
|
|
414
414
|
localStreamAudio: BehaviorSubject<MediaStream | null>;
|
|
415
415
|
defAudioID: BehaviorSubject<string>;
|
|
416
416
|
userDefaultAudioInputDevice: BehaviorSubject<string>;
|
|
@@ -438,8 +438,8 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
438
438
|
prevDoPaginate: BehaviorSubject<boolean>;
|
|
439
439
|
doPaginate: BehaviorSubject<boolean>;
|
|
440
440
|
shareEnded: BehaviorSubject<boolean>;
|
|
441
|
-
lStreams: BehaviorSubject<(
|
|
442
|
-
chatRefStreams: BehaviorSubject<(
|
|
441
|
+
lStreams: BehaviorSubject<(Participant | Stream)[]>;
|
|
442
|
+
chatRefStreams: BehaviorSubject<(Participant | Stream)[]>;
|
|
443
443
|
controlHeight: BehaviorSubject<number>;
|
|
444
444
|
isWideScreen: BehaviorSubject<boolean>;
|
|
445
445
|
isMediumScreen: BehaviorSubject<boolean>;
|
|
@@ -451,11 +451,11 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
451
451
|
altGridRows: BehaviorSubject<number>;
|
|
452
452
|
altGridCols: BehaviorSubject<number>;
|
|
453
453
|
numberPages: BehaviorSubject<number>;
|
|
454
|
-
currentStreams: BehaviorSubject<(
|
|
454
|
+
currentStreams: BehaviorSubject<(Participant | Stream)[]>;
|
|
455
455
|
showMiniView: BehaviorSubject<boolean>;
|
|
456
456
|
nStream: BehaviorSubject<MediaStream | null>;
|
|
457
457
|
defer_receive: BehaviorSubject<boolean>;
|
|
458
|
-
allAudioStreams: BehaviorSubject<(
|
|
458
|
+
allAudioStreams: BehaviorSubject<(Participant | Stream)[]>;
|
|
459
459
|
remoteScreenStream: BehaviorSubject<Stream[]>;
|
|
460
460
|
screenProducer: BehaviorSubject<Producer<import("mediasoup-client/lib/types").AppData> | null>;
|
|
461
461
|
gotAllVids: BehaviorSubject<boolean>;
|
|
@@ -931,7 +931,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
931
931
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
932
932
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
933
933
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
934
|
-
checkOrientation: () => "
|
|
934
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
935
935
|
showAlert: ({ message, type, duration, }: {
|
|
936
936
|
message: string;
|
|
937
937
|
type: "success" | "danger";
|
|
@@ -1009,15 +1009,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1009
1009
|
landScaped: boolean;
|
|
1010
1010
|
lock_screen: boolean;
|
|
1011
1011
|
screenId: string;
|
|
1012
|
-
allVideoStreams: (
|
|
1013
|
-
newLimitedStreams: (
|
|
1012
|
+
allVideoStreams: (Participant | Stream)[];
|
|
1013
|
+
newLimitedStreams: (Participant | Stream)[];
|
|
1014
1014
|
newLimitedStreamsIDs: string[];
|
|
1015
1015
|
activeSounds: string[];
|
|
1016
1016
|
screenShareIDStream: string;
|
|
1017
1017
|
screenShareNameStream: string;
|
|
1018
1018
|
adminIDStream: string;
|
|
1019
1019
|
adminNameStream: string;
|
|
1020
|
-
youYouStream: (
|
|
1020
|
+
youYouStream: (Participant | Stream)[];
|
|
1021
1021
|
youYouStreamIDs: string[];
|
|
1022
1022
|
localStream: MediaStream | null;
|
|
1023
1023
|
recordStarted: boolean;
|
|
@@ -1059,15 +1059,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1059
1059
|
screenAlreadyOn: boolean;
|
|
1060
1060
|
chatAlreadyOn: boolean;
|
|
1061
1061
|
redirectURL: string;
|
|
1062
|
-
oldAllStreams: (
|
|
1062
|
+
oldAllStreams: (Participant | Stream)[];
|
|
1063
1063
|
adminVidID: string;
|
|
1064
1064
|
streamNames: Stream[];
|
|
1065
1065
|
non_alVideoStreams: Participant[];
|
|
1066
1066
|
sortAudioLoudness: boolean;
|
|
1067
1067
|
audioDecibels: AudioDecibels[];
|
|
1068
|
-
mixed_alVideoStreams: (
|
|
1068
|
+
mixed_alVideoStreams: (Participant | Stream)[];
|
|
1069
1069
|
non_alVideoStreams_muted: Participant[];
|
|
1070
|
-
paginatedStreams: (
|
|
1070
|
+
paginatedStreams: (Participant | Stream)[][];
|
|
1071
1071
|
localStreamAudio: MediaStream | null;
|
|
1072
1072
|
defAudioID: string;
|
|
1073
1073
|
userDefaultAudioInputDevice: string;
|
|
@@ -1095,8 +1095,8 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1095
1095
|
prevDoPaginate: boolean;
|
|
1096
1096
|
doPaginate: boolean;
|
|
1097
1097
|
shareEnded: boolean;
|
|
1098
|
-
lStreams: (
|
|
1099
|
-
chatRefStreams: (
|
|
1098
|
+
lStreams: (Participant | Stream)[];
|
|
1099
|
+
chatRefStreams: (Participant | Stream)[];
|
|
1100
1100
|
controlHeight: number;
|
|
1101
1101
|
isWideScreen: boolean;
|
|
1102
1102
|
isMediumScreen: boolean;
|
|
@@ -1108,11 +1108,11 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1108
1108
|
altGridRows: number;
|
|
1109
1109
|
altGridCols: number;
|
|
1110
1110
|
numberPages: number;
|
|
1111
|
-
currentStreams: (
|
|
1111
|
+
currentStreams: (Participant | Stream)[];
|
|
1112
1112
|
showMiniView: boolean;
|
|
1113
1113
|
nStream: MediaStream | null;
|
|
1114
1114
|
defer_receive: boolean;
|
|
1115
|
-
allAudioStreams: (
|
|
1115
|
+
allAudioStreams: (Participant | Stream)[];
|
|
1116
1116
|
screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
|
|
1117
1117
|
remoteScreenStream: Stream[];
|
|
1118
1118
|
gotAllVids: boolean;
|
|
@@ -1564,7 +1564,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1564
1564
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
1565
1565
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
1566
1566
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
1567
|
-
checkOrientation: () => "
|
|
1567
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
1568
1568
|
updateDevice: (value: Device | null) => void;
|
|
1569
1569
|
updateSocket: (value: Socket) => void;
|
|
1570
1570
|
updateValidated: (value: boolean) => void;
|
|
@@ -1715,15 +1715,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1715
1715
|
landScaped: boolean;
|
|
1716
1716
|
lock_screen: boolean;
|
|
1717
1717
|
screenId: string;
|
|
1718
|
-
allVideoStreams: (
|
|
1719
|
-
newLimitedStreams: (
|
|
1718
|
+
allVideoStreams: (Participant | Stream)[];
|
|
1719
|
+
newLimitedStreams: (Participant | Stream)[];
|
|
1720
1720
|
newLimitedStreamsIDs: string[];
|
|
1721
1721
|
activeSounds: string[];
|
|
1722
1722
|
screenShareIDStream: string;
|
|
1723
1723
|
screenShareNameStream: string;
|
|
1724
1724
|
adminIDStream: string;
|
|
1725
1725
|
adminNameStream: string;
|
|
1726
|
-
youYouStream: (
|
|
1726
|
+
youYouStream: (Participant | Stream)[];
|
|
1727
1727
|
youYouStreamIDs: string[];
|
|
1728
1728
|
localStream: MediaStream | null;
|
|
1729
1729
|
recordStarted: boolean;
|
|
@@ -1765,15 +1765,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1765
1765
|
screenAlreadyOn: boolean;
|
|
1766
1766
|
chatAlreadyOn: boolean;
|
|
1767
1767
|
redirectURL: string;
|
|
1768
|
-
oldAllStreams: (
|
|
1768
|
+
oldAllStreams: (Participant | Stream)[];
|
|
1769
1769
|
adminVidID: string;
|
|
1770
1770
|
streamNames: Stream[];
|
|
1771
1771
|
non_alVideoStreams: Participant[];
|
|
1772
1772
|
sortAudioLoudness: boolean;
|
|
1773
1773
|
audioDecibels: AudioDecibels[];
|
|
1774
|
-
mixed_alVideoStreams: (
|
|
1774
|
+
mixed_alVideoStreams: (Participant | Stream)[];
|
|
1775
1775
|
non_alVideoStreams_muted: Participant[];
|
|
1776
|
-
paginatedStreams: (
|
|
1776
|
+
paginatedStreams: (Participant | Stream)[][];
|
|
1777
1777
|
localStreamAudio: MediaStream | null;
|
|
1778
1778
|
defAudioID: string;
|
|
1779
1779
|
userDefaultAudioInputDevice: string;
|
|
@@ -1801,8 +1801,8 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1801
1801
|
prevDoPaginate: boolean;
|
|
1802
1802
|
doPaginate: boolean;
|
|
1803
1803
|
shareEnded: boolean;
|
|
1804
|
-
lStreams: (
|
|
1805
|
-
chatRefStreams: (
|
|
1804
|
+
lStreams: (Participant | Stream)[];
|
|
1805
|
+
chatRefStreams: (Participant | Stream)[];
|
|
1806
1806
|
controlHeight: number;
|
|
1807
1807
|
isWideScreen: boolean;
|
|
1808
1808
|
isMediumScreen: boolean;
|
|
@@ -1814,11 +1814,11 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1814
1814
|
altGridRows: number;
|
|
1815
1815
|
altGridCols: number;
|
|
1816
1816
|
numberPages: number;
|
|
1817
|
-
currentStreams: (
|
|
1817
|
+
currentStreams: (Participant | Stream)[];
|
|
1818
1818
|
showMiniView: boolean;
|
|
1819
1819
|
nStream: MediaStream | null;
|
|
1820
1820
|
defer_receive: boolean;
|
|
1821
|
-
allAudioStreams: (
|
|
1821
|
+
allAudioStreams: (Participant | Stream)[];
|
|
1822
1822
|
screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
|
|
1823
1823
|
remoteScreenStream: Stream[];
|
|
1824
1824
|
gotAllVids: boolean;
|
|
@@ -2270,7 +2270,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
2270
2270
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
2271
2271
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
2272
2272
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
2273
|
-
checkOrientation: () => "
|
|
2273
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
2274
2274
|
updateDevice: (value: Device | null) => void;
|
|
2275
2275
|
updateSocket: (value: Socket) => void;
|
|
2276
2276
|
updateValidated: (value: boolean) => void;
|
|
@@ -2424,15 +2424,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
2424
2424
|
landScaped: boolean;
|
|
2425
2425
|
lock_screen: boolean;
|
|
2426
2426
|
screenId: string;
|
|
2427
|
-
allVideoStreams: (
|
|
2428
|
-
newLimitedStreams: (
|
|
2427
|
+
allVideoStreams: (Participant | Stream)[];
|
|
2428
|
+
newLimitedStreams: (Participant | Stream)[];
|
|
2429
2429
|
newLimitedStreamsIDs: string[];
|
|
2430
2430
|
activeSounds: string[];
|
|
2431
2431
|
screenShareIDStream: string;
|
|
2432
2432
|
screenShareNameStream: string;
|
|
2433
2433
|
adminIDStream: string;
|
|
2434
2434
|
adminNameStream: string;
|
|
2435
|
-
youYouStream: (
|
|
2435
|
+
youYouStream: (Participant | Stream)[];
|
|
2436
2436
|
youYouStreamIDs: string[];
|
|
2437
2437
|
localStream: MediaStream | null;
|
|
2438
2438
|
recordStarted: boolean;
|
|
@@ -2474,15 +2474,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
2474
2474
|
screenAlreadyOn: boolean;
|
|
2475
2475
|
chatAlreadyOn: boolean;
|
|
2476
2476
|
redirectURL: string;
|
|
2477
|
-
oldAllStreams: (
|
|
2477
|
+
oldAllStreams: (Participant | Stream)[];
|
|
2478
2478
|
adminVidID: string;
|
|
2479
2479
|
streamNames: Stream[];
|
|
2480
2480
|
non_alVideoStreams: Participant[];
|
|
2481
2481
|
sortAudioLoudness: boolean;
|
|
2482
2482
|
audioDecibels: AudioDecibels[];
|
|
2483
|
-
mixed_alVideoStreams: (
|
|
2483
|
+
mixed_alVideoStreams: (Participant | Stream)[];
|
|
2484
2484
|
non_alVideoStreams_muted: Participant[];
|
|
2485
|
-
paginatedStreams: (
|
|
2485
|
+
paginatedStreams: (Participant | Stream)[][];
|
|
2486
2486
|
localStreamAudio: MediaStream | null;
|
|
2487
2487
|
defAudioID: string;
|
|
2488
2488
|
userDefaultAudioInputDevice: string;
|
|
@@ -2510,8 +2510,8 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
2510
2510
|
prevDoPaginate: boolean;
|
|
2511
2511
|
doPaginate: boolean;
|
|
2512
2512
|
shareEnded: boolean;
|
|
2513
|
-
lStreams: (
|
|
2514
|
-
chatRefStreams: (
|
|
2513
|
+
lStreams: (Participant | Stream)[];
|
|
2514
|
+
chatRefStreams: (Participant | Stream)[];
|
|
2515
2515
|
controlHeight: number;
|
|
2516
2516
|
isWideScreen: boolean;
|
|
2517
2517
|
isMediumScreen: boolean;
|
|
@@ -2523,11 +2523,11 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
2523
2523
|
altGridRows: number;
|
|
2524
2524
|
altGridCols: number;
|
|
2525
2525
|
numberPages: number;
|
|
2526
|
-
currentStreams: (
|
|
2526
|
+
currentStreams: (Participant | Stream)[];
|
|
2527
2527
|
showMiniView: boolean;
|
|
2528
2528
|
nStream: MediaStream | null;
|
|
2529
2529
|
defer_receive: boolean;
|
|
2530
|
-
allAudioStreams: (
|
|
2530
|
+
allAudioStreams: (Participant | Stream)[];
|
|
2531
2531
|
screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
|
|
2532
2532
|
remoteScreenStream: Stream[];
|
|
2533
2533
|
gotAllVids: boolean;
|
|
@@ -2979,7 +2979,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
2979
2979
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
2980
2980
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
2981
2981
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
2982
|
-
checkOrientation: () => "
|
|
2982
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
2983
2983
|
updateDevice: (value: Device | null) => void;
|
|
2984
2984
|
updateSocket: (value: Socket) => void;
|
|
2985
2985
|
updateValidated: (value: boolean) => void;
|
|
@@ -3130,15 +3130,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
3130
3130
|
landScaped: boolean;
|
|
3131
3131
|
lock_screen: boolean;
|
|
3132
3132
|
screenId: string;
|
|
3133
|
-
allVideoStreams: (
|
|
3134
|
-
newLimitedStreams: (
|
|
3133
|
+
allVideoStreams: (Participant | Stream)[];
|
|
3134
|
+
newLimitedStreams: (Participant | Stream)[];
|
|
3135
3135
|
newLimitedStreamsIDs: string[];
|
|
3136
3136
|
activeSounds: string[];
|
|
3137
3137
|
screenShareIDStream: string;
|
|
3138
3138
|
screenShareNameStream: string;
|
|
3139
3139
|
adminIDStream: string;
|
|
3140
3140
|
adminNameStream: string;
|
|
3141
|
-
youYouStream: (
|
|
3141
|
+
youYouStream: (Participant | Stream)[];
|
|
3142
3142
|
youYouStreamIDs: string[];
|
|
3143
3143
|
localStream: MediaStream | null;
|
|
3144
3144
|
recordStarted: boolean;
|
|
@@ -3180,15 +3180,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
3180
3180
|
screenAlreadyOn: boolean;
|
|
3181
3181
|
chatAlreadyOn: boolean;
|
|
3182
3182
|
redirectURL: string;
|
|
3183
|
-
oldAllStreams: (
|
|
3183
|
+
oldAllStreams: (Participant | Stream)[];
|
|
3184
3184
|
adminVidID: string;
|
|
3185
3185
|
streamNames: Stream[];
|
|
3186
3186
|
non_alVideoStreams: Participant[];
|
|
3187
3187
|
sortAudioLoudness: boolean;
|
|
3188
3188
|
audioDecibels: AudioDecibels[];
|
|
3189
|
-
mixed_alVideoStreams: (
|
|
3189
|
+
mixed_alVideoStreams: (Participant | Stream)[];
|
|
3190
3190
|
non_alVideoStreams_muted: Participant[];
|
|
3191
|
-
paginatedStreams: (
|
|
3191
|
+
paginatedStreams: (Participant | Stream)[][];
|
|
3192
3192
|
localStreamAudio: MediaStream | null;
|
|
3193
3193
|
defAudioID: string;
|
|
3194
3194
|
userDefaultAudioInputDevice: string;
|
|
@@ -3216,8 +3216,8 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
3216
3216
|
prevDoPaginate: boolean;
|
|
3217
3217
|
doPaginate: boolean;
|
|
3218
3218
|
shareEnded: boolean;
|
|
3219
|
-
lStreams: (
|
|
3220
|
-
chatRefStreams: (
|
|
3219
|
+
lStreams: (Participant | Stream)[];
|
|
3220
|
+
chatRefStreams: (Participant | Stream)[];
|
|
3221
3221
|
controlHeight: number;
|
|
3222
3222
|
isWideScreen: boolean;
|
|
3223
3223
|
isMediumScreen: boolean;
|
|
@@ -3229,11 +3229,11 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
3229
3229
|
altGridRows: number;
|
|
3230
3230
|
altGridCols: number;
|
|
3231
3231
|
numberPages: number;
|
|
3232
|
-
currentStreams: (
|
|
3232
|
+
currentStreams: (Participant | Stream)[];
|
|
3233
3233
|
showMiniView: boolean;
|
|
3234
3234
|
nStream: MediaStream | null;
|
|
3235
3235
|
defer_receive: boolean;
|
|
3236
|
-
allAudioStreams: (
|
|
3236
|
+
allAudioStreams: (Participant | Stream)[];
|
|
3237
3237
|
screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
|
|
3238
3238
|
remoteScreenStream: Stream[];
|
|
3239
3239
|
gotAllVids: boolean;
|
|
@@ -3685,7 +3685,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
3685
3685
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
3686
3686
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
3687
3687
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
3688
|
-
checkOrientation: () => "
|
|
3688
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
3689
3689
|
updateDevice: (value: Device | null) => void;
|
|
3690
3690
|
updateSocket: (value: Socket) => void;
|
|
3691
3691
|
updateValidated: (value: boolean) => void;
|
|
@@ -3839,15 +3839,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
3839
3839
|
landScaped: boolean;
|
|
3840
3840
|
lock_screen: boolean;
|
|
3841
3841
|
screenId: string;
|
|
3842
|
-
allVideoStreams: (
|
|
3843
|
-
newLimitedStreams: (
|
|
3842
|
+
allVideoStreams: (Participant | Stream)[];
|
|
3843
|
+
newLimitedStreams: (Participant | Stream)[];
|
|
3844
3844
|
newLimitedStreamsIDs: string[];
|
|
3845
3845
|
activeSounds: string[];
|
|
3846
3846
|
screenShareIDStream: string;
|
|
3847
3847
|
screenShareNameStream: string;
|
|
3848
3848
|
adminIDStream: string;
|
|
3849
3849
|
adminNameStream: string;
|
|
3850
|
-
youYouStream: (
|
|
3850
|
+
youYouStream: (Participant | Stream)[];
|
|
3851
3851
|
youYouStreamIDs: string[];
|
|
3852
3852
|
localStream: MediaStream | null;
|
|
3853
3853
|
recordStarted: boolean;
|
|
@@ -3889,15 +3889,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
3889
3889
|
screenAlreadyOn: boolean;
|
|
3890
3890
|
chatAlreadyOn: boolean;
|
|
3891
3891
|
redirectURL: string;
|
|
3892
|
-
oldAllStreams: (
|
|
3892
|
+
oldAllStreams: (Participant | Stream)[];
|
|
3893
3893
|
adminVidID: string;
|
|
3894
3894
|
streamNames: Stream[];
|
|
3895
3895
|
non_alVideoStreams: Participant[];
|
|
3896
3896
|
sortAudioLoudness: boolean;
|
|
3897
3897
|
audioDecibels: AudioDecibels[];
|
|
3898
|
-
mixed_alVideoStreams: (
|
|
3898
|
+
mixed_alVideoStreams: (Participant | Stream)[];
|
|
3899
3899
|
non_alVideoStreams_muted: Participant[];
|
|
3900
|
-
paginatedStreams: (
|
|
3900
|
+
paginatedStreams: (Participant | Stream)[][];
|
|
3901
3901
|
localStreamAudio: MediaStream | null;
|
|
3902
3902
|
defAudioID: string;
|
|
3903
3903
|
userDefaultAudioInputDevice: string;
|
|
@@ -3925,8 +3925,8 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
3925
3925
|
prevDoPaginate: boolean;
|
|
3926
3926
|
doPaginate: boolean;
|
|
3927
3927
|
shareEnded: boolean;
|
|
3928
|
-
lStreams: (
|
|
3929
|
-
chatRefStreams: (
|
|
3928
|
+
lStreams: (Participant | Stream)[];
|
|
3929
|
+
chatRefStreams: (Participant | Stream)[];
|
|
3930
3930
|
controlHeight: number;
|
|
3931
3931
|
isWideScreen: boolean;
|
|
3932
3932
|
isMediumScreen: boolean;
|
|
@@ -3938,11 +3938,11 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
3938
3938
|
altGridRows: number;
|
|
3939
3939
|
altGridCols: number;
|
|
3940
3940
|
numberPages: number;
|
|
3941
|
-
currentStreams: (
|
|
3941
|
+
currentStreams: (Participant | Stream)[];
|
|
3942
3942
|
showMiniView: boolean;
|
|
3943
3943
|
nStream: MediaStream | null;
|
|
3944
3944
|
defer_receive: boolean;
|
|
3945
|
-
allAudioStreams: (
|
|
3945
|
+
allAudioStreams: (Participant | Stream)[];
|
|
3946
3946
|
screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
|
|
3947
3947
|
remoteScreenStream: Stream[];
|
|
3948
3948
|
gotAllVids: boolean;
|
|
@@ -4394,7 +4394,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
4394
4394
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
4395
4395
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
4396
4396
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
4397
|
-
checkOrientation: () => "
|
|
4397
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
4398
4398
|
updateDevice: (value: Device | null) => void;
|
|
4399
4399
|
updateSocket: (value: Socket) => void;
|
|
4400
4400
|
updateValidated: (value: boolean) => void;
|
|
@@ -4545,15 +4545,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
4545
4545
|
landScaped: boolean;
|
|
4546
4546
|
lock_screen: boolean;
|
|
4547
4547
|
screenId: string;
|
|
4548
|
-
allVideoStreams: (
|
|
4549
|
-
newLimitedStreams: (
|
|
4548
|
+
allVideoStreams: (Participant | Stream)[];
|
|
4549
|
+
newLimitedStreams: (Participant | Stream)[];
|
|
4550
4550
|
newLimitedStreamsIDs: string[];
|
|
4551
4551
|
activeSounds: string[];
|
|
4552
4552
|
screenShareIDStream: string;
|
|
4553
4553
|
screenShareNameStream: string;
|
|
4554
4554
|
adminIDStream: string;
|
|
4555
4555
|
adminNameStream: string;
|
|
4556
|
-
youYouStream: (
|
|
4556
|
+
youYouStream: (Participant | Stream)[];
|
|
4557
4557
|
youYouStreamIDs: string[];
|
|
4558
4558
|
localStream: MediaStream | null;
|
|
4559
4559
|
recordStarted: boolean;
|
|
@@ -4595,15 +4595,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
4595
4595
|
screenAlreadyOn: boolean;
|
|
4596
4596
|
chatAlreadyOn: boolean;
|
|
4597
4597
|
redirectURL: string;
|
|
4598
|
-
oldAllStreams: (
|
|
4598
|
+
oldAllStreams: (Participant | Stream)[];
|
|
4599
4599
|
adminVidID: string;
|
|
4600
4600
|
streamNames: Stream[];
|
|
4601
4601
|
non_alVideoStreams: Participant[];
|
|
4602
4602
|
sortAudioLoudness: boolean;
|
|
4603
4603
|
audioDecibels: AudioDecibels[];
|
|
4604
|
-
mixed_alVideoStreams: (
|
|
4604
|
+
mixed_alVideoStreams: (Participant | Stream)[];
|
|
4605
4605
|
non_alVideoStreams_muted: Participant[];
|
|
4606
|
-
paginatedStreams: (
|
|
4606
|
+
paginatedStreams: (Participant | Stream)[][];
|
|
4607
4607
|
localStreamAudio: MediaStream | null;
|
|
4608
4608
|
defAudioID: string;
|
|
4609
4609
|
userDefaultAudioInputDevice: string;
|
|
@@ -4631,8 +4631,8 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
4631
4631
|
prevDoPaginate: boolean;
|
|
4632
4632
|
doPaginate: boolean;
|
|
4633
4633
|
shareEnded: boolean;
|
|
4634
|
-
lStreams: (
|
|
4635
|
-
chatRefStreams: (
|
|
4634
|
+
lStreams: (Participant | Stream)[];
|
|
4635
|
+
chatRefStreams: (Participant | Stream)[];
|
|
4636
4636
|
controlHeight: number;
|
|
4637
4637
|
isWideScreen: boolean;
|
|
4638
4638
|
isMediumScreen: boolean;
|
|
@@ -4644,11 +4644,11 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
4644
4644
|
altGridRows: number;
|
|
4645
4645
|
altGridCols: number;
|
|
4646
4646
|
numberPages: number;
|
|
4647
|
-
currentStreams: (
|
|
4647
|
+
currentStreams: (Participant | Stream)[];
|
|
4648
4648
|
showMiniView: boolean;
|
|
4649
4649
|
nStream: MediaStream | null;
|
|
4650
4650
|
defer_receive: boolean;
|
|
4651
|
-
allAudioStreams: (
|
|
4651
|
+
allAudioStreams: (Participant | Stream)[];
|
|
4652
4652
|
screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
|
|
4653
4653
|
remoteScreenStream: Stream[];
|
|
4654
4654
|
gotAllVids: boolean;
|
|
@@ -5100,7 +5100,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
5100
5100
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
5101
5101
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
5102
5102
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
5103
|
-
checkOrientation: () => "
|
|
5103
|
+
checkOrientation: () => "landscape" | "portrait";
|
|
5104
5104
|
updateDevice: (value: Device | null) => void;
|
|
5105
5105
|
updateSocket: (value: Socket) => void;
|
|
5106
5106
|
updateValidated: (value: boolean) => void;
|