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
|
@@ -546,8 +546,8 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
546
546
|
protected alertOverrideProps: () => {
|
|
547
547
|
visible: boolean;
|
|
548
548
|
message: string;
|
|
549
|
-
type: "
|
|
550
|
-
position: "
|
|
549
|
+
type: "danger" | "success" | "info" | "warning";
|
|
550
|
+
position: "center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
551
551
|
duration: number;
|
|
552
552
|
onHide: () => void;
|
|
553
553
|
isDarkMode: boolean;
|
|
@@ -876,15 +876,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
876
876
|
landScaped: BehaviorSubject<boolean>;
|
|
877
877
|
lock_screen: BehaviorSubject<boolean>;
|
|
878
878
|
screenId: BehaviorSubject<string>;
|
|
879
|
-
allVideoStreams: BehaviorSubject<(
|
|
880
|
-
newLimitedStreams: BehaviorSubject<(
|
|
879
|
+
allVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
880
|
+
newLimitedStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
881
881
|
newLimitedStreamsIDs: BehaviorSubject<string[]>;
|
|
882
882
|
activeSounds: BehaviorSubject<string[]>;
|
|
883
883
|
screenShareIDStream: BehaviorSubject<string>;
|
|
884
884
|
screenShareNameStream: BehaviorSubject<string>;
|
|
885
885
|
adminIDStream: BehaviorSubject<string>;
|
|
886
886
|
adminNameStream: BehaviorSubject<string>;
|
|
887
|
-
youYouStream: BehaviorSubject<(
|
|
887
|
+
youYouStream: BehaviorSubject<(Stream | Participant)[]>;
|
|
888
888
|
youYouStreamIDs: BehaviorSubject<string[]>;
|
|
889
889
|
localStream: BehaviorSubject<MediaStream>;
|
|
890
890
|
recordStarted: BehaviorSubject<boolean>;
|
|
@@ -926,15 +926,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
926
926
|
screenAlreadyOn: BehaviorSubject<boolean>;
|
|
927
927
|
chatAlreadyOn: BehaviorSubject<boolean>;
|
|
928
928
|
redirectURL: BehaviorSubject<string>;
|
|
929
|
-
oldAllStreams: BehaviorSubject<(
|
|
929
|
+
oldAllStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
930
930
|
adminVidID: BehaviorSubject<string>;
|
|
931
931
|
streamNames: BehaviorSubject<Stream[]>;
|
|
932
932
|
non_alVideoStreams: BehaviorSubject<Participant[]>;
|
|
933
933
|
sortAudioLoudness: BehaviorSubject<boolean>;
|
|
934
934
|
audioDecibels: BehaviorSubject<AudioDecibels[]>;
|
|
935
|
-
mixed_alVideoStreams: BehaviorSubject<(
|
|
935
|
+
mixed_alVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
936
936
|
non_alVideoStreams_muted: BehaviorSubject<Participant[]>;
|
|
937
|
-
paginatedStreams: BehaviorSubject<(
|
|
937
|
+
paginatedStreams: BehaviorSubject<(Stream | Participant)[][]>;
|
|
938
938
|
localStreamAudio: BehaviorSubject<MediaStream>;
|
|
939
939
|
defAudioID: BehaviorSubject<string>;
|
|
940
940
|
userDefaultAudioInputDevice: BehaviorSubject<string>;
|
|
@@ -962,8 +962,8 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
962
962
|
prevDoPaginate: BehaviorSubject<boolean>;
|
|
963
963
|
doPaginate: BehaviorSubject<boolean>;
|
|
964
964
|
shareEnded: BehaviorSubject<boolean>;
|
|
965
|
-
lStreams: BehaviorSubject<(
|
|
966
|
-
chatRefStreams: BehaviorSubject<(
|
|
965
|
+
lStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
966
|
+
chatRefStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
967
967
|
controlHeight: BehaviorSubject<number>;
|
|
968
968
|
isWideScreen: BehaviorSubject<boolean>;
|
|
969
969
|
isMediumScreen: BehaviorSubject<boolean>;
|
|
@@ -975,11 +975,11 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
975
975
|
altGridRows: BehaviorSubject<number>;
|
|
976
976
|
altGridCols: BehaviorSubject<number>;
|
|
977
977
|
numberPages: BehaviorSubject<number>;
|
|
978
|
-
currentStreams: BehaviorSubject<(
|
|
978
|
+
currentStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
979
979
|
showMiniView: BehaviorSubject<boolean>;
|
|
980
980
|
nStream: BehaviorSubject<MediaStream>;
|
|
981
981
|
defer_receive: BehaviorSubject<boolean>;
|
|
982
|
-
allAudioStreams: BehaviorSubject<(
|
|
982
|
+
allAudioStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
983
983
|
remoteScreenStream: BehaviorSubject<Stream[]>;
|
|
984
984
|
screenProducer: BehaviorSubject<Producer>;
|
|
985
985
|
localScreenProducer: BehaviorSubject<Producer>;
|
|
@@ -1219,8 +1219,8 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
1219
1219
|
totalReqWait: BehaviorSubject<number>;
|
|
1220
1220
|
alertVisible: BehaviorSubject<boolean>;
|
|
1221
1221
|
alertMessage: BehaviorSubject<string>;
|
|
1222
|
-
alertType: BehaviorSubject<"
|
|
1223
|
-
alertPosition: BehaviorSubject<"
|
|
1222
|
+
alertType: BehaviorSubject<"danger" | "success" | "info" | "warning">;
|
|
1223
|
+
alertPosition: BehaviorSubject<"center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left">;
|
|
1224
1224
|
alertDuration: BehaviorSubject<number>;
|
|
1225
1225
|
progressTimerVisible: BehaviorSubject<boolean>;
|
|
1226
1226
|
progressTimerValue: BehaviorSubject<number>;
|
|
@@ -1247,7 +1247,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
1247
1247
|
recordingVideoOptions: BehaviorSubject<string>;
|
|
1248
1248
|
recordingVideoType: BehaviorSubject<string>;
|
|
1249
1249
|
recordingVideoOptimized: BehaviorSubject<boolean>;
|
|
1250
|
-
recordingDisplayType: BehaviorSubject<"video" | "
|
|
1250
|
+
recordingDisplayType: BehaviorSubject<"video" | "media" | "all">;
|
|
1251
1251
|
recordingAddHLS: BehaviorSubject<boolean>;
|
|
1252
1252
|
recordingNameTags: BehaviorSubject<boolean>;
|
|
1253
1253
|
recordingBackgroundColor: BehaviorSubject<string>;
|
|
@@ -1476,7 +1476,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
1476
1476
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
1477
1477
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
1478
1478
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
1479
|
-
checkOrientation: () => "
|
|
1479
|
+
checkOrientation: () => "portrait" | "landscape";
|
|
1480
1480
|
showAlert: ({ message, type, duration, position, }: {
|
|
1481
1481
|
message: string;
|
|
1482
1482
|
type: "success" | "danger" | "info" | "warning";
|
|
@@ -1555,15 +1555,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
1555
1555
|
landScaped: boolean;
|
|
1556
1556
|
lock_screen: boolean;
|
|
1557
1557
|
screenId: string;
|
|
1558
|
-
allVideoStreams: (
|
|
1559
|
-
newLimitedStreams: (
|
|
1558
|
+
allVideoStreams: (Stream | Participant)[];
|
|
1559
|
+
newLimitedStreams: (Stream | Participant)[];
|
|
1560
1560
|
newLimitedStreamsIDs: string[];
|
|
1561
1561
|
activeSounds: string[];
|
|
1562
1562
|
screenShareIDStream: string;
|
|
1563
1563
|
screenShareNameStream: string;
|
|
1564
1564
|
adminIDStream: string;
|
|
1565
1565
|
adminNameStream: string;
|
|
1566
|
-
youYouStream: (
|
|
1566
|
+
youYouStream: (Stream | Participant)[];
|
|
1567
1567
|
youYouStreamIDs: string[];
|
|
1568
1568
|
localStream: MediaStream;
|
|
1569
1569
|
recordStarted: boolean;
|
|
@@ -1605,15 +1605,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
1605
1605
|
screenAlreadyOn: boolean;
|
|
1606
1606
|
chatAlreadyOn: boolean;
|
|
1607
1607
|
redirectURL: string;
|
|
1608
|
-
oldAllStreams: (
|
|
1608
|
+
oldAllStreams: (Stream | Participant)[];
|
|
1609
1609
|
adminVidID: string;
|
|
1610
1610
|
streamNames: Stream[];
|
|
1611
1611
|
non_alVideoStreams: Participant[];
|
|
1612
1612
|
sortAudioLoudness: boolean;
|
|
1613
1613
|
audioDecibels: AudioDecibels[];
|
|
1614
|
-
mixed_alVideoStreams: (
|
|
1614
|
+
mixed_alVideoStreams: (Stream | Participant)[];
|
|
1615
1615
|
non_alVideoStreams_muted: Participant[];
|
|
1616
|
-
paginatedStreams: (
|
|
1616
|
+
paginatedStreams: (Stream | Participant)[][];
|
|
1617
1617
|
localStreamAudio: MediaStream;
|
|
1618
1618
|
defAudioID: string;
|
|
1619
1619
|
userDefaultAudioInputDevice: string;
|
|
@@ -1641,8 +1641,8 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
1641
1641
|
prevDoPaginate: boolean;
|
|
1642
1642
|
doPaginate: boolean;
|
|
1643
1643
|
shareEnded: boolean;
|
|
1644
|
-
lStreams: (
|
|
1645
|
-
chatRefStreams: (
|
|
1644
|
+
lStreams: (Stream | Participant)[];
|
|
1645
|
+
chatRefStreams: (Stream | Participant)[];
|
|
1646
1646
|
controlHeight: number;
|
|
1647
1647
|
isWideScreen: boolean;
|
|
1648
1648
|
isMediumScreen: boolean;
|
|
@@ -1654,11 +1654,11 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
1654
1654
|
altGridRows: number;
|
|
1655
1655
|
altGridCols: number;
|
|
1656
1656
|
numberPages: number;
|
|
1657
|
-
currentStreams: (
|
|
1657
|
+
currentStreams: (Stream | Participant)[];
|
|
1658
1658
|
showMiniView: boolean;
|
|
1659
1659
|
nStream: MediaStream;
|
|
1660
1660
|
defer_receive: boolean;
|
|
1661
|
-
allAudioStreams: (
|
|
1661
|
+
allAudioStreams: (Stream | Participant)[];
|
|
1662
1662
|
screenProducer: Producer;
|
|
1663
1663
|
remoteScreenStream: Stream[];
|
|
1664
1664
|
gotAllVids: boolean;
|
|
@@ -1698,8 +1698,8 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
1698
1698
|
totalReqWait: number;
|
|
1699
1699
|
alertVisible: boolean;
|
|
1700
1700
|
alertMessage: string;
|
|
1701
|
-
alertType: "
|
|
1702
|
-
alertPosition: "
|
|
1701
|
+
alertType: "danger" | "success" | "info" | "warning";
|
|
1702
|
+
alertPosition: "center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
1703
1703
|
alertDuration: number;
|
|
1704
1704
|
progressTimerVisible: boolean;
|
|
1705
1705
|
progressTimerValue: number;
|
|
@@ -1721,7 +1721,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
|
|
|
1721
1721
|
recordingVideoOptions: string;
|
|
1722
1722
|
recordingVideoType: string;
|
|
1723
1723
|
recordingVideoOptimized: boolean;
|
|
1724
|
-
recordingDisplayType: "video" | "
|
|
1724
|
+
recordingDisplayType: "video" | "media" | "all";
|
|
1725
1725
|
recordingAddHLS: boolean;
|
|
1726
1726
|
recordingAddText: boolean;
|
|
1727
1727
|
recordingCustomText: string;
|
|
@@ -1255,8 +1255,8 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
1255
1255
|
alertOverrideProps: () => {
|
|
1256
1256
|
visible: boolean;
|
|
1257
1257
|
message: string;
|
|
1258
|
-
type: "
|
|
1259
|
-
position: "
|
|
1258
|
+
type: "danger" | "success" | "info" | "warning";
|
|
1259
|
+
position: "center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
1260
1260
|
duration: number;
|
|
1261
1261
|
onHide: () => void;
|
|
1262
1262
|
isDarkMode: boolean;
|
|
@@ -1376,15 +1376,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
1376
1376
|
landScaped: BehaviorSubject<boolean>;
|
|
1377
1377
|
lock_screen: BehaviorSubject<boolean>;
|
|
1378
1378
|
screenId: BehaviorSubject<string>;
|
|
1379
|
-
allVideoStreams: BehaviorSubject<(
|
|
1380
|
-
newLimitedStreams: BehaviorSubject<(
|
|
1379
|
+
allVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
1380
|
+
newLimitedStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
1381
1381
|
newLimitedStreamsIDs: BehaviorSubject<string[]>;
|
|
1382
1382
|
activeSounds: BehaviorSubject<string[]>;
|
|
1383
1383
|
screenShareIDStream: BehaviorSubject<string>;
|
|
1384
1384
|
screenShareNameStream: BehaviorSubject<string>;
|
|
1385
1385
|
adminIDStream: BehaviorSubject<string>;
|
|
1386
1386
|
adminNameStream: BehaviorSubject<string>;
|
|
1387
|
-
youYouStream: BehaviorSubject<(
|
|
1387
|
+
youYouStream: BehaviorSubject<(Stream | Participant)[]>;
|
|
1388
1388
|
youYouStreamIDs: BehaviorSubject<string[]>;
|
|
1389
1389
|
localStream: BehaviorSubject<MediaStream>;
|
|
1390
1390
|
recordStarted: BehaviorSubject<boolean>;
|
|
@@ -1426,15 +1426,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
1426
1426
|
screenAlreadyOn: BehaviorSubject<boolean>;
|
|
1427
1427
|
chatAlreadyOn: BehaviorSubject<boolean>;
|
|
1428
1428
|
redirectURL: BehaviorSubject<string>;
|
|
1429
|
-
oldAllStreams: BehaviorSubject<(
|
|
1429
|
+
oldAllStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
1430
1430
|
adminVidID: BehaviorSubject<string>;
|
|
1431
1431
|
streamNames: BehaviorSubject<Stream[]>;
|
|
1432
1432
|
non_alVideoStreams: BehaviorSubject<Participant[]>;
|
|
1433
1433
|
sortAudioLoudness: BehaviorSubject<boolean>;
|
|
1434
1434
|
audioDecibels: BehaviorSubject<AudioDecibels[]>;
|
|
1435
|
-
mixed_alVideoStreams: BehaviorSubject<(
|
|
1435
|
+
mixed_alVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
1436
1436
|
non_alVideoStreams_muted: BehaviorSubject<Participant[]>;
|
|
1437
|
-
paginatedStreams: BehaviorSubject<(
|
|
1437
|
+
paginatedStreams: BehaviorSubject<(Stream | Participant)[][]>;
|
|
1438
1438
|
localStreamAudio: BehaviorSubject<MediaStream>;
|
|
1439
1439
|
defAudioID: BehaviorSubject<string>;
|
|
1440
1440
|
userDefaultAudioInputDevice: BehaviorSubject<string>;
|
|
@@ -1462,8 +1462,8 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
1462
1462
|
prevDoPaginate: BehaviorSubject<boolean>;
|
|
1463
1463
|
doPaginate: BehaviorSubject<boolean>;
|
|
1464
1464
|
shareEnded: BehaviorSubject<boolean>;
|
|
1465
|
-
lStreams: BehaviorSubject<(
|
|
1466
|
-
chatRefStreams: BehaviorSubject<(
|
|
1465
|
+
lStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
1466
|
+
chatRefStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
1467
1467
|
controlHeight: BehaviorSubject<number>;
|
|
1468
1468
|
isWideScreen: BehaviorSubject<boolean>;
|
|
1469
1469
|
isMediumScreen: BehaviorSubject<boolean>;
|
|
@@ -1475,11 +1475,11 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
1475
1475
|
altGridRows: BehaviorSubject<number>;
|
|
1476
1476
|
altGridCols: BehaviorSubject<number>;
|
|
1477
1477
|
numberPages: BehaviorSubject<number>;
|
|
1478
|
-
currentStreams: BehaviorSubject<(
|
|
1478
|
+
currentStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
1479
1479
|
showMiniView: BehaviorSubject<boolean>;
|
|
1480
1480
|
nStream: BehaviorSubject<MediaStream>;
|
|
1481
1481
|
defer_receive: BehaviorSubject<boolean>;
|
|
1482
|
-
allAudioStreams: BehaviorSubject<(
|
|
1482
|
+
allAudioStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
1483
1483
|
remoteScreenStream: BehaviorSubject<Stream[]>;
|
|
1484
1484
|
screenProducer: BehaviorSubject<Producer>;
|
|
1485
1485
|
localScreenProducer: BehaviorSubject<Producer>;
|
|
@@ -1731,8 +1731,8 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
1731
1731
|
totalReqWait: BehaviorSubject<number>;
|
|
1732
1732
|
alertVisible: BehaviorSubject<boolean>;
|
|
1733
1733
|
alertMessage: BehaviorSubject<string>;
|
|
1734
|
-
alertType: BehaviorSubject<"
|
|
1735
|
-
alertPosition: BehaviorSubject<"
|
|
1734
|
+
alertType: BehaviorSubject<"danger" | "success" | "info" | "warning">;
|
|
1735
|
+
alertPosition: BehaviorSubject<"center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left">;
|
|
1736
1736
|
alertDuration: BehaviorSubject<number>;
|
|
1737
1737
|
progressTimerVisible: BehaviorSubject<boolean>;
|
|
1738
1738
|
progressTimerValue: BehaviorSubject<number>;
|
|
@@ -1765,7 +1765,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
1765
1765
|
recordingVideoOptions: BehaviorSubject<string>;
|
|
1766
1766
|
recordingVideoType: BehaviorSubject<string>;
|
|
1767
1767
|
recordingVideoOptimized: BehaviorSubject<boolean>;
|
|
1768
|
-
recordingDisplayType: BehaviorSubject<"video" | "
|
|
1768
|
+
recordingDisplayType: BehaviorSubject<"video" | "media" | "all">;
|
|
1769
1769
|
recordingAddHLS: BehaviorSubject<boolean>;
|
|
1770
1770
|
recordingNameTags: BehaviorSubject<boolean>;
|
|
1771
1771
|
recordingBackgroundColor: BehaviorSubject<string>;
|
|
@@ -2061,7 +2061,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
2061
2061
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
2062
2062
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
2063
2063
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
2064
|
-
checkOrientation: () => "
|
|
2064
|
+
checkOrientation: () => "portrait" | "landscape";
|
|
2065
2065
|
showAlert: ({ message, type, duration, position, }: {
|
|
2066
2066
|
message: string;
|
|
2067
2067
|
type: "success" | "danger" | "info" | "warning";
|
|
@@ -2140,15 +2140,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
2140
2140
|
landScaped: boolean;
|
|
2141
2141
|
lock_screen: boolean;
|
|
2142
2142
|
screenId: string;
|
|
2143
|
-
allVideoStreams: (
|
|
2144
|
-
newLimitedStreams: (
|
|
2143
|
+
allVideoStreams: (Stream | Participant)[];
|
|
2144
|
+
newLimitedStreams: (Stream | Participant)[];
|
|
2145
2145
|
newLimitedStreamsIDs: string[];
|
|
2146
2146
|
activeSounds: string[];
|
|
2147
2147
|
screenShareIDStream: string;
|
|
2148
2148
|
screenShareNameStream: string;
|
|
2149
2149
|
adminIDStream: string;
|
|
2150
2150
|
adminNameStream: string;
|
|
2151
|
-
youYouStream: (
|
|
2151
|
+
youYouStream: (Stream | Participant)[];
|
|
2152
2152
|
youYouStreamIDs: string[];
|
|
2153
2153
|
localStream: MediaStream;
|
|
2154
2154
|
recordStarted: boolean;
|
|
@@ -2190,15 +2190,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
2190
2190
|
screenAlreadyOn: boolean;
|
|
2191
2191
|
chatAlreadyOn: boolean;
|
|
2192
2192
|
redirectURL: string;
|
|
2193
|
-
oldAllStreams: (
|
|
2193
|
+
oldAllStreams: (Stream | Participant)[];
|
|
2194
2194
|
adminVidID: string;
|
|
2195
2195
|
streamNames: Stream[];
|
|
2196
2196
|
non_alVideoStreams: Participant[];
|
|
2197
2197
|
sortAudioLoudness: boolean;
|
|
2198
2198
|
audioDecibels: AudioDecibels[];
|
|
2199
|
-
mixed_alVideoStreams: (
|
|
2199
|
+
mixed_alVideoStreams: (Stream | Participant)[];
|
|
2200
2200
|
non_alVideoStreams_muted: Participant[];
|
|
2201
|
-
paginatedStreams: (
|
|
2201
|
+
paginatedStreams: (Stream | Participant)[][];
|
|
2202
2202
|
localStreamAudio: MediaStream;
|
|
2203
2203
|
defAudioID: string;
|
|
2204
2204
|
userDefaultAudioInputDevice: string;
|
|
@@ -2226,8 +2226,8 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
2226
2226
|
prevDoPaginate: boolean;
|
|
2227
2227
|
doPaginate: boolean;
|
|
2228
2228
|
shareEnded: boolean;
|
|
2229
|
-
lStreams: (
|
|
2230
|
-
chatRefStreams: (
|
|
2229
|
+
lStreams: (Stream | Participant)[];
|
|
2230
|
+
chatRefStreams: (Stream | Participant)[];
|
|
2231
2231
|
controlHeight: number;
|
|
2232
2232
|
isWideScreen: boolean;
|
|
2233
2233
|
isMediumScreen: boolean;
|
|
@@ -2239,11 +2239,11 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
2239
2239
|
altGridRows: number;
|
|
2240
2240
|
altGridCols: number;
|
|
2241
2241
|
numberPages: number;
|
|
2242
|
-
currentStreams: (
|
|
2242
|
+
currentStreams: (Stream | Participant)[];
|
|
2243
2243
|
showMiniView: boolean;
|
|
2244
2244
|
nStream: MediaStream;
|
|
2245
2245
|
defer_receive: boolean;
|
|
2246
|
-
allAudioStreams: (
|
|
2246
|
+
allAudioStreams: (Stream | Participant)[];
|
|
2247
2247
|
screenProducer: Producer;
|
|
2248
2248
|
remoteScreenStream: Stream[];
|
|
2249
2249
|
gotAllVids: boolean;
|
|
@@ -2309,8 +2309,8 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
2309
2309
|
totalReqWait: number;
|
|
2310
2310
|
alertVisible: boolean;
|
|
2311
2311
|
alertMessage: string;
|
|
2312
|
-
alertType: "
|
|
2313
|
-
alertPosition: "
|
|
2312
|
+
alertType: "danger" | "success" | "info" | "warning";
|
|
2313
|
+
alertPosition: "center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
2314
2314
|
alertDuration: number;
|
|
2315
2315
|
progressTimerVisible: boolean;
|
|
2316
2316
|
progressTimerValue: number;
|
|
@@ -2333,7 +2333,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
|
|
|
2333
2333
|
recordingVideoOptions: string;
|
|
2334
2334
|
recordingVideoType: string;
|
|
2335
2335
|
recordingVideoOptimized: boolean;
|
|
2336
|
-
recordingDisplayType: "video" | "
|
|
2336
|
+
recordingDisplayType: "video" | "media" | "all";
|
|
2337
2337
|
recordingAddHLS: boolean;
|
|
2338
2338
|
recordingAddText: boolean;
|
|
2339
2339
|
recordingCustomText: string;
|
|
@@ -660,15 +660,15 @@ export declare class MediasfuWebinar implements OnInit, OnDestroy {
|
|
|
660
660
|
landScaped: BehaviorSubject<boolean>;
|
|
661
661
|
lock_screen: BehaviorSubject<boolean>;
|
|
662
662
|
screenId: BehaviorSubject<string>;
|
|
663
|
-
allVideoStreams: BehaviorSubject<(
|
|
664
|
-
newLimitedStreams: BehaviorSubject<(
|
|
663
|
+
allVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
664
|
+
newLimitedStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
665
665
|
newLimitedStreamsIDs: BehaviorSubject<string[]>;
|
|
666
666
|
activeSounds: BehaviorSubject<string[]>;
|
|
667
667
|
screenShareIDStream: BehaviorSubject<string>;
|
|
668
668
|
screenShareNameStream: BehaviorSubject<string>;
|
|
669
669
|
adminIDStream: BehaviorSubject<string>;
|
|
670
670
|
adminNameStream: BehaviorSubject<string>;
|
|
671
|
-
youYouStream: BehaviorSubject<(
|
|
671
|
+
youYouStream: BehaviorSubject<(Stream | Participant)[]>;
|
|
672
672
|
youYouStreamIDs: BehaviorSubject<string[]>;
|
|
673
673
|
localStream: BehaviorSubject<MediaStream>;
|
|
674
674
|
recordStarted: BehaviorSubject<boolean>;
|
|
@@ -710,15 +710,15 @@ export declare class MediasfuWebinar implements OnInit, OnDestroy {
|
|
|
710
710
|
screenAlreadyOn: BehaviorSubject<boolean>;
|
|
711
711
|
chatAlreadyOn: BehaviorSubject<boolean>;
|
|
712
712
|
redirectURL: BehaviorSubject<string>;
|
|
713
|
-
oldAllStreams: BehaviorSubject<(
|
|
713
|
+
oldAllStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
714
714
|
adminVidID: BehaviorSubject<string>;
|
|
715
715
|
streamNames: BehaviorSubject<Stream[]>;
|
|
716
716
|
non_alVideoStreams: BehaviorSubject<Participant[]>;
|
|
717
717
|
sortAudioLoudness: BehaviorSubject<boolean>;
|
|
718
718
|
audioDecibels: BehaviorSubject<AudioDecibels[]>;
|
|
719
|
-
mixed_alVideoStreams: BehaviorSubject<(
|
|
719
|
+
mixed_alVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
720
720
|
non_alVideoStreams_muted: BehaviorSubject<Participant[]>;
|
|
721
|
-
paginatedStreams: BehaviorSubject<(
|
|
721
|
+
paginatedStreams: BehaviorSubject<(Stream | Participant)[][]>;
|
|
722
722
|
localStreamAudio: BehaviorSubject<MediaStream>;
|
|
723
723
|
defAudioID: BehaviorSubject<string>;
|
|
724
724
|
userDefaultAudioInputDevice: BehaviorSubject<string>;
|
|
@@ -746,8 +746,8 @@ export declare class MediasfuWebinar implements OnInit, OnDestroy {
|
|
|
746
746
|
prevDoPaginate: BehaviorSubject<boolean>;
|
|
747
747
|
doPaginate: BehaviorSubject<boolean>;
|
|
748
748
|
shareEnded: BehaviorSubject<boolean>;
|
|
749
|
-
lStreams: BehaviorSubject<(
|
|
750
|
-
chatRefStreams: BehaviorSubject<(
|
|
749
|
+
lStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
750
|
+
chatRefStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
751
751
|
controlHeight: BehaviorSubject<number>;
|
|
752
752
|
isWideScreen: BehaviorSubject<boolean>;
|
|
753
753
|
isMediumScreen: BehaviorSubject<boolean>;
|
|
@@ -759,11 +759,11 @@ export declare class MediasfuWebinar implements OnInit, OnDestroy {
|
|
|
759
759
|
altGridRows: BehaviorSubject<number>;
|
|
760
760
|
altGridCols: BehaviorSubject<number>;
|
|
761
761
|
numberPages: BehaviorSubject<number>;
|
|
762
|
-
currentStreams: BehaviorSubject<(
|
|
762
|
+
currentStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
763
763
|
showMiniView: BehaviorSubject<boolean>;
|
|
764
764
|
nStream: BehaviorSubject<MediaStream>;
|
|
765
765
|
defer_receive: BehaviorSubject<boolean>;
|
|
766
|
-
allAudioStreams: BehaviorSubject<(
|
|
766
|
+
allAudioStreams: BehaviorSubject<(Stream | Participant)[]>;
|
|
767
767
|
remoteScreenStream: BehaviorSubject<Stream[]>;
|
|
768
768
|
screenProducer: BehaviorSubject<Producer>;
|
|
769
769
|
localScreenProducer: BehaviorSubject<Producer>;
|
|
@@ -1003,8 +1003,8 @@ export declare class MediasfuWebinar implements OnInit, OnDestroy {
|
|
|
1003
1003
|
totalReqWait: BehaviorSubject<number>;
|
|
1004
1004
|
alertVisible: BehaviorSubject<boolean>;
|
|
1005
1005
|
alertMessage: BehaviorSubject<string>;
|
|
1006
|
-
alertType: BehaviorSubject<"
|
|
1007
|
-
alertPosition: BehaviorSubject<"
|
|
1006
|
+
alertType: BehaviorSubject<"danger" | "success" | "info" | "warning">;
|
|
1007
|
+
alertPosition: BehaviorSubject<"center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left">;
|
|
1008
1008
|
alertDuration: BehaviorSubject<number>;
|
|
1009
1009
|
progressTimerVisible: BehaviorSubject<boolean>;
|
|
1010
1010
|
progressTimerValue: BehaviorSubject<number>;
|
|
@@ -1031,7 +1031,7 @@ export declare class MediasfuWebinar implements OnInit, OnDestroy {
|
|
|
1031
1031
|
recordingVideoOptions: BehaviorSubject<string>;
|
|
1032
1032
|
recordingVideoType: BehaviorSubject<string>;
|
|
1033
1033
|
recordingVideoOptimized: BehaviorSubject<boolean>;
|
|
1034
|
-
recordingDisplayType: BehaviorSubject<"video" | "
|
|
1034
|
+
recordingDisplayType: BehaviorSubject<"video" | "media" | "all">;
|
|
1035
1035
|
recordingAddHLS: BehaviorSubject<boolean>;
|
|
1036
1036
|
recordingNameTags: BehaviorSubject<boolean>;
|
|
1037
1037
|
recordingBackgroundColor: BehaviorSubject<string>;
|
|
@@ -1260,7 +1260,7 @@ export declare class MediasfuWebinar implements OnInit, OnDestroy {
|
|
|
1260
1260
|
updateAnnotateScreenStream: (value: boolean) => void;
|
|
1261
1261
|
updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
|
|
1262
1262
|
updateIsScreenboardModalVisible: (value: boolean) => void;
|
|
1263
|
-
checkOrientation: () => "
|
|
1263
|
+
checkOrientation: () => "portrait" | "landscape";
|
|
1264
1264
|
showAlert: ({ message, type, duration, position, }: {
|
|
1265
1265
|
message: string;
|
|
1266
1266
|
type: "success" | "danger" | "info" | "warning";
|
|
@@ -1339,15 +1339,15 @@ export declare class MediasfuWebinar implements OnInit, OnDestroy {
|
|
|
1339
1339
|
landScaped: boolean;
|
|
1340
1340
|
lock_screen: boolean;
|
|
1341
1341
|
screenId: string;
|
|
1342
|
-
allVideoStreams: (
|
|
1343
|
-
newLimitedStreams: (
|
|
1342
|
+
allVideoStreams: (Stream | Participant)[];
|
|
1343
|
+
newLimitedStreams: (Stream | Participant)[];
|
|
1344
1344
|
newLimitedStreamsIDs: string[];
|
|
1345
1345
|
activeSounds: string[];
|
|
1346
1346
|
screenShareIDStream: string;
|
|
1347
1347
|
screenShareNameStream: string;
|
|
1348
1348
|
adminIDStream: string;
|
|
1349
1349
|
adminNameStream: string;
|
|
1350
|
-
youYouStream: (
|
|
1350
|
+
youYouStream: (Stream | Participant)[];
|
|
1351
1351
|
youYouStreamIDs: string[];
|
|
1352
1352
|
localStream: MediaStream;
|
|
1353
1353
|
recordStarted: boolean;
|
|
@@ -1389,15 +1389,15 @@ export declare class MediasfuWebinar implements OnInit, OnDestroy {
|
|
|
1389
1389
|
screenAlreadyOn: boolean;
|
|
1390
1390
|
chatAlreadyOn: boolean;
|
|
1391
1391
|
redirectURL: string;
|
|
1392
|
-
oldAllStreams: (
|
|
1392
|
+
oldAllStreams: (Stream | Participant)[];
|
|
1393
1393
|
adminVidID: string;
|
|
1394
1394
|
streamNames: Stream[];
|
|
1395
1395
|
non_alVideoStreams: Participant[];
|
|
1396
1396
|
sortAudioLoudness: boolean;
|
|
1397
1397
|
audioDecibels: AudioDecibels[];
|
|
1398
|
-
mixed_alVideoStreams: (
|
|
1398
|
+
mixed_alVideoStreams: (Stream | Participant)[];
|
|
1399
1399
|
non_alVideoStreams_muted: Participant[];
|
|
1400
|
-
paginatedStreams: (
|
|
1400
|
+
paginatedStreams: (Stream | Participant)[][];
|
|
1401
1401
|
localStreamAudio: MediaStream;
|
|
1402
1402
|
defAudioID: string;
|
|
1403
1403
|
userDefaultAudioInputDevice: string;
|
|
@@ -1425,8 +1425,8 @@ export declare class MediasfuWebinar implements OnInit, OnDestroy {
|
|
|
1425
1425
|
prevDoPaginate: boolean;
|
|
1426
1426
|
doPaginate: boolean;
|
|
1427
1427
|
shareEnded: boolean;
|
|
1428
|
-
lStreams: (
|
|
1429
|
-
chatRefStreams: (
|
|
1428
|
+
lStreams: (Stream | Participant)[];
|
|
1429
|
+
chatRefStreams: (Stream | Participant)[];
|
|
1430
1430
|
controlHeight: number;
|
|
1431
1431
|
isWideScreen: boolean;
|
|
1432
1432
|
isMediumScreen: boolean;
|
|
@@ -1438,11 +1438,11 @@ export declare class MediasfuWebinar implements OnInit, OnDestroy {
|
|
|
1438
1438
|
altGridRows: number;
|
|
1439
1439
|
altGridCols: number;
|
|
1440
1440
|
numberPages: number;
|
|
1441
|
-
currentStreams: (
|
|
1441
|
+
currentStreams: (Stream | Participant)[];
|
|
1442
1442
|
showMiniView: boolean;
|
|
1443
1443
|
nStream: MediaStream;
|
|
1444
1444
|
defer_receive: boolean;
|
|
1445
|
-
allAudioStreams: (
|
|
1445
|
+
allAudioStreams: (Stream | Participant)[];
|
|
1446
1446
|
screenProducer: Producer;
|
|
1447
1447
|
remoteScreenStream: Stream[];
|
|
1448
1448
|
gotAllVids: boolean;
|
|
@@ -1482,8 +1482,8 @@ export declare class MediasfuWebinar implements OnInit, OnDestroy {
|
|
|
1482
1482
|
totalReqWait: number;
|
|
1483
1483
|
alertVisible: boolean;
|
|
1484
1484
|
alertMessage: string;
|
|
1485
|
-
alertType: "
|
|
1486
|
-
alertPosition: "
|
|
1485
|
+
alertType: "danger" | "success" | "info" | "warning";
|
|
1486
|
+
alertPosition: "center" | "bottom" | "top" | "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
1487
1487
|
alertDuration: number;
|
|
1488
1488
|
progressTimerVisible: boolean;
|
|
1489
1489
|
progressTimerValue: number;
|
|
@@ -1505,7 +1505,7 @@ export declare class MediasfuWebinar implements OnInit, OnDestroy {
|
|
|
1505
1505
|
recordingVideoOptions: string;
|
|
1506
1506
|
recordingVideoType: string;
|
|
1507
1507
|
recordingVideoOptimized: boolean;
|
|
1508
|
-
recordingDisplayType: "video" | "
|
|
1508
|
+
recordingDisplayType: "video" | "media" | "all";
|
|
1509
1509
|
recordingAddHLS: boolean;
|
|
1510
1510
|
recordingAddText: boolean;
|
|
1511
1511
|
recordingCustomText: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mediasfu-angular",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.5",
|
|
4
4
|
"author": "MediaSFU",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "mediasfu-angular – Angular 17/18/19 WebRTC SDK for video conferencing, webinars, broadcasts, live streaming, chat, recording, whiteboard, and AI agents. Prebuilt rooms and fully custom UIs.",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"zone.js": "^0.15.1"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"mediasfu-shared": "^1.0.
|
|
40
|
+
"mediasfu-shared": "^1.0.6",
|
|
41
41
|
"tslib": "^2.8.1"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|