mediasfu-angular 2.2.4 → 2.2.5
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/fesm2022/mediasfu-angular.mjs +5 -2
- package/dist/fesm2022/mediasfu-angular.mjs.map +1 -1
- package/dist/lib/components/mediasfu-components/mediasfu-broadcast.component.d.ts +55 -55
- package/dist/lib/components/mediasfu-components/mediasfu-chat.component.d.ts +29 -29
- package/dist/lib/components/mediasfu-components/mediasfu-conference.component.d.ts +29 -29
- package/dist/lib/components/mediasfu-components/mediasfu-generic.component.d.ts +29 -29
- package/dist/lib/components/mediasfu-components/mediasfu-webinar.component.d.ts +27 -27
- package/package.json +2 -2
|
@@ -447,8 +447,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
447
447
|
alertOverrideProps: () => {
|
|
448
448
|
visible: boolean;
|
|
449
449
|
message: string;
|
|
450
|
-
type: "
|
|
451
|
-
position: "
|
|
450
|
+
type: "danger" | "success" | "info" | "warning";
|
|
451
|
+
position: "center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
452
452
|
duration: number;
|
|
453
453
|
onHide: () => void;
|
|
454
454
|
isDarkMode: boolean;
|
|
@@ -537,15 +537,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
537
537
|
landScaped: boolean;
|
|
538
538
|
lock_screen: boolean;
|
|
539
539
|
screenId: string;
|
|
540
|
-
allVideoStreams: (
|
|
541
|
-
newLimitedStreams: (
|
|
540
|
+
allVideoStreams: (Stream | Participant)[];
|
|
541
|
+
newLimitedStreams: (Stream | Participant)[];
|
|
542
542
|
newLimitedStreamsIDs: string[];
|
|
543
543
|
activeSounds: string[];
|
|
544
544
|
screenShareIDStream: string;
|
|
545
545
|
screenShareNameStream: string;
|
|
546
546
|
adminIDStream: string;
|
|
547
547
|
adminNameStream: string;
|
|
548
|
-
youYouStream: (
|
|
548
|
+
youYouStream: (Stream | Participant)[];
|
|
549
549
|
youYouStreamIDs: string[];
|
|
550
550
|
localStream: MediaStream;
|
|
551
551
|
recordStarted: boolean;
|
|
@@ -587,15 +587,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
587
587
|
screenAlreadyOn: boolean;
|
|
588
588
|
chatAlreadyOn: boolean;
|
|
589
589
|
redirectURL: string;
|
|
590
|
-
oldAllStreams: (
|
|
590
|
+
oldAllStreams: (Stream | Participant)[];
|
|
591
591
|
adminVidID: string;
|
|
592
592
|
streamNames: Stream[];
|
|
593
593
|
non_alVideoStreams: Participant[];
|
|
594
594
|
sortAudioLoudness: boolean;
|
|
595
595
|
audioDecibels: AudioDecibels[];
|
|
596
|
-
mixed_alVideoStreams: (
|
|
596
|
+
mixed_alVideoStreams: (Stream | Participant)[];
|
|
597
597
|
non_alVideoStreams_muted: Participant[];
|
|
598
|
-
paginatedStreams: (
|
|
598
|
+
paginatedStreams: (Stream | Participant)[][];
|
|
599
599
|
localStreamAudio: MediaStream;
|
|
600
600
|
defAudioID: string;
|
|
601
601
|
userDefaultAudioInputDevice: string;
|
|
@@ -623,8 +623,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
623
623
|
prevDoPaginate: boolean;
|
|
624
624
|
doPaginate: boolean;
|
|
625
625
|
shareEnded: boolean;
|
|
626
|
-
lStreams: (
|
|
627
|
-
chatRefStreams: (
|
|
626
|
+
lStreams: (Stream | Participant)[];
|
|
627
|
+
chatRefStreams: (Stream | Participant)[];
|
|
628
628
|
controlHeight: number;
|
|
629
629
|
isWideScreen: boolean;
|
|
630
630
|
isMediumScreen: boolean;
|
|
@@ -636,11 +636,11 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
636
636
|
altGridRows: number;
|
|
637
637
|
altGridCols: number;
|
|
638
638
|
numberPages: number;
|
|
639
|
-
currentStreams: (
|
|
639
|
+
currentStreams: (Stream | Participant)[];
|
|
640
640
|
showMiniView: boolean;
|
|
641
641
|
nStream: MediaStream;
|
|
642
642
|
defer_receive: boolean;
|
|
643
|
-
allAudioStreams: (
|
|
643
|
+
allAudioStreams: (Stream | Participant)[];
|
|
644
644
|
screenProducer: Producer;
|
|
645
645
|
remoteScreenStream: Stream[];
|
|
646
646
|
gotAllVids: boolean;
|
|
@@ -680,8 +680,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
680
680
|
totalReqWait: number;
|
|
681
681
|
alertVisible: boolean;
|
|
682
682
|
alertMessage: string;
|
|
683
|
-
alertType: "
|
|
684
|
-
alertPosition: "
|
|
683
|
+
alertType: "danger" | "success" | "info" | "warning";
|
|
684
|
+
alertPosition: "center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
685
685
|
alertDuration: number;
|
|
686
686
|
progressTimerVisible: boolean;
|
|
687
687
|
progressTimerValue: number;
|
|
@@ -703,7 +703,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
703
703
|
recordingVideoOptions: string;
|
|
704
704
|
recordingVideoType: string;
|
|
705
705
|
recordingVideoOptimized: boolean;
|
|
706
|
-
recordingDisplayType: "video" | "
|
|
706
|
+
recordingDisplayType: "video" | "media" | "all";
|
|
707
707
|
recordingAddHLS: boolean;
|
|
708
708
|
recordingAddText: boolean;
|
|
709
709
|
recordingCustomText: string;
|
|
@@ -1196,15 +1196,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
1196
1196
|
landScaped: boolean;
|
|
1197
1197
|
lock_screen: boolean;
|
|
1198
1198
|
screenId: string;
|
|
1199
|
-
allVideoStreams: (
|
|
1200
|
-
newLimitedStreams: (
|
|
1199
|
+
allVideoStreams: (Stream | Participant)[];
|
|
1200
|
+
newLimitedStreams: (Stream | Participant)[];
|
|
1201
1201
|
newLimitedStreamsIDs: string[];
|
|
1202
1202
|
activeSounds: string[];
|
|
1203
1203
|
screenShareIDStream: string;
|
|
1204
1204
|
screenShareNameStream: string;
|
|
1205
1205
|
adminIDStream: string;
|
|
1206
1206
|
adminNameStream: string;
|
|
1207
|
-
youYouStream: (
|
|
1207
|
+
youYouStream: (Stream | Participant)[];
|
|
1208
1208
|
youYouStreamIDs: string[];
|
|
1209
1209
|
localStream: MediaStream;
|
|
1210
1210
|
recordStarted: boolean;
|
|
@@ -1246,15 +1246,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
1246
1246
|
screenAlreadyOn: boolean;
|
|
1247
1247
|
chatAlreadyOn: boolean;
|
|
1248
1248
|
redirectURL: string;
|
|
1249
|
-
oldAllStreams: (
|
|
1249
|
+
oldAllStreams: (Stream | Participant)[];
|
|
1250
1250
|
adminVidID: string;
|
|
1251
1251
|
streamNames: Stream[];
|
|
1252
1252
|
non_alVideoStreams: Participant[];
|
|
1253
1253
|
sortAudioLoudness: boolean;
|
|
1254
1254
|
audioDecibels: AudioDecibels[];
|
|
1255
|
-
mixed_alVideoStreams: (
|
|
1255
|
+
mixed_alVideoStreams: (Stream | Participant)[];
|
|
1256
1256
|
non_alVideoStreams_muted: Participant[];
|
|
1257
|
-
paginatedStreams: (
|
|
1257
|
+
paginatedStreams: (Stream | Participant)[][];
|
|
1258
1258
|
localStreamAudio: MediaStream;
|
|
1259
1259
|
defAudioID: string;
|
|
1260
1260
|
userDefaultAudioInputDevice: string;
|
|
@@ -1282,8 +1282,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
1282
1282
|
prevDoPaginate: boolean;
|
|
1283
1283
|
doPaginate: boolean;
|
|
1284
1284
|
shareEnded: boolean;
|
|
1285
|
-
lStreams: (
|
|
1286
|
-
chatRefStreams: (
|
|
1285
|
+
lStreams: (Stream | Participant)[];
|
|
1286
|
+
chatRefStreams: (Stream | Participant)[];
|
|
1287
1287
|
controlHeight: number;
|
|
1288
1288
|
isWideScreen: boolean;
|
|
1289
1289
|
isMediumScreen: boolean;
|
|
@@ -1295,11 +1295,11 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
1295
1295
|
altGridRows: number;
|
|
1296
1296
|
altGridCols: number;
|
|
1297
1297
|
numberPages: number;
|
|
1298
|
-
currentStreams: (
|
|
1298
|
+
currentStreams: (Stream | Participant)[];
|
|
1299
1299
|
showMiniView: boolean;
|
|
1300
1300
|
nStream: MediaStream;
|
|
1301
1301
|
defer_receive: boolean;
|
|
1302
|
-
allAudioStreams: (
|
|
1302
|
+
allAudioStreams: (Stream | Participant)[];
|
|
1303
1303
|
screenProducer: Producer;
|
|
1304
1304
|
remoteScreenStream: Stream[];
|
|
1305
1305
|
gotAllVids: boolean;
|
|
@@ -1339,8 +1339,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
1339
1339
|
totalReqWait: number;
|
|
1340
1340
|
alertVisible: boolean;
|
|
1341
1341
|
alertMessage: string;
|
|
1342
|
-
alertType: "
|
|
1343
|
-
alertPosition: "
|
|
1342
|
+
alertType: "danger" | "success" | "info" | "warning";
|
|
1343
|
+
alertPosition: "center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
1344
1344
|
alertDuration: number;
|
|
1345
1345
|
progressTimerVisible: boolean;
|
|
1346
1346
|
progressTimerValue: number;
|
|
@@ -1362,7 +1362,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
1362
1362
|
recordingVideoOptions: string;
|
|
1363
1363
|
recordingVideoType: string;
|
|
1364
1364
|
recordingVideoOptimized: boolean;
|
|
1365
|
-
recordingDisplayType: "video" | "
|
|
1365
|
+
recordingDisplayType: "video" | "media" | "all";
|
|
1366
1366
|
recordingAddHLS: boolean;
|
|
1367
1367
|
recordingAddText: boolean;
|
|
1368
1368
|
recordingCustomText: string;
|
|
@@ -1967,15 +1967,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
1967
1967
|
landScaped: BehaviorSubject<boolean>;
|
|
1968
1968
|
lock_screen: BehaviorSubject<boolean>;
|
|
1969
1969
|
screenId: BehaviorSubject<string>;
|
|
1970
|
-
allVideoStreams: BehaviorSubject<(
|
|
1971
|
-
newLimitedStreams: BehaviorSubject<(
|
|
1970
|
+
allVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
1971
|
+
newLimitedStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
1972
1972
|
newLimitedStreamsIDs: BehaviorSubject<string[]>;
|
|
1973
1973
|
activeSounds: BehaviorSubject<string[]>;
|
|
1974
1974
|
screenShareIDStream: BehaviorSubject<string>;
|
|
1975
1975
|
screenShareNameStream: BehaviorSubject<string>;
|
|
1976
1976
|
adminIDStream: BehaviorSubject<string>;
|
|
1977
1977
|
adminNameStream: BehaviorSubject<string>;
|
|
1978
|
-
youYouStream: BehaviorSubject<(
|
|
1978
|
+
youYouStream: BehaviorSubject<(Stream | Participant)[]>;
|
|
1979
1979
|
youYouStreamIDs: BehaviorSubject<string[]>;
|
|
1980
1980
|
localStream: BehaviorSubject<MediaStream>;
|
|
1981
1981
|
recordStarted: BehaviorSubject<boolean>;
|
|
@@ -2017,15 +2017,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2017
2017
|
screenAlreadyOn: BehaviorSubject<boolean>;
|
|
2018
2018
|
chatAlreadyOn: BehaviorSubject<boolean>;
|
|
2019
2019
|
redirectURL: BehaviorSubject<string>;
|
|
2020
|
-
oldAllStreams: BehaviorSubject<(
|
|
2020
|
+
oldAllStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
2021
2021
|
adminVidID: BehaviorSubject<string>;
|
|
2022
2022
|
streamNames: BehaviorSubject<Stream[]>;
|
|
2023
2023
|
non_alVideoStreams: BehaviorSubject<Participant[]>;
|
|
2024
2024
|
sortAudioLoudness: BehaviorSubject<boolean>;
|
|
2025
2025
|
audioDecibels: BehaviorSubject<AudioDecibels[]>;
|
|
2026
|
-
mixed_alVideoStreams: BehaviorSubject<(
|
|
2026
|
+
mixed_alVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
2027
2027
|
non_alVideoStreams_muted: BehaviorSubject<Participant[]>;
|
|
2028
|
-
paginatedStreams: BehaviorSubject<(
|
|
2028
|
+
paginatedStreams: BehaviorSubject<(Stream | Participant)[][]>;
|
|
2029
2029
|
localStreamAudio: BehaviorSubject<MediaStream>;
|
|
2030
2030
|
defAudioID: BehaviorSubject<string>;
|
|
2031
2031
|
userDefaultAudioInputDevice: BehaviorSubject<string>;
|
|
@@ -2053,8 +2053,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2053
2053
|
prevDoPaginate: BehaviorSubject<boolean>;
|
|
2054
2054
|
doPaginate: BehaviorSubject<boolean>;
|
|
2055
2055
|
shareEnded: BehaviorSubject<boolean>;
|
|
2056
|
-
lStreams: BehaviorSubject<(
|
|
2057
|
-
chatRefStreams: BehaviorSubject<(
|
|
2056
|
+
lStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
2057
|
+
chatRefStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
2058
2058
|
controlHeight: BehaviorSubject<number>;
|
|
2059
2059
|
isWideScreen: BehaviorSubject<boolean>;
|
|
2060
2060
|
isMediumScreen: BehaviorSubject<boolean>;
|
|
@@ -2066,11 +2066,11 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2066
2066
|
altGridRows: BehaviorSubject<number>;
|
|
2067
2067
|
altGridCols: BehaviorSubject<number>;
|
|
2068
2068
|
numberPages: BehaviorSubject<number>;
|
|
2069
|
-
currentStreams: BehaviorSubject<(
|
|
2069
|
+
currentStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
2070
2070
|
showMiniView: BehaviorSubject<boolean>;
|
|
2071
2071
|
nStream: BehaviorSubject<MediaStream>;
|
|
2072
2072
|
defer_receive: BehaviorSubject<boolean>;
|
|
2073
|
-
allAudioStreams: BehaviorSubject<(
|
|
2073
|
+
allAudioStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
2074
2074
|
remoteScreenStream: BehaviorSubject<Stream[]>;
|
|
2075
2075
|
screenProducer: BehaviorSubject<Producer>;
|
|
2076
2076
|
localScreenProducer: BehaviorSubject<Producer>;
|
|
@@ -2310,8 +2310,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2310
2310
|
totalReqWait: BehaviorSubject<number>;
|
|
2311
2311
|
alertVisible: BehaviorSubject<boolean>;
|
|
2312
2312
|
alertMessage: BehaviorSubject<string>;
|
|
2313
|
-
alertType: BehaviorSubject<"
|
|
2314
|
-
alertPosition: BehaviorSubject<"
|
|
2313
|
+
alertType: BehaviorSubject<"danger" | "success" | "info" | "warning">;
|
|
2314
|
+
alertPosition: BehaviorSubject<"center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left">;
|
|
2315
2315
|
alertDuration: BehaviorSubject<number>;
|
|
2316
2316
|
progressTimerVisible: BehaviorSubject<boolean>;
|
|
2317
2317
|
progressTimerValue: BehaviorSubject<number>;
|
|
@@ -2342,7 +2342,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2342
2342
|
recordingVideoOptions: BehaviorSubject<string>;
|
|
2343
2343
|
recordingVideoType: BehaviorSubject<string>;
|
|
2344
2344
|
recordingVideoOptimized: BehaviorSubject<boolean>;
|
|
2345
|
-
recordingDisplayType: BehaviorSubject<"video" | "
|
|
2345
|
+
recordingDisplayType: BehaviorSubject<"video" | "media" | "all">;
|
|
2346
2346
|
recordingAddHLS: BehaviorSubject<boolean>;
|
|
2347
2347
|
recordingNameTags: BehaviorSubject<boolean>;
|
|
2348
2348
|
recordingBackgroundColor: BehaviorSubject<string>;
|
|
@@ -2569,7 +2569,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2569
2569
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
2570
2570
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
2571
2571
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
2572
|
-
checkOrientation: () => "
|
|
2572
|
+
checkOrientation: () => "portrait" | "landscape";
|
|
2573
2573
|
showAlert: ({ message, type, duration, position, }: {
|
|
2574
2574
|
message: string;
|
|
2575
2575
|
type: "success" | "danger" | "info" | "warning";
|
|
@@ -2648,15 +2648,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2648
2648
|
landScaped: boolean;
|
|
2649
2649
|
lock_screen: boolean;
|
|
2650
2650
|
screenId: string;
|
|
2651
|
-
allVideoStreams: (
|
|
2652
|
-
newLimitedStreams: (
|
|
2651
|
+
allVideoStreams: (Stream | Participant)[];
|
|
2652
|
+
newLimitedStreams: (Stream | Participant)[];
|
|
2653
2653
|
newLimitedStreamsIDs: string[];
|
|
2654
2654
|
activeSounds: string[];
|
|
2655
2655
|
screenShareIDStream: string;
|
|
2656
2656
|
screenShareNameStream: string;
|
|
2657
2657
|
adminIDStream: string;
|
|
2658
2658
|
adminNameStream: string;
|
|
2659
|
-
youYouStream: (
|
|
2659
|
+
youYouStream: (Stream | Participant)[];
|
|
2660
2660
|
youYouStreamIDs: string[];
|
|
2661
2661
|
localStream: MediaStream;
|
|
2662
2662
|
recordStarted: boolean;
|
|
@@ -2698,15 +2698,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2698
2698
|
screenAlreadyOn: boolean;
|
|
2699
2699
|
chatAlreadyOn: boolean;
|
|
2700
2700
|
redirectURL: string;
|
|
2701
|
-
oldAllStreams: (
|
|
2701
|
+
oldAllStreams: (Stream | Participant)[];
|
|
2702
2702
|
adminVidID: string;
|
|
2703
2703
|
streamNames: Stream[];
|
|
2704
2704
|
non_alVideoStreams: Participant[];
|
|
2705
2705
|
sortAudioLoudness: boolean;
|
|
2706
2706
|
audioDecibels: AudioDecibels[];
|
|
2707
|
-
mixed_alVideoStreams: (
|
|
2707
|
+
mixed_alVideoStreams: (Stream | Participant)[];
|
|
2708
2708
|
non_alVideoStreams_muted: Participant[];
|
|
2709
|
-
paginatedStreams: (
|
|
2709
|
+
paginatedStreams: (Stream | Participant)[][];
|
|
2710
2710
|
localStreamAudio: MediaStream;
|
|
2711
2711
|
defAudioID: string;
|
|
2712
2712
|
userDefaultAudioInputDevice: string;
|
|
@@ -2734,8 +2734,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2734
2734
|
prevDoPaginate: boolean;
|
|
2735
2735
|
doPaginate: boolean;
|
|
2736
2736
|
shareEnded: boolean;
|
|
2737
|
-
lStreams: (
|
|
2738
|
-
chatRefStreams: (
|
|
2737
|
+
lStreams: (Stream | Participant)[];
|
|
2738
|
+
chatRefStreams: (Stream | Participant)[];
|
|
2739
2739
|
controlHeight: number;
|
|
2740
2740
|
isWideScreen: boolean;
|
|
2741
2741
|
isMediumScreen: boolean;
|
|
@@ -2747,11 +2747,11 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2747
2747
|
altGridRows: number;
|
|
2748
2748
|
altGridCols: number;
|
|
2749
2749
|
numberPages: number;
|
|
2750
|
-
currentStreams: (
|
|
2750
|
+
currentStreams: (Stream | Participant)[];
|
|
2751
2751
|
showMiniView: boolean;
|
|
2752
2752
|
nStream: MediaStream;
|
|
2753
2753
|
defer_receive: boolean;
|
|
2754
|
-
allAudioStreams: (
|
|
2754
|
+
allAudioStreams: (Stream | Participant)[];
|
|
2755
2755
|
screenProducer: Producer;
|
|
2756
2756
|
remoteScreenStream: Stream[];
|
|
2757
2757
|
gotAllVids: boolean;
|
|
@@ -2791,8 +2791,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2791
2791
|
totalReqWait: number;
|
|
2792
2792
|
alertVisible: boolean;
|
|
2793
2793
|
alertMessage: string;
|
|
2794
|
-
alertType: "
|
|
2795
|
-
alertPosition: "
|
|
2794
|
+
alertType: "danger" | "success" | "info" | "warning";
|
|
2795
|
+
alertPosition: "center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
2796
2796
|
alertDuration: number;
|
|
2797
2797
|
progressTimerVisible: boolean;
|
|
2798
2798
|
progressTimerValue: number;
|
|
@@ -2814,7 +2814,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
|
|
|
2814
2814
|
recordingVideoOptions: string;
|
|
2815
2815
|
recordingVideoType: string;
|
|
2816
2816
|
recordingVideoOptimized: boolean;
|
|
2817
|
-
recordingDisplayType: "video" | "
|
|
2817
|
+
recordingDisplayType: "video" | "media" | "all";
|
|
2818
2818
|
recordingAddHLS: boolean;
|
|
2819
2819
|
recordingAddText: boolean;
|
|
2820
2820
|
recordingCustomText: string;
|
|
@@ -380,8 +380,8 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
380
380
|
protected alertOverrideProps: () => {
|
|
381
381
|
visible: boolean;
|
|
382
382
|
message: string;
|
|
383
|
-
type: "
|
|
384
|
-
position: "
|
|
383
|
+
type: "danger" | "success" | "info" | "warning";
|
|
384
|
+
position: "center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
385
385
|
duration: number;
|
|
386
386
|
onHide: () => void;
|
|
387
387
|
isDarkMode: boolean;
|
|
@@ -574,15 +574,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
574
574
|
landScaped: BehaviorSubject<boolean>;
|
|
575
575
|
lock_screen: BehaviorSubject<boolean>;
|
|
576
576
|
screenId: BehaviorSubject<string>;
|
|
577
|
-
allVideoStreams: BehaviorSubject<(
|
|
578
|
-
newLimitedStreams: BehaviorSubject<(
|
|
577
|
+
allVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
578
|
+
newLimitedStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
579
579
|
newLimitedStreamsIDs: BehaviorSubject<string[]>;
|
|
580
580
|
activeSounds: BehaviorSubject<string[]>;
|
|
581
581
|
screenShareIDStream: BehaviorSubject<string>;
|
|
582
582
|
screenShareNameStream: BehaviorSubject<string>;
|
|
583
583
|
adminIDStream: BehaviorSubject<string>;
|
|
584
584
|
adminNameStream: BehaviorSubject<string>;
|
|
585
|
-
youYouStream: BehaviorSubject<(
|
|
585
|
+
youYouStream: BehaviorSubject<(Stream | Participant)[]>;
|
|
586
586
|
youYouStreamIDs: BehaviorSubject<string[]>;
|
|
587
587
|
localStream: BehaviorSubject<MediaStream>;
|
|
588
588
|
recordStarted: BehaviorSubject<boolean>;
|
|
@@ -624,15 +624,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
624
624
|
screenAlreadyOn: BehaviorSubject<boolean>;
|
|
625
625
|
chatAlreadyOn: BehaviorSubject<boolean>;
|
|
626
626
|
redirectURL: BehaviorSubject<string>;
|
|
627
|
-
oldAllStreams: BehaviorSubject<(
|
|
627
|
+
oldAllStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
628
628
|
adminVidID: BehaviorSubject<string>;
|
|
629
629
|
streamNames: BehaviorSubject<Stream[]>;
|
|
630
630
|
non_alVideoStreams: BehaviorSubject<Participant[]>;
|
|
631
631
|
sortAudioLoudness: BehaviorSubject<boolean>;
|
|
632
632
|
audioDecibels: BehaviorSubject<AudioDecibels[]>;
|
|
633
|
-
mixed_alVideoStreams: BehaviorSubject<(
|
|
633
|
+
mixed_alVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
634
634
|
non_alVideoStreams_muted: BehaviorSubject<Participant[]>;
|
|
635
|
-
paginatedStreams: BehaviorSubject<(
|
|
635
|
+
paginatedStreams: BehaviorSubject<(Stream | Participant)[][]>;
|
|
636
636
|
localStreamAudio: BehaviorSubject<MediaStream>;
|
|
637
637
|
defAudioID: BehaviorSubject<string>;
|
|
638
638
|
userDefaultAudioInputDevice: BehaviorSubject<string>;
|
|
@@ -660,8 +660,8 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
660
660
|
prevDoPaginate: BehaviorSubject<boolean>;
|
|
661
661
|
doPaginate: BehaviorSubject<boolean>;
|
|
662
662
|
shareEnded: BehaviorSubject<boolean>;
|
|
663
|
-
lStreams: BehaviorSubject<(
|
|
664
|
-
chatRefStreams: BehaviorSubject<(
|
|
663
|
+
lStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
664
|
+
chatRefStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
665
665
|
controlHeight: BehaviorSubject<number>;
|
|
666
666
|
isWideScreen: BehaviorSubject<boolean>;
|
|
667
667
|
isMediumScreen: BehaviorSubject<boolean>;
|
|
@@ -673,11 +673,11 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
673
673
|
altGridRows: BehaviorSubject<number>;
|
|
674
674
|
altGridCols: BehaviorSubject<number>;
|
|
675
675
|
numberPages: BehaviorSubject<number>;
|
|
676
|
-
currentStreams: BehaviorSubject<(
|
|
676
|
+
currentStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
677
677
|
showMiniView: BehaviorSubject<boolean>;
|
|
678
678
|
nStream: BehaviorSubject<MediaStream>;
|
|
679
679
|
defer_receive: BehaviorSubject<boolean>;
|
|
680
|
-
allAudioStreams: BehaviorSubject<(
|
|
680
|
+
allAudioStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
681
681
|
remoteScreenStream: BehaviorSubject<Stream[]>;
|
|
682
682
|
screenProducer: BehaviorSubject<Producer>;
|
|
683
683
|
localScreenProducer: BehaviorSubject<Producer>;
|
|
@@ -917,8 +917,8 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
917
917
|
totalReqWait: BehaviorSubject<number>;
|
|
918
918
|
alertVisible: BehaviorSubject<boolean>;
|
|
919
919
|
alertMessage: BehaviorSubject<string>;
|
|
920
|
-
alertType: BehaviorSubject<"
|
|
921
|
-
alertPosition: BehaviorSubject<"
|
|
920
|
+
alertType: BehaviorSubject<"danger" | "success" | "info" | "warning">;
|
|
921
|
+
alertPosition: BehaviorSubject<"center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left">;
|
|
922
922
|
alertDuration: BehaviorSubject<number>;
|
|
923
923
|
progressTimerVisible: BehaviorSubject<boolean>;
|
|
924
924
|
progressTimerValue: BehaviorSubject<number>;
|
|
@@ -945,7 +945,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
945
945
|
recordingVideoOptions: BehaviorSubject<string>;
|
|
946
946
|
recordingVideoType: BehaviorSubject<string>;
|
|
947
947
|
recordingVideoOptimized: BehaviorSubject<boolean>;
|
|
948
|
-
recordingDisplayType: BehaviorSubject<"video" | "
|
|
948
|
+
recordingDisplayType: BehaviorSubject<"video" | "media" | "all">;
|
|
949
949
|
recordingAddHLS: BehaviorSubject<boolean>;
|
|
950
950
|
recordingNameTags: BehaviorSubject<boolean>;
|
|
951
951
|
recordingBackgroundColor: BehaviorSubject<string>;
|
|
@@ -1172,7 +1172,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1172
1172
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
1173
1173
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
1174
1174
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
1175
|
-
checkOrientation: () => "
|
|
1175
|
+
checkOrientation: () => "portrait" | "landscape";
|
|
1176
1176
|
showAlert: ({ message, type, duration, position, }: {
|
|
1177
1177
|
message: string;
|
|
1178
1178
|
type: "success" | "danger" | "info" | "warning";
|
|
@@ -1251,15 +1251,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1251
1251
|
landScaped: boolean;
|
|
1252
1252
|
lock_screen: boolean;
|
|
1253
1253
|
screenId: string;
|
|
1254
|
-
allVideoStreams: (
|
|
1255
|
-
newLimitedStreams: (
|
|
1254
|
+
allVideoStreams: (Stream | Participant)[];
|
|
1255
|
+
newLimitedStreams: (Stream | Participant)[];
|
|
1256
1256
|
newLimitedStreamsIDs: string[];
|
|
1257
1257
|
activeSounds: string[];
|
|
1258
1258
|
screenShareIDStream: string;
|
|
1259
1259
|
screenShareNameStream: string;
|
|
1260
1260
|
adminIDStream: string;
|
|
1261
1261
|
adminNameStream: string;
|
|
1262
|
-
youYouStream: (
|
|
1262
|
+
youYouStream: (Stream | Participant)[];
|
|
1263
1263
|
youYouStreamIDs: string[];
|
|
1264
1264
|
localStream: MediaStream;
|
|
1265
1265
|
recordStarted: boolean;
|
|
@@ -1301,15 +1301,15 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1301
1301
|
screenAlreadyOn: boolean;
|
|
1302
1302
|
chatAlreadyOn: boolean;
|
|
1303
1303
|
redirectURL: string;
|
|
1304
|
-
oldAllStreams: (
|
|
1304
|
+
oldAllStreams: (Stream | Participant)[];
|
|
1305
1305
|
adminVidID: string;
|
|
1306
1306
|
streamNames: Stream[];
|
|
1307
1307
|
non_alVideoStreams: Participant[];
|
|
1308
1308
|
sortAudioLoudness: boolean;
|
|
1309
1309
|
audioDecibels: AudioDecibels[];
|
|
1310
|
-
mixed_alVideoStreams: (
|
|
1310
|
+
mixed_alVideoStreams: (Stream | Participant)[];
|
|
1311
1311
|
non_alVideoStreams_muted: Participant[];
|
|
1312
|
-
paginatedStreams: (
|
|
1312
|
+
paginatedStreams: (Stream | Participant)[][];
|
|
1313
1313
|
localStreamAudio: MediaStream;
|
|
1314
1314
|
defAudioID: string;
|
|
1315
1315
|
userDefaultAudioInputDevice: string;
|
|
@@ -1337,8 +1337,8 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1337
1337
|
prevDoPaginate: boolean;
|
|
1338
1338
|
doPaginate: boolean;
|
|
1339
1339
|
shareEnded: boolean;
|
|
1340
|
-
lStreams: (
|
|
1341
|
-
chatRefStreams: (
|
|
1340
|
+
lStreams: (Stream | Participant)[];
|
|
1341
|
+
chatRefStreams: (Stream | Participant)[];
|
|
1342
1342
|
controlHeight: number;
|
|
1343
1343
|
isWideScreen: boolean;
|
|
1344
1344
|
isMediumScreen: boolean;
|
|
@@ -1350,11 +1350,11 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1350
1350
|
altGridRows: number;
|
|
1351
1351
|
altGridCols: number;
|
|
1352
1352
|
numberPages: number;
|
|
1353
|
-
currentStreams: (
|
|
1353
|
+
currentStreams: (Stream | Participant)[];
|
|
1354
1354
|
showMiniView: boolean;
|
|
1355
1355
|
nStream: MediaStream;
|
|
1356
1356
|
defer_receive: boolean;
|
|
1357
|
-
allAudioStreams: (
|
|
1357
|
+
allAudioStreams: (Stream | Participant)[];
|
|
1358
1358
|
screenProducer: Producer;
|
|
1359
1359
|
remoteScreenStream: Stream[];
|
|
1360
1360
|
gotAllVids: boolean;
|
|
@@ -1394,8 +1394,8 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1394
1394
|
totalReqWait: number;
|
|
1395
1395
|
alertVisible: boolean;
|
|
1396
1396
|
alertMessage: string;
|
|
1397
|
-
alertType: "
|
|
1398
|
-
alertPosition: "
|
|
1397
|
+
alertType: "danger" | "success" | "info" | "warning";
|
|
1398
|
+
alertPosition: "center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
1399
1399
|
alertDuration: number;
|
|
1400
1400
|
progressTimerVisible: boolean;
|
|
1401
1401
|
progressTimerValue: number;
|
|
@@ -1417,7 +1417,7 @@ export declare class MediasfuChat implements OnInit, OnDestroy {
|
|
|
1417
1417
|
recordingVideoOptions: string;
|
|
1418
1418
|
recordingVideoType: string;
|
|
1419
1419
|
recordingVideoOptimized: boolean;
|
|
1420
|
-
recordingDisplayType: "video" | "
|
|
1420
|
+
recordingDisplayType: "video" | "media" | "all";
|
|
1421
1421
|
recordingAddHLS: boolean;
|
|
1422
1422
|
recordingAddText: boolean;
|
|
1423
1423
|
recordingCustomText: string;
|