@100mslive/roomkit-react 0.1.6-alpha.0 → 0.1.6-alpha.2
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/{HLSView-PY2FKWX3.js → HLSView-QMU5JK7U.js} +208 -118
- package/dist/HLSView-QMU5JK7U.js.map +7 -0
- package/dist/Prebuilt/AppContext.d.ts +1 -1
- package/dist/Prebuilt/components/Chat/ChatFooter.d.ts +7 -0
- package/dist/Prebuilt/components/Connection/ConnectionIndicator.d.ts +6 -0
- package/dist/Prebuilt/components/Connection/TileConnection.d.ts +10 -0
- package/dist/Prebuilt/components/Footer/ChatToggle.d.ts +2 -0
- package/dist/Prebuilt/components/Footer/RoleAccordion.d.ts +14 -0
- package/dist/Prebuilt/components/Footer/RoleOptions.d.ts +6 -0
- package/dist/Prebuilt/components/Header/StreamActions.d.ts +11 -0
- package/dist/Prebuilt/components/Leave/DesktopLeaveRoom.d.ts +4 -3
- package/dist/Prebuilt/components/Leave/EndSessionContent.d.ts +4 -3
- package/dist/Prebuilt/components/Leave/LeaveCard.d.ts +1 -2
- package/dist/Prebuilt/components/Leave/LeaveSessionContent.d.ts +3 -1
- package/dist/Prebuilt/components/Leave/MwebLeaveRoom.d.ts +4 -3
- package/dist/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.d.ts +6 -0
- package/dist/Prebuilt/components/Preview/PreviewContainer.d.ts +3 -0
- package/dist/Prebuilt/components/Preview/PreviewJoin.d.ts +16 -0
- package/dist/Prebuilt/components/RoleChangeRequestModal.d.ts +2 -0
- package/dist/Prebuilt/components/SecondaryTiles.d.ts +1 -1
- package/dist/Prebuilt/components/SidePaneTabs.d.ts +7 -0
- package/dist/Prebuilt/components/VideoLayouts/EqualProminence.d.ts +1 -1
- package/dist/Prebuilt/components/VideoLayouts/Grid.d.ts +1 -0
- package/dist/Prebuilt/components/VideoLayouts/GridLayout.d.ts +5 -3
- package/dist/Prebuilt/components/VideoLayouts/ProminenceLayout.d.ts +6 -3
- package/dist/Prebuilt/components/VideoLayouts/RoleProminence.d.ts +1 -1
- package/dist/Prebuilt/components/VideoLayouts/ScreenshareLayout.d.ts +1 -1
- package/dist/Prebuilt/components/VideoLayouts/interface.d.ts +1 -0
- package/dist/Prebuilt/components/hooks/useAutoStartStreaming.d.ts +1 -0
- package/dist/Prebuilt/components/hooks/useRedirectToLeave.d.ts +3 -0
- package/dist/Prebuilt/components/hooks/useTileLayout.d.ts +2 -1
- package/dist/Prebuilt/components/hooks/useVideoTileLayout.d.ts +2 -0
- package/dist/Prebuilt/layouts/SidePane.d.ts +4 -1
- package/dist/Prebuilt/layouts/VideoStreamingSection.d.ts +2 -1
- package/dist/{VirtualBackground-AYDHYLIZ.js → VirtualBackground-37FXUPYO.js} +6 -6
- package/dist/VirtualBackground-37FXUPYO.js.map +7 -0
- package/dist/{chunk-GQD2AGWW.js → chunk-KBVIZGYW.js} +12 -2
- package/dist/{chunk-GQD2AGWW.js.map → chunk-KBVIZGYW.js.map} +2 -2
- package/dist/{chunk-RXTHJUMZ.js → chunk-WVGGQZK4.js} +986 -436
- package/dist/chunk-WVGGQZK4.js.map +7 -0
- package/dist/{chunk-E2M2ZSOL.js → chunk-ZKE2N5LH.js} +2 -2
- package/dist/{conference-V2XZGTKU.js → conference-FJJQ4TXX.js} +1136 -1301
- package/dist/conference-FJJQ4TXX.js.map +7 -0
- package/dist/index.cjs.js +3565 -3092
- package/dist/index.cjs.js.map +4 -4
- package/dist/index.js +2 -2
- package/dist/meta.cjs.json +773 -525
- package/dist/meta.esbuild.json +833 -579
- package/package.json +8 -7
- package/src/Prebuilt/App.tsx +10 -21
- package/src/Prebuilt/AppContext.tsx +1 -1
- package/src/Prebuilt/IconButton.jsx +10 -0
- package/src/Prebuilt/common/PeersSorter.ts +1 -1
- package/src/Prebuilt/common/constants.js +1 -2
- package/src/Prebuilt/common/utils.js +1 -1
- package/src/Prebuilt/components/AppData/AppData.jsx +8 -2
- package/src/Prebuilt/components/AppData/useUISettings.js +6 -6
- package/src/Prebuilt/components/AudioVideoToggle.jsx +8 -6
- package/src/Prebuilt/components/Chat/Chat.jsx +24 -11
- package/src/Prebuilt/components/Chat/ChatBody.jsx +20 -21
- package/src/Prebuilt/components/Chat/{ChatFooter.jsx → ChatFooter.tsx} +38 -13
- package/src/Prebuilt/components/Chat/useEmojiPickerStyles.js +5 -4
- package/src/Prebuilt/components/Connection/{ConnectionIndicator.jsx → ConnectionIndicator.tsx} +12 -4
- package/src/Prebuilt/components/Connection/{TileConnection.jsx → TileConnection.tsx} +20 -6
- package/src/Prebuilt/components/EmojiReaction.jsx +2 -6
- package/src/Prebuilt/components/Footer/{ChatToggle.jsx → ChatToggle.tsx} +4 -1
- package/src/Prebuilt/components/Footer/Footer.tsx +30 -5
- package/src/Prebuilt/components/Footer/ParticipantList.jsx +15 -49
- package/src/Prebuilt/components/Footer/{RoleAccordion.jsx → RoleAccordion.tsx} +33 -17
- package/src/Prebuilt/components/Footer/RoleOptions.tsx +155 -0
- package/src/Prebuilt/components/FullPageProgress.jsx +3 -3
- package/src/Prebuilt/components/HMSVideo/Controls.jsx +1 -0
- package/src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx +39 -17
- package/src/Prebuilt/components/HMSVideo/HMSVideo.jsx +2 -2
- package/src/Prebuilt/components/HMSVideo/VideoProgress.jsx +5 -6
- package/src/Prebuilt/components/HMSVideo/VolumeControl.jsx +1 -1
- package/src/Prebuilt/components/Header/HeaderComponents.jsx +8 -1
- package/src/Prebuilt/components/Header/{StreamActions.jsx → StreamActions.tsx} +23 -9
- package/src/Prebuilt/components/Header/common.jsx +5 -2
- package/src/Prebuilt/components/IconButtonWithOptions/IconButtonWithOptions.jsx +6 -1
- package/src/Prebuilt/components/InsetTile.tsx +15 -8
- package/src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx +21 -11
- package/src/Prebuilt/components/Leave/EndSessionContent.tsx +2 -5
- package/src/Prebuilt/components/Leave/LeaveCard.tsx +1 -3
- package/src/Prebuilt/components/Leave/LeaveRoom.tsx +28 -25
- package/src/Prebuilt/components/Leave/LeaveSessionContent.tsx +8 -2
- package/src/Prebuilt/components/Leave/MwebLeaveRoom.tsx +8 -8
- package/src/Prebuilt/components/MoreSettings/ChangeNameContent.jsx +4 -0
- package/src/Prebuilt/components/MoreSettings/MoreSettings.tsx +1 -1
- package/src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx +9 -23
- package/src/Prebuilt/components/MoreSettings/SplitComponents/{MwebOptions.jsx → MwebOptions.tsx} +89 -28
- package/src/Prebuilt/components/Notifications/Notifications.jsx +44 -28
- package/src/Prebuilt/components/Notifications/ReconnectNotifications.jsx +5 -11
- package/src/Prebuilt/components/Pagination.tsx +14 -12
- package/src/Prebuilt/components/Preview/{PreviewContainer.jsx → PreviewContainer.tsx} +11 -2
- package/src/Prebuilt/components/Preview/PreviewForm.tsx +6 -8
- package/src/Prebuilt/components/Preview/{PreviewJoin.jsx → PreviewJoin.tsx} +44 -21
- package/src/Prebuilt/components/{RoleChangeRequestModal.jsx → RoleChangeRequestModal.tsx} +36 -17
- package/src/Prebuilt/components/ScreenshareTile.jsx +6 -7
- package/src/Prebuilt/components/SecondaryTiles.tsx +12 -10
- package/src/Prebuilt/components/SidePaneTabs.tsx +120 -0
- package/src/Prebuilt/components/TileMenu/TileMenu.jsx +1 -1
- package/src/Prebuilt/components/TileMenu/TileMenuContent.jsx +14 -10
- package/src/Prebuilt/components/Toast/ToastConfig.jsx +5 -4
- package/src/Prebuilt/components/VideoLayouts/EqualProminence.tsx +13 -10
- package/src/Prebuilt/components/VideoLayouts/Grid.tsx +36 -34
- package/src/Prebuilt/components/VideoLayouts/GridLayout.tsx +33 -15
- package/src/Prebuilt/components/VideoLayouts/ProminenceLayout.tsx +45 -31
- package/src/Prebuilt/components/VideoLayouts/RoleProminence.tsx +12 -9
- package/src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx +25 -9
- package/src/Prebuilt/components/VideoLayouts/interface.ts +1 -0
- package/src/Prebuilt/components/VideoTile.jsx +45 -53
- package/src/Prebuilt/components/conference.jsx +71 -74
- package/src/Prebuilt/components/hooks/useAutoStartStreaming.tsx +57 -0
- package/src/Prebuilt/components/hooks/useMetadata.jsx +19 -28
- package/src/Prebuilt/components/hooks/useRedirectToLeave.tsx +34 -0
- package/src/Prebuilt/components/hooks/useRoleProminencePeers.tsx +1 -1
- package/src/Prebuilt/components/hooks/useTileLayout.tsx +24 -18
- package/src/Prebuilt/components/hooks/useVideoTileLayout.ts +4 -0
- package/src/Prebuilt/layouts/EmbedView.jsx +1 -11
- package/src/Prebuilt/layouts/HLSView.jsx +152 -82
- package/src/Prebuilt/layouts/SidePane.tsx +25 -11
- package/src/Prebuilt/layouts/VideoStreamingSection.tsx +11 -47
- package/src/Prebuilt/plugins/FlyingEmoji.jsx +14 -2
- package/src/Prebuilt/plugins/VirtualBackground/VirtualBackground.jsx +3 -3
- package/src/Prebuilt/provider/roomLayoutProvider/hooks/useFetchRoomLayout.ts +2 -2
- package/src/Prebuilt/services/FeatureFlags.jsx +0 -1
- package/src/VideoTile/StyledVideoTile.tsx +1 -0
- package/dist/HLSView-PY2FKWX3.js.map +0 -7
- package/dist/VirtualBackground-AYDHYLIZ.js.map +0 -7
- package/dist/chunk-RXTHJUMZ.js.map +0 -7
- package/dist/conference-V2XZGTKU.js.map +0 -7
- package/src/Prebuilt/components/AudioLevel/BeamSpeakerLabelsLogging.jsx +0 -16
- package/src/Prebuilt/components/Chat/ChatParticipantHeader.jsx +0 -73
- package/src/Prebuilt/components/VideoList.jsx +0 -73
- /package/dist/{chunk-E2M2ZSOL.js.map → chunk-ZKE2N5LH.js.map} +0 -0
package/dist/meta.esbuild.json
CHANGED
|
@@ -842,7 +842,7 @@
|
|
|
842
842
|
"format": "esm"
|
|
843
843
|
},
|
|
844
844
|
"src/VideoTile/StyledVideoTile.tsx": {
|
|
845
|
-
"bytes":
|
|
845
|
+
"bytes": 3000,
|
|
846
846
|
"imports": [
|
|
847
847
|
{
|
|
848
848
|
"path": "src/Layout/index.tsx",
|
|
@@ -1828,7 +1828,7 @@
|
|
|
1828
1828
|
"format": "esm"
|
|
1829
1829
|
},
|
|
1830
1830
|
"src/Prebuilt/common/constants.js": {
|
|
1831
|
-
"bytes":
|
|
1831
|
+
"bytes": 3307,
|
|
1832
1832
|
"imports": [
|
|
1833
1833
|
{
|
|
1834
1834
|
"path": "@100mslive/react-sdk",
|
|
@@ -1870,7 +1870,7 @@
|
|
|
1870
1870
|
"format": "esm"
|
|
1871
1871
|
},
|
|
1872
1872
|
"src/Prebuilt/components/AppData/useUISettings.js": {
|
|
1873
|
-
"bytes":
|
|
1873
|
+
"bytes": 4892,
|
|
1874
1874
|
"imports": [
|
|
1875
1875
|
{
|
|
1876
1876
|
"path": "react",
|
|
@@ -1906,7 +1906,7 @@
|
|
|
1906
1906
|
"format": "esm"
|
|
1907
1907
|
},
|
|
1908
1908
|
"src/Prebuilt/components/AppData/AppData.jsx": {
|
|
1909
|
-
"bytes":
|
|
1909
|
+
"bytes": 5962,
|
|
1910
1910
|
"imports": [
|
|
1911
1911
|
{
|
|
1912
1912
|
"path": "react",
|
|
@@ -1956,65 +1956,8 @@
|
|
|
1956
1956
|
],
|
|
1957
1957
|
"format": "esm"
|
|
1958
1958
|
},
|
|
1959
|
-
"src/Prebuilt/services/FeatureFlags.jsx": {
|
|
1960
|
-
"bytes": 1442,
|
|
1961
|
-
"imports": [
|
|
1962
|
-
{
|
|
1963
|
-
"path": "react",
|
|
1964
|
-
"kind": "import-statement",
|
|
1965
|
-
"external": true
|
|
1966
|
-
},
|
|
1967
|
-
{
|
|
1968
|
-
"path": "@100mslive/react-sdk",
|
|
1969
|
-
"kind": "import-statement",
|
|
1970
|
-
"external": true
|
|
1971
|
-
},
|
|
1972
|
-
{
|
|
1973
|
-
"path": "<define:process.env>",
|
|
1974
|
-
"kind": "import-statement",
|
|
1975
|
-
"external": true
|
|
1976
|
-
},
|
|
1977
|
-
{
|
|
1978
|
-
"path": "<runtime>",
|
|
1979
|
-
"kind": "import-statement",
|
|
1980
|
-
"external": true
|
|
1981
|
-
}
|
|
1982
|
-
],
|
|
1983
|
-
"format": "esm"
|
|
1984
|
-
},
|
|
1985
|
-
"src/Prebuilt/components/AudioLevel/BeamSpeakerLabelsLogging.jsx": {
|
|
1986
|
-
"bytes": 520,
|
|
1987
|
-
"imports": [
|
|
1988
|
-
{
|
|
1989
|
-
"path": "react",
|
|
1990
|
-
"kind": "import-statement",
|
|
1991
|
-
"external": true
|
|
1992
|
-
},
|
|
1993
|
-
{
|
|
1994
|
-
"path": "@100mslive/react-sdk",
|
|
1995
|
-
"kind": "import-statement",
|
|
1996
|
-
"external": true
|
|
1997
|
-
},
|
|
1998
|
-
{
|
|
1999
|
-
"path": "src/Prebuilt/components/AppData/useUISettings.js",
|
|
2000
|
-
"kind": "import-statement",
|
|
2001
|
-
"original": "../AppData/useUISettings"
|
|
2002
|
-
},
|
|
2003
|
-
{
|
|
2004
|
-
"path": "src/Prebuilt/services/FeatureFlags.jsx",
|
|
2005
|
-
"kind": "import-statement",
|
|
2006
|
-
"original": "../../services/FeatureFlags"
|
|
2007
|
-
},
|
|
2008
|
-
{
|
|
2009
|
-
"path": "<define:process.env>",
|
|
2010
|
-
"kind": "import-statement",
|
|
2011
|
-
"external": true
|
|
2012
|
-
}
|
|
2013
|
-
],
|
|
2014
|
-
"format": "esm"
|
|
2015
|
-
},
|
|
2016
1959
|
"src/Prebuilt/AppContext.tsx": {
|
|
2017
|
-
"bytes":
|
|
1960
|
+
"bytes": 708,
|
|
2018
1961
|
"imports": [
|
|
2019
1962
|
{
|
|
2020
1963
|
"path": "react",
|
|
@@ -2203,7 +2146,7 @@
|
|
|
2203
2146
|
"format": "esm"
|
|
2204
2147
|
},
|
|
2205
2148
|
"src/Prebuilt/components/FullPageProgress.jsx": {
|
|
2206
|
-
"bytes":
|
|
2149
|
+
"bytes": 524,
|
|
2207
2150
|
"imports": [
|
|
2208
2151
|
{
|
|
2209
2152
|
"path": "react",
|
|
@@ -2229,6 +2172,37 @@
|
|
|
2229
2172
|
"path": "<define:process.env>",
|
|
2230
2173
|
"kind": "import-statement",
|
|
2231
2174
|
"external": true
|
|
2175
|
+
},
|
|
2176
|
+
{
|
|
2177
|
+
"path": "<runtime>",
|
|
2178
|
+
"kind": "import-statement",
|
|
2179
|
+
"external": true
|
|
2180
|
+
}
|
|
2181
|
+
],
|
|
2182
|
+
"format": "esm"
|
|
2183
|
+
},
|
|
2184
|
+
"src/Prebuilt/services/FeatureFlags.jsx": {
|
|
2185
|
+
"bytes": 1342,
|
|
2186
|
+
"imports": [
|
|
2187
|
+
{
|
|
2188
|
+
"path": "react",
|
|
2189
|
+
"kind": "import-statement",
|
|
2190
|
+
"external": true
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
"path": "@100mslive/react-sdk",
|
|
2194
|
+
"kind": "import-statement",
|
|
2195
|
+
"external": true
|
|
2196
|
+
},
|
|
2197
|
+
{
|
|
2198
|
+
"path": "<define:process.env>",
|
|
2199
|
+
"kind": "import-statement",
|
|
2200
|
+
"external": true
|
|
2201
|
+
},
|
|
2202
|
+
{
|
|
2203
|
+
"path": "<runtime>",
|
|
2204
|
+
"kind": "import-statement",
|
|
2205
|
+
"external": true
|
|
2232
2206
|
}
|
|
2233
2207
|
],
|
|
2234
2208
|
"format": "esm"
|
|
@@ -2307,7 +2281,7 @@
|
|
|
2307
2281
|
"format": "esm"
|
|
2308
2282
|
},
|
|
2309
2283
|
"src/Prebuilt/provider/roomLayoutProvider/hooks/useFetchRoomLayout.ts": {
|
|
2310
|
-
"bytes":
|
|
2284
|
+
"bytes": 2489,
|
|
2311
2285
|
"imports": [
|
|
2312
2286
|
{
|
|
2313
2287
|
"path": "react",
|
|
@@ -2364,7 +2338,7 @@
|
|
|
2364
2338
|
"format": "esm"
|
|
2365
2339
|
},
|
|
2366
2340
|
"src/Prebuilt/components/Toast/ToastConfig.jsx": {
|
|
2367
|
-
"bytes":
|
|
2341
|
+
"bytes": 5100,
|
|
2368
2342
|
"imports": [
|
|
2369
2343
|
{
|
|
2370
2344
|
"path": "react",
|
|
@@ -2514,7 +2488,7 @@
|
|
|
2514
2488
|
"format": "esm"
|
|
2515
2489
|
},
|
|
2516
2490
|
"src/Prebuilt/common/utils.js": {
|
|
2517
|
-
"bytes":
|
|
2491
|
+
"bytes": 2951,
|
|
2518
2492
|
"imports": [
|
|
2519
2493
|
{
|
|
2520
2494
|
"path": "<define:process.env>",
|
|
@@ -2620,7 +2594,7 @@
|
|
|
2620
2594
|
"format": "esm"
|
|
2621
2595
|
},
|
|
2622
2596
|
"src/Prebuilt/components/Notifications/ReconnectNotifications.jsx": {
|
|
2623
|
-
"bytes":
|
|
2597
|
+
"bytes": 2122,
|
|
2624
2598
|
"imports": [
|
|
2625
2599
|
{
|
|
2626
2600
|
"path": "react",
|
|
@@ -2738,8 +2712,112 @@
|
|
|
2738
2712
|
],
|
|
2739
2713
|
"format": "esm"
|
|
2740
2714
|
},
|
|
2715
|
+
"src/Prebuilt/components/PIP/pipUtils.js": {
|
|
2716
|
+
"bytes": 6437,
|
|
2717
|
+
"imports": [
|
|
2718
|
+
{
|
|
2719
|
+
"path": "<define:process.env>",
|
|
2720
|
+
"kind": "import-statement",
|
|
2721
|
+
"external": true
|
|
2722
|
+
}
|
|
2723
|
+
],
|
|
2724
|
+
"format": "esm"
|
|
2725
|
+
},
|
|
2726
|
+
"src/Prebuilt/components/PIP/PIPManager.js": {
|
|
2727
|
+
"bytes": 10148,
|
|
2728
|
+
"imports": [
|
|
2729
|
+
{
|
|
2730
|
+
"path": "worker-timers",
|
|
2731
|
+
"kind": "import-statement",
|
|
2732
|
+
"external": true
|
|
2733
|
+
},
|
|
2734
|
+
{
|
|
2735
|
+
"path": "src/Prebuilt/components/PIP/pipUtils.js",
|
|
2736
|
+
"kind": "import-statement",
|
|
2737
|
+
"original": "./pipUtils"
|
|
2738
|
+
},
|
|
2739
|
+
{
|
|
2740
|
+
"path": "src/Prebuilt/common/constants.js",
|
|
2741
|
+
"kind": "import-statement",
|
|
2742
|
+
"original": "../../common/constants"
|
|
2743
|
+
},
|
|
2744
|
+
{
|
|
2745
|
+
"path": "<define:process.env>",
|
|
2746
|
+
"kind": "import-statement",
|
|
2747
|
+
"external": true
|
|
2748
|
+
},
|
|
2749
|
+
{
|
|
2750
|
+
"path": "<runtime>",
|
|
2751
|
+
"kind": "import-statement",
|
|
2752
|
+
"external": true
|
|
2753
|
+
}
|
|
2754
|
+
],
|
|
2755
|
+
"format": "esm"
|
|
2756
|
+
},
|
|
2757
|
+
"src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts": {
|
|
2758
|
+
"bytes": 1916,
|
|
2759
|
+
"imports": [
|
|
2760
|
+
{
|
|
2761
|
+
"path": "@100mslive/types-prebuilt",
|
|
2762
|
+
"kind": "import-statement",
|
|
2763
|
+
"external": true
|
|
2764
|
+
},
|
|
2765
|
+
{
|
|
2766
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/index.tsx",
|
|
2767
|
+
"kind": "import-statement",
|
|
2768
|
+
"original": ".."
|
|
2769
|
+
},
|
|
2770
|
+
{
|
|
2771
|
+
"path": "<define:process.env>",
|
|
2772
|
+
"kind": "import-statement",
|
|
2773
|
+
"external": true
|
|
2774
|
+
}
|
|
2775
|
+
],
|
|
2776
|
+
"format": "esm"
|
|
2777
|
+
},
|
|
2778
|
+
"src/Prebuilt/components/hooks/useRedirectToLeave.tsx": {
|
|
2779
|
+
"bytes": 1236,
|
|
2780
|
+
"imports": [
|
|
2781
|
+
{
|
|
2782
|
+
"path": "react",
|
|
2783
|
+
"kind": "import-statement",
|
|
2784
|
+
"external": true
|
|
2785
|
+
},
|
|
2786
|
+
{
|
|
2787
|
+
"path": "react-router-dom",
|
|
2788
|
+
"kind": "import-statement",
|
|
2789
|
+
"external": true
|
|
2790
|
+
},
|
|
2791
|
+
{
|
|
2792
|
+
"path": "src/Prebuilt/AppContext.tsx",
|
|
2793
|
+
"kind": "import-statement",
|
|
2794
|
+
"original": "../../AppContext"
|
|
2795
|
+
},
|
|
2796
|
+
{
|
|
2797
|
+
"path": "src/Prebuilt/components/PIP/PIPManager.js",
|
|
2798
|
+
"kind": "import-statement",
|
|
2799
|
+
"original": "../PIP/PIPManager"
|
|
2800
|
+
},
|
|
2801
|
+
{
|
|
2802
|
+
"path": "src/Prebuilt/components/Toast/ToastManager.js",
|
|
2803
|
+
"kind": "import-statement",
|
|
2804
|
+
"original": "../Toast/ToastManager"
|
|
2805
|
+
},
|
|
2806
|
+
{
|
|
2807
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
|
2808
|
+
"kind": "import-statement",
|
|
2809
|
+
"original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
|
2810
|
+
},
|
|
2811
|
+
{
|
|
2812
|
+
"path": "<define:process.env>",
|
|
2813
|
+
"kind": "import-statement",
|
|
2814
|
+
"external": true
|
|
2815
|
+
}
|
|
2816
|
+
],
|
|
2817
|
+
"format": "esm"
|
|
2818
|
+
},
|
|
2741
2819
|
"src/Prebuilt/components/Notifications/Notifications.jsx": {
|
|
2742
|
-
"bytes":
|
|
2820
|
+
"bytes": 6613,
|
|
2743
2821
|
"imports": [
|
|
2744
2822
|
{
|
|
2745
2823
|
"path": "react",
|
|
@@ -2821,11 +2899,21 @@
|
|
|
2821
2899
|
"kind": "import-statement",
|
|
2822
2900
|
"original": "../AppData/useUISettings"
|
|
2823
2901
|
},
|
|
2902
|
+
{
|
|
2903
|
+
"path": "src/Prebuilt/components/hooks/useRedirectToLeave.tsx",
|
|
2904
|
+
"kind": "import-statement",
|
|
2905
|
+
"original": "../hooks/useRedirectToLeave"
|
|
2906
|
+
},
|
|
2824
2907
|
{
|
|
2825
2908
|
"path": "src/Prebuilt/common/utils.js",
|
|
2826
2909
|
"kind": "import-statement",
|
|
2827
2910
|
"original": "../../common/utils"
|
|
2828
2911
|
},
|
|
2912
|
+
{
|
|
2913
|
+
"path": "src/Prebuilt/common/constants.js",
|
|
2914
|
+
"kind": "import-statement",
|
|
2915
|
+
"original": "../../common/constants"
|
|
2916
|
+
},
|
|
2829
2917
|
{
|
|
2830
2918
|
"path": "<define:process.env>",
|
|
2831
2919
|
"kind": "import-statement",
|
|
@@ -2851,7 +2939,7 @@
|
|
|
2851
2939
|
"format": "esm"
|
|
2852
2940
|
},
|
|
2853
2941
|
"src/Prebuilt/components/Header/HeaderComponents.jsx": {
|
|
2854
|
-
"bytes":
|
|
2942
|
+
"bytes": 1830,
|
|
2855
2943
|
"imports": [
|
|
2856
2944
|
{
|
|
2857
2945
|
"path": "react",
|
|
@@ -2959,7 +3047,7 @@
|
|
|
2959
3047
|
"format": "esm"
|
|
2960
3048
|
},
|
|
2961
3049
|
"src/Prebuilt/components/hooks/useMetadata.jsx": {
|
|
2962
|
-
"bytes":
|
|
3050
|
+
"bytes": 1458,
|
|
2963
3051
|
"imports": [
|
|
2964
3052
|
{
|
|
2965
3053
|
"path": "react",
|
|
@@ -3128,8 +3216,8 @@
|
|
|
3128
3216
|
],
|
|
3129
3217
|
"format": "esm"
|
|
3130
3218
|
},
|
|
3131
|
-
"src/Prebuilt/components/Header/StreamActions.
|
|
3132
|
-
"bytes":
|
|
3219
|
+
"src/Prebuilt/components/Header/StreamActions.tsx": {
|
|
3220
|
+
"bytes": 8339,
|
|
3133
3221
|
"imports": [
|
|
3134
3222
|
{
|
|
3135
3223
|
"path": "react",
|
|
@@ -3154,7 +3242,7 @@
|
|
|
3154
3242
|
{
|
|
3155
3243
|
"path": "src/index.ts",
|
|
3156
3244
|
"kind": "import-statement",
|
|
3157
|
-
"original": "
|
|
3245
|
+
"original": "../../.."
|
|
3158
3246
|
},
|
|
3159
3247
|
{
|
|
3160
3248
|
"path": "src/Sheet/index.ts",
|
|
@@ -3200,7 +3288,7 @@
|
|
|
3200
3288
|
"format": "esm"
|
|
3201
3289
|
},
|
|
3202
3290
|
"src/Prebuilt/IconButton.jsx": {
|
|
3203
|
-
"bytes":
|
|
3291
|
+
"bytes": 646,
|
|
3204
3292
|
"imports": [
|
|
3205
3293
|
{
|
|
3206
3294
|
"path": "src/IconButton/index.tsx",
|
|
@@ -3221,7 +3309,7 @@
|
|
|
3221
3309
|
"format": "esm"
|
|
3222
3310
|
},
|
|
3223
3311
|
"src/Prebuilt/components/Header/common.jsx": {
|
|
3224
|
-
"bytes":
|
|
3312
|
+
"bytes": 4902,
|
|
3225
3313
|
"imports": [
|
|
3226
3314
|
{
|
|
3227
3315
|
"path": "react",
|
|
@@ -3315,7 +3403,7 @@
|
|
|
3315
3403
|
"original": "./HeaderComponents"
|
|
3316
3404
|
},
|
|
3317
3405
|
{
|
|
3318
|
-
"path": "src/Prebuilt/components/Header/StreamActions.
|
|
3406
|
+
"path": "src/Prebuilt/components/Header/StreamActions.tsx",
|
|
3319
3407
|
"kind": "import-statement",
|
|
3320
3408
|
"original": "./StreamActions"
|
|
3321
3409
|
},
|
|
@@ -3348,27 +3436,6 @@
|
|
|
3348
3436
|
],
|
|
3349
3437
|
"format": "esm"
|
|
3350
3438
|
},
|
|
3351
|
-
"src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts": {
|
|
3352
|
-
"bytes": 1916,
|
|
3353
|
-
"imports": [
|
|
3354
|
-
{
|
|
3355
|
-
"path": "@100mslive/types-prebuilt",
|
|
3356
|
-
"kind": "import-statement",
|
|
3357
|
-
"external": true
|
|
3358
|
-
},
|
|
3359
|
-
{
|
|
3360
|
-
"path": "src/Prebuilt/provider/roomLayoutProvider/index.tsx",
|
|
3361
|
-
"kind": "import-statement",
|
|
3362
|
-
"original": ".."
|
|
3363
|
-
},
|
|
3364
|
-
{
|
|
3365
|
-
"path": "<define:process.env>",
|
|
3366
|
-
"kind": "import-statement",
|
|
3367
|
-
"external": true
|
|
3368
|
-
}
|
|
3369
|
-
],
|
|
3370
|
-
"format": "esm"
|
|
3371
|
-
},
|
|
3372
3439
|
"src/Prebuilt/components/PostLeave.jsx": {
|
|
3373
3440
|
"bytes": 2785,
|
|
3374
3441
|
"imports": [
|
|
@@ -3446,7 +3513,7 @@
|
|
|
3446
3513
|
"format": "esm"
|
|
3447
3514
|
},
|
|
3448
3515
|
"src/Prebuilt/components/IconButtonWithOptions/IconButtonWithOptions.jsx": {
|
|
3449
|
-
"bytes":
|
|
3516
|
+
"bytes": 3097,
|
|
3450
3517
|
"imports": [
|
|
3451
3518
|
{
|
|
3452
3519
|
"path": "react",
|
|
@@ -3492,7 +3559,7 @@
|
|
|
3492
3559
|
"format": "esm"
|
|
3493
3560
|
},
|
|
3494
3561
|
"src/Prebuilt/components/AudioVideoToggle.jsx": {
|
|
3495
|
-
"bytes":
|
|
3562
|
+
"bytes": 5611,
|
|
3496
3563
|
"imports": [
|
|
3497
3564
|
{
|
|
3498
3565
|
"path": "react",
|
|
@@ -3589,8 +3656,8 @@
|
|
|
3589
3656
|
],
|
|
3590
3657
|
"format": "esm"
|
|
3591
3658
|
},
|
|
3592
|
-
"src/Prebuilt/components/Connection/ConnectionIndicator.
|
|
3593
|
-
"bytes":
|
|
3659
|
+
"src/Prebuilt/components/Connection/ConnectionIndicator.tsx": {
|
|
3660
|
+
"bytes": 3560,
|
|
3594
3661
|
"imports": [
|
|
3595
3662
|
{
|
|
3596
3663
|
"path": "react",
|
|
@@ -3610,7 +3677,7 @@
|
|
|
3610
3677
|
{
|
|
3611
3678
|
"path": "src/index.ts",
|
|
3612
3679
|
"kind": "import-statement",
|
|
3613
|
-
"original": "
|
|
3680
|
+
"original": "../../.."
|
|
3614
3681
|
},
|
|
3615
3682
|
{
|
|
3616
3683
|
"path": "src/Prebuilt/components/Connection/connectionQualityUtils.js",
|
|
@@ -3625,8 +3692,8 @@
|
|
|
3625
3692
|
],
|
|
3626
3693
|
"format": "esm"
|
|
3627
3694
|
},
|
|
3628
|
-
"src/Prebuilt/components/Connection/TileConnection.
|
|
3629
|
-
"bytes":
|
|
3695
|
+
"src/Prebuilt/components/Connection/TileConnection.tsx": {
|
|
3696
|
+
"bytes": 1648,
|
|
3630
3697
|
"imports": [
|
|
3631
3698
|
{
|
|
3632
3699
|
"path": "react",
|
|
@@ -3641,10 +3708,10 @@
|
|
|
3641
3708
|
{
|
|
3642
3709
|
"path": "src/index.ts",
|
|
3643
3710
|
"kind": "import-statement",
|
|
3644
|
-
"original": "
|
|
3711
|
+
"original": "../../.."
|
|
3645
3712
|
},
|
|
3646
3713
|
{
|
|
3647
|
-
"path": "src/Prebuilt/components/Connection/ConnectionIndicator.
|
|
3714
|
+
"path": "src/Prebuilt/components/Connection/ConnectionIndicator.tsx",
|
|
3648
3715
|
"kind": "import-statement",
|
|
3649
3716
|
"original": "./ConnectionIndicator"
|
|
3650
3717
|
},
|
|
@@ -4000,7 +4067,7 @@
|
|
|
4000
4067
|
"format": "esm"
|
|
4001
4068
|
},
|
|
4002
4069
|
"src/Prebuilt/components/MoreSettings/ChangeNameContent.jsx": {
|
|
4003
|
-
"bytes":
|
|
4070
|
+
"bytes": 2933,
|
|
4004
4071
|
"imports": [
|
|
4005
4072
|
{
|
|
4006
4073
|
"path": "react",
|
|
@@ -4102,13 +4169,18 @@
|
|
|
4102
4169
|
"format": "esm"
|
|
4103
4170
|
},
|
|
4104
4171
|
"src/Prebuilt/components/TileMenu/TileMenuContent.jsx": {
|
|
4105
|
-
"bytes":
|
|
4172
|
+
"bytes": 9915,
|
|
4106
4173
|
"imports": [
|
|
4107
4174
|
{
|
|
4108
4175
|
"path": "react",
|
|
4109
4176
|
"kind": "import-statement",
|
|
4110
4177
|
"external": true
|
|
4111
4178
|
},
|
|
4179
|
+
{
|
|
4180
|
+
"path": "react-use",
|
|
4181
|
+
"kind": "import-statement",
|
|
4182
|
+
"external": true
|
|
4183
|
+
},
|
|
4112
4184
|
{
|
|
4113
4185
|
"path": "@100mslive/react-sdk",
|
|
4114
4186
|
"kind": "import-statement",
|
|
@@ -4134,6 +4206,11 @@
|
|
|
4134
4206
|
"kind": "import-statement",
|
|
4135
4207
|
"original": "../../../Text"
|
|
4136
4208
|
},
|
|
4209
|
+
{
|
|
4210
|
+
"path": "src/Theme/index.tsx",
|
|
4211
|
+
"kind": "import-statement",
|
|
4212
|
+
"original": "../../../Theme"
|
|
4213
|
+
},
|
|
4137
4214
|
{
|
|
4138
4215
|
"path": "src/TileMenu/index.tsx",
|
|
4139
4216
|
"kind": "import-statement",
|
|
@@ -4199,7 +4276,7 @@
|
|
|
4199
4276
|
"format": "esm"
|
|
4200
4277
|
},
|
|
4201
4278
|
"src/Prebuilt/components/TileMenu/TileMenu.jsx": {
|
|
4202
|
-
"bytes":
|
|
4279
|
+
"bytes": 4567,
|
|
4203
4280
|
"imports": [
|
|
4204
4281
|
{
|
|
4205
4282
|
"path": "react",
|
|
@@ -4291,18 +4368,13 @@
|
|
|
4291
4368
|
"format": "esm"
|
|
4292
4369
|
},
|
|
4293
4370
|
"src/Prebuilt/components/VideoTile.jsx": {
|
|
4294
|
-
"bytes":
|
|
4371
|
+
"bytes": 7648,
|
|
4295
4372
|
"imports": [
|
|
4296
4373
|
{
|
|
4297
4374
|
"path": "react",
|
|
4298
4375
|
"kind": "import-statement",
|
|
4299
4376
|
"external": true
|
|
4300
4377
|
},
|
|
4301
|
-
{
|
|
4302
|
-
"path": "react-use",
|
|
4303
|
-
"kind": "import-statement",
|
|
4304
|
-
"external": true
|
|
4305
|
-
},
|
|
4306
4378
|
{
|
|
4307
4379
|
"path": "@100mslive/react-sdk",
|
|
4308
4380
|
"kind": "import-statement",
|
|
@@ -4314,7 +4386,7 @@
|
|
|
4314
4386
|
"external": true
|
|
4315
4387
|
},
|
|
4316
4388
|
{
|
|
4317
|
-
"path": "src/Prebuilt/components/Connection/TileConnection.
|
|
4389
|
+
"path": "src/Prebuilt/components/Connection/TileConnection.tsx",
|
|
4318
4390
|
"kind": "import-statement",
|
|
4319
4391
|
"original": "./Connection/TileConnection"
|
|
4320
4392
|
},
|
|
@@ -4382,7 +4454,7 @@
|
|
|
4382
4454
|
"format": "esm"
|
|
4383
4455
|
},
|
|
4384
4456
|
"src/Prebuilt/components/Preview/PreviewForm.tsx": {
|
|
4385
|
-
"bytes":
|
|
4457
|
+
"bytes": 2636,
|
|
4386
4458
|
"imports": [
|
|
4387
4459
|
{
|
|
4388
4460
|
"path": "react",
|
|
@@ -4420,7 +4492,7 @@
|
|
|
4420
4492
|
"original": "../../provider/roomLayoutProvider"
|
|
4421
4493
|
},
|
|
4422
4494
|
{
|
|
4423
|
-
"path": "src/Prebuilt/components/Preview/PreviewJoin.
|
|
4495
|
+
"path": "src/Prebuilt/components/Preview/PreviewJoin.tsx",
|
|
4424
4496
|
"kind": "import-statement",
|
|
4425
4497
|
"original": "./PreviewJoin"
|
|
4426
4498
|
},
|
|
@@ -4485,7 +4557,7 @@
|
|
|
4485
4557
|
"format": "esm"
|
|
4486
4558
|
},
|
|
4487
4559
|
"src/Prebuilt/plugins/VirtualBackground/VirtualBackground.jsx": {
|
|
4488
|
-
"bytes":
|
|
4560
|
+
"bytes": 3590,
|
|
4489
4561
|
"imports": [
|
|
4490
4562
|
{
|
|
4491
4563
|
"path": "react",
|
|
@@ -4550,14 +4622,19 @@
|
|
|
4550
4622
|
],
|
|
4551
4623
|
"format": "esm"
|
|
4552
4624
|
},
|
|
4553
|
-
"src/Prebuilt/components/Preview/PreviewJoin.
|
|
4554
|
-
"bytes":
|
|
4625
|
+
"src/Prebuilt/components/Preview/PreviewJoin.tsx": {
|
|
4626
|
+
"bytes": 9095,
|
|
4555
4627
|
"imports": [
|
|
4556
4628
|
{
|
|
4557
4629
|
"path": "react",
|
|
4558
4630
|
"kind": "import-statement",
|
|
4559
4631
|
"external": true
|
|
4560
4632
|
},
|
|
4633
|
+
{
|
|
4634
|
+
"path": "react-use",
|
|
4635
|
+
"kind": "import-statement",
|
|
4636
|
+
"external": true
|
|
4637
|
+
},
|
|
4561
4638
|
{
|
|
4562
4639
|
"path": "@100mslive/react-sdk",
|
|
4563
4640
|
"kind": "import-statement",
|
|
@@ -4571,7 +4648,7 @@
|
|
|
4571
4648
|
{
|
|
4572
4649
|
"path": "src/index.ts",
|
|
4573
4650
|
"kind": "import-statement",
|
|
4574
|
-
"original": "
|
|
4651
|
+
"original": "../../.."
|
|
4575
4652
|
},
|
|
4576
4653
|
{
|
|
4577
4654
|
"path": "src/Prebuilt/AppContext.tsx",
|
|
@@ -4599,7 +4676,7 @@
|
|
|
4599
4676
|
"original": "../Chip"
|
|
4600
4677
|
},
|
|
4601
4678
|
{
|
|
4602
|
-
"path": "src/Prebuilt/components/Connection/TileConnection.
|
|
4679
|
+
"path": "src/Prebuilt/components/Connection/TileConnection.tsx",
|
|
4603
4680
|
"kind": "import-statement",
|
|
4604
4681
|
"original": "../Connection/TileConnection"
|
|
4605
4682
|
},
|
|
@@ -4666,8 +4743,8 @@
|
|
|
4666
4743
|
],
|
|
4667
4744
|
"format": "esm"
|
|
4668
4745
|
},
|
|
4669
|
-
"src/Prebuilt/components/Preview/PreviewContainer.
|
|
4670
|
-
"bytes":
|
|
4746
|
+
"src/Prebuilt/components/Preview/PreviewContainer.tsx": {
|
|
4747
|
+
"bytes": 2128,
|
|
4671
4748
|
"imports": [
|
|
4672
4749
|
{
|
|
4673
4750
|
"path": "react",
|
|
@@ -4687,7 +4764,7 @@
|
|
|
4687
4764
|
{
|
|
4688
4765
|
"path": "src/index.ts",
|
|
4689
4766
|
"kind": "import-statement",
|
|
4690
|
-
"original": "
|
|
4767
|
+
"original": "../../.."
|
|
4691
4768
|
},
|
|
4692
4769
|
{
|
|
4693
4770
|
"path": "src/Prebuilt/AppContext.tsx",
|
|
@@ -4705,7 +4782,7 @@
|
|
|
4705
4782
|
"original": "../FullPageProgress"
|
|
4706
4783
|
},
|
|
4707
4784
|
{
|
|
4708
|
-
"path": "src/Prebuilt/components/Preview/PreviewJoin.
|
|
4785
|
+
"path": "src/Prebuilt/components/Preview/PreviewJoin.tsx",
|
|
4709
4786
|
"kind": "import-statement",
|
|
4710
4787
|
"original": "./PreviewJoin"
|
|
4711
4788
|
},
|
|
@@ -4805,7 +4882,7 @@
|
|
|
4805
4882
|
"format": "esm"
|
|
4806
4883
|
},
|
|
4807
4884
|
"src/Prebuilt/plugins/FlyingEmoji.jsx": {
|
|
4808
|
-
"bytes":
|
|
4885
|
+
"bytes": 3826,
|
|
4809
4886
|
"imports": [
|
|
4810
4887
|
{
|
|
4811
4888
|
"path": "react",
|
|
@@ -4837,6 +4914,11 @@
|
|
|
4837
4914
|
"kind": "import-statement",
|
|
4838
4915
|
"original": "../../Theme"
|
|
4839
4916
|
},
|
|
4917
|
+
{
|
|
4918
|
+
"path": "src/Prebuilt/common/constants.js",
|
|
4919
|
+
"kind": "import-statement",
|
|
4920
|
+
"original": "../common/constants"
|
|
4921
|
+
},
|
|
4840
4922
|
{
|
|
4841
4923
|
"path": "<define:process.env>",
|
|
4842
4924
|
"kind": "import-statement",
|
|
@@ -4876,8 +4958,8 @@
|
|
|
4876
4958
|
],
|
|
4877
4959
|
"format": "esm"
|
|
4878
4960
|
},
|
|
4879
|
-
"src/Prebuilt/
|
|
4880
|
-
"bytes":
|
|
4961
|
+
"src/Prebuilt/common/hooks.js": {
|
|
4962
|
+
"bytes": 3236,
|
|
4881
4963
|
"imports": [
|
|
4882
4964
|
{
|
|
4883
4965
|
"path": "react",
|
|
@@ -4885,7 +4967,84 @@
|
|
|
4885
4967
|
"external": true
|
|
4886
4968
|
},
|
|
4887
4969
|
{
|
|
4888
|
-
"path": "
|
|
4970
|
+
"path": "@100mslive/types-prebuilt/elements/join_form",
|
|
4971
|
+
"kind": "import-statement",
|
|
4972
|
+
"external": true
|
|
4973
|
+
},
|
|
4974
|
+
{
|
|
4975
|
+
"path": "@100mslive/react-sdk",
|
|
4976
|
+
"kind": "import-statement",
|
|
4977
|
+
"external": true
|
|
4978
|
+
},
|
|
4979
|
+
{
|
|
4980
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/index.tsx",
|
|
4981
|
+
"kind": "import-statement",
|
|
4982
|
+
"original": "../provider/roomLayoutProvider"
|
|
4983
|
+
},
|
|
4984
|
+
{
|
|
4985
|
+
"path": "src/Prebuilt/common/utils.js",
|
|
4986
|
+
"kind": "import-statement",
|
|
4987
|
+
"original": "./utils"
|
|
4988
|
+
},
|
|
4989
|
+
{
|
|
4990
|
+
"path": "<define:process.env>",
|
|
4991
|
+
"kind": "import-statement",
|
|
4992
|
+
"external": true
|
|
4993
|
+
}
|
|
4994
|
+
],
|
|
4995
|
+
"format": "esm"
|
|
4996
|
+
},
|
|
4997
|
+
"src/Prebuilt/components/hooks/useAutoStartStreaming.tsx": {
|
|
4998
|
+
"bytes": 1849,
|
|
4999
|
+
"imports": [
|
|
5000
|
+
{
|
|
5001
|
+
"path": "react",
|
|
5002
|
+
"kind": "import-statement",
|
|
5003
|
+
"external": true
|
|
5004
|
+
},
|
|
5005
|
+
{
|
|
5006
|
+
"path": "@100mslive/react-sdk",
|
|
5007
|
+
"kind": "import-statement",
|
|
5008
|
+
"external": true
|
|
5009
|
+
},
|
|
5010
|
+
{
|
|
5011
|
+
"path": "src/Prebuilt/components/AppData/useUISettings.js",
|
|
5012
|
+
"kind": "import-statement",
|
|
5013
|
+
"original": "../AppData/useUISettings"
|
|
5014
|
+
},
|
|
5015
|
+
{
|
|
5016
|
+
"path": "src/Prebuilt/common/hooks.js",
|
|
5017
|
+
"kind": "import-statement",
|
|
5018
|
+
"original": "../../common/hooks"
|
|
5019
|
+
},
|
|
5020
|
+
{
|
|
5021
|
+
"path": "src/Prebuilt/common/constants.js",
|
|
5022
|
+
"kind": "import-statement",
|
|
5023
|
+
"original": "../../common/constants"
|
|
5024
|
+
},
|
|
5025
|
+
{
|
|
5026
|
+
"path": "<define:process.env>",
|
|
5027
|
+
"kind": "import-statement",
|
|
5028
|
+
"external": true
|
|
5029
|
+
},
|
|
5030
|
+
{
|
|
5031
|
+
"path": "<runtime>",
|
|
5032
|
+
"kind": "import-statement",
|
|
5033
|
+
"external": true
|
|
5034
|
+
}
|
|
5035
|
+
],
|
|
5036
|
+
"format": "esm"
|
|
5037
|
+
},
|
|
5038
|
+
"src/Prebuilt/components/Footer/EmojiCard.jsx": {
|
|
5039
|
+
"bytes": 1189,
|
|
5040
|
+
"imports": [
|
|
5041
|
+
{
|
|
5042
|
+
"path": "react",
|
|
5043
|
+
"kind": "import-statement",
|
|
5044
|
+
"external": true
|
|
5045
|
+
},
|
|
5046
|
+
{
|
|
5047
|
+
"path": "src/Layout/index.tsx",
|
|
4889
5048
|
"kind": "import-statement",
|
|
4890
5049
|
"original": "../../../Layout"
|
|
4891
5050
|
},
|
|
@@ -4903,7 +5062,7 @@
|
|
|
4903
5062
|
"format": "esm"
|
|
4904
5063
|
},
|
|
4905
5064
|
"src/Prebuilt/components/EmojiReaction.jsx": {
|
|
4906
|
-
"bytes":
|
|
5065
|
+
"bytes": 2758,
|
|
4907
5066
|
"imports": [
|
|
4908
5067
|
{
|
|
4909
5068
|
"path": "react",
|
|
@@ -4988,50 +5147,8 @@
|
|
|
4988
5147
|
],
|
|
4989
5148
|
"format": "esm"
|
|
4990
5149
|
},
|
|
4991
|
-
"src/Prebuilt/components/PIP/pipUtils.js": {
|
|
4992
|
-
"bytes": 6437,
|
|
4993
|
-
"imports": [
|
|
4994
|
-
{
|
|
4995
|
-
"path": "<define:process.env>",
|
|
4996
|
-
"kind": "import-statement",
|
|
4997
|
-
"external": true
|
|
4998
|
-
}
|
|
4999
|
-
],
|
|
5000
|
-
"format": "esm"
|
|
5001
|
-
},
|
|
5002
|
-
"src/Prebuilt/components/PIP/PIPManager.js": {
|
|
5003
|
-
"bytes": 10148,
|
|
5004
|
-
"imports": [
|
|
5005
|
-
{
|
|
5006
|
-
"path": "worker-timers",
|
|
5007
|
-
"kind": "import-statement",
|
|
5008
|
-
"external": true
|
|
5009
|
-
},
|
|
5010
|
-
{
|
|
5011
|
-
"path": "src/Prebuilt/components/PIP/pipUtils.js",
|
|
5012
|
-
"kind": "import-statement",
|
|
5013
|
-
"original": "./pipUtils"
|
|
5014
|
-
},
|
|
5015
|
-
{
|
|
5016
|
-
"path": "src/Prebuilt/common/constants.js",
|
|
5017
|
-
"kind": "import-statement",
|
|
5018
|
-
"original": "../../common/constants"
|
|
5019
|
-
},
|
|
5020
|
-
{
|
|
5021
|
-
"path": "<define:process.env>",
|
|
5022
|
-
"kind": "import-statement",
|
|
5023
|
-
"external": true
|
|
5024
|
-
},
|
|
5025
|
-
{
|
|
5026
|
-
"path": "<runtime>",
|
|
5027
|
-
"kind": "import-statement",
|
|
5028
|
-
"external": true
|
|
5029
|
-
}
|
|
5030
|
-
],
|
|
5031
|
-
"format": "esm"
|
|
5032
|
-
},
|
|
5033
5150
|
"src/Prebuilt/components/Leave/EndSessionContent.tsx": {
|
|
5034
|
-
"bytes":
|
|
5151
|
+
"bytes": 1981,
|
|
5035
5152
|
"imports": [
|
|
5036
5153
|
{
|
|
5037
5154
|
"path": "react",
|
|
@@ -5093,7 +5210,7 @@
|
|
|
5093
5210
|
"format": "esm"
|
|
5094
5211
|
},
|
|
5095
5212
|
"src/Prebuilt/components/Leave/LeaveCard.tsx": {
|
|
5096
|
-
"bytes":
|
|
5213
|
+
"bytes": 788,
|
|
5097
5214
|
"imports": [
|
|
5098
5215
|
{
|
|
5099
5216
|
"path": "react",
|
|
@@ -5129,7 +5246,7 @@
|
|
|
5129
5246
|
"format": "esm"
|
|
5130
5247
|
},
|
|
5131
5248
|
"src/Prebuilt/components/Leave/LeaveSessionContent.tsx": {
|
|
5132
|
-
"bytes":
|
|
5249
|
+
"bytes": 1753,
|
|
5133
5250
|
"imports": [
|
|
5134
5251
|
{
|
|
5135
5252
|
"path": "react",
|
|
@@ -5165,7 +5282,7 @@
|
|
|
5165
5282
|
"format": "esm"
|
|
5166
5283
|
},
|
|
5167
5284
|
"src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx": {
|
|
5168
|
-
"bytes":
|
|
5285
|
+
"bytes": 6435,
|
|
5169
5286
|
"imports": [
|
|
5170
5287
|
{
|
|
5171
5288
|
"path": "react",
|
|
@@ -5241,7 +5358,7 @@
|
|
|
5241
5358
|
"format": "esm"
|
|
5242
5359
|
},
|
|
5243
5360
|
"src/Prebuilt/components/Leave/MwebLeaveRoom.tsx": {
|
|
5244
|
-
"bytes":
|
|
5361
|
+
"bytes": 4841,
|
|
5245
5362
|
"imports": [
|
|
5246
5363
|
{
|
|
5247
5364
|
"path": "react",
|
|
@@ -5312,18 +5429,13 @@
|
|
|
5312
5429
|
"format": "esm"
|
|
5313
5430
|
},
|
|
5314
5431
|
"src/Prebuilt/components/Leave/LeaveRoom.tsx": {
|
|
5315
|
-
"bytes":
|
|
5432
|
+
"bytes": 2282,
|
|
5316
5433
|
"imports": [
|
|
5317
5434
|
{
|
|
5318
5435
|
"path": "react",
|
|
5319
5436
|
"kind": "import-statement",
|
|
5320
5437
|
"external": true
|
|
5321
5438
|
},
|
|
5322
|
-
{
|
|
5323
|
-
"path": "react-router-dom",
|
|
5324
|
-
"kind": "import-statement",
|
|
5325
|
-
"external": true
|
|
5326
|
-
},
|
|
5327
5439
|
{
|
|
5328
5440
|
"path": "react-use",
|
|
5329
5441
|
"kind": "import-statement",
|
|
@@ -5344,16 +5456,6 @@
|
|
|
5344
5456
|
"kind": "import-statement",
|
|
5345
5457
|
"original": "../../../Theme"
|
|
5346
5458
|
},
|
|
5347
|
-
{
|
|
5348
|
-
"path": "src/Prebuilt/AppContext.tsx",
|
|
5349
|
-
"kind": "import-statement",
|
|
5350
|
-
"original": "../../AppContext"
|
|
5351
|
-
},
|
|
5352
|
-
{
|
|
5353
|
-
"path": "src/Prebuilt/components/PIP/PIPManager.js",
|
|
5354
|
-
"kind": "import-statement",
|
|
5355
|
-
"original": "../PIP/PIPManager"
|
|
5356
|
-
},
|
|
5357
5459
|
{
|
|
5358
5460
|
"path": "src/Prebuilt/components/Toast/ToastManager.js",
|
|
5359
5461
|
"kind": "import-statement",
|
|
@@ -5370,9 +5472,9 @@
|
|
|
5370
5472
|
"original": "./MwebLeaveRoom"
|
|
5371
5473
|
},
|
|
5372
5474
|
{
|
|
5373
|
-
"path": "src/Prebuilt/
|
|
5475
|
+
"path": "src/Prebuilt/components/hooks/useRedirectToLeave.tsx",
|
|
5374
5476
|
"kind": "import-statement",
|
|
5375
|
-
"original": "
|
|
5477
|
+
"original": "../hooks/useRedirectToLeave"
|
|
5376
5478
|
},
|
|
5377
5479
|
{
|
|
5378
5480
|
"path": "<define:process.env>",
|
|
@@ -5480,42 +5582,6 @@
|
|
|
5480
5582
|
],
|
|
5481
5583
|
"format": "esm"
|
|
5482
5584
|
},
|
|
5483
|
-
"src/Prebuilt/common/hooks.js": {
|
|
5484
|
-
"bytes": 3236,
|
|
5485
|
-
"imports": [
|
|
5486
|
-
{
|
|
5487
|
-
"path": "react",
|
|
5488
|
-
"kind": "import-statement",
|
|
5489
|
-
"external": true
|
|
5490
|
-
},
|
|
5491
|
-
{
|
|
5492
|
-
"path": "@100mslive/types-prebuilt/elements/join_form",
|
|
5493
|
-
"kind": "import-statement",
|
|
5494
|
-
"external": true
|
|
5495
|
-
},
|
|
5496
|
-
{
|
|
5497
|
-
"path": "@100mslive/react-sdk",
|
|
5498
|
-
"kind": "import-statement",
|
|
5499
|
-
"external": true
|
|
5500
|
-
},
|
|
5501
|
-
{
|
|
5502
|
-
"path": "src/Prebuilt/provider/roomLayoutProvider/index.tsx",
|
|
5503
|
-
"kind": "import-statement",
|
|
5504
|
-
"original": "../provider/roomLayoutProvider"
|
|
5505
|
-
},
|
|
5506
|
-
{
|
|
5507
|
-
"path": "src/Prebuilt/common/utils.js",
|
|
5508
|
-
"kind": "import-statement",
|
|
5509
|
-
"original": "./utils"
|
|
5510
|
-
},
|
|
5511
|
-
{
|
|
5512
|
-
"path": "<define:process.env>",
|
|
5513
|
-
"kind": "import-statement",
|
|
5514
|
-
"external": true
|
|
5515
|
-
}
|
|
5516
|
-
],
|
|
5517
|
-
"format": "esm"
|
|
5518
|
-
},
|
|
5519
5585
|
"src/Prebuilt/components/RoleChangeModal.jsx": {
|
|
5520
5586
|
"bytes": 6486,
|
|
5521
5587
|
"imports": [
|
|
@@ -6088,7 +6154,7 @@
|
|
|
6088
6154
|
"format": "esm"
|
|
6089
6155
|
},
|
|
6090
6156
|
"src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx": {
|
|
6091
|
-
"bytes":
|
|
6157
|
+
"bytes": 7910,
|
|
6092
6158
|
"imports": [
|
|
6093
6159
|
{
|
|
6094
6160
|
"path": "react",
|
|
@@ -6193,8 +6259,8 @@
|
|
|
6193
6259
|
],
|
|
6194
6260
|
"format": "esm"
|
|
6195
6261
|
},
|
|
6196
|
-
"src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.
|
|
6197
|
-
"bytes":
|
|
6262
|
+
"src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx": {
|
|
6263
|
+
"bytes": 10893,
|
|
6198
6264
|
"imports": [
|
|
6199
6265
|
{
|
|
6200
6266
|
"path": "react",
|
|
@@ -6206,6 +6272,11 @@
|
|
|
6206
6272
|
"kind": "import-statement",
|
|
6207
6273
|
"external": true
|
|
6208
6274
|
},
|
|
6275
|
+
{
|
|
6276
|
+
"path": "@100mslive/types-prebuilt",
|
|
6277
|
+
"kind": "import-statement",
|
|
6278
|
+
"external": true
|
|
6279
|
+
},
|
|
6209
6280
|
{
|
|
6210
6281
|
"path": "@100mslive/react-sdk",
|
|
6211
6282
|
"kind": "import-statement",
|
|
@@ -6219,7 +6290,7 @@
|
|
|
6219
6290
|
{
|
|
6220
6291
|
"path": "src/index.ts",
|
|
6221
6292
|
"kind": "import-statement",
|
|
6222
|
-
"original": "
|
|
6293
|
+
"original": "../../../.."
|
|
6223
6294
|
},
|
|
6224
6295
|
{
|
|
6225
6296
|
"path": "src/Sheet/index.ts",
|
|
@@ -6237,7 +6308,7 @@
|
|
|
6237
6308
|
"original": "../../EmojiReaction"
|
|
6238
6309
|
},
|
|
6239
6310
|
{
|
|
6240
|
-
"path": "src/Prebuilt/components/Header/StreamActions.
|
|
6311
|
+
"path": "src/Prebuilt/components/Header/StreamActions.tsx",
|
|
6241
6312
|
"kind": "import-statement",
|
|
6242
6313
|
"original": "../../Header/StreamActions"
|
|
6243
6314
|
},
|
|
@@ -6254,17 +6325,17 @@
|
|
|
6254
6325
|
{
|
|
6255
6326
|
"path": "src/Prebuilt/components/MoreSettings/ActionTile.jsx",
|
|
6256
6327
|
"kind": "import-statement",
|
|
6257
|
-
"original": "
|
|
6328
|
+
"original": "../ActionTile"
|
|
6258
6329
|
},
|
|
6259
6330
|
{
|
|
6260
6331
|
"path": "src/Prebuilt/components/MoreSettings/ChangeNameModal.jsx",
|
|
6261
6332
|
"kind": "import-statement",
|
|
6262
|
-
"original": "
|
|
6333
|
+
"original": "../ChangeNameModal"
|
|
6263
6334
|
},
|
|
6264
6335
|
{
|
|
6265
6336
|
"path": "src/Prebuilt/components/MoreSettings/MuteAllModal.jsx",
|
|
6266
6337
|
"kind": "import-statement",
|
|
6267
|
-
"original": "
|
|
6338
|
+
"original": "../MuteAllModal"
|
|
6268
6339
|
},
|
|
6269
6340
|
{
|
|
6270
6341
|
"path": "src/Prebuilt/components/AppData/useSidepane.js",
|
|
@@ -6276,6 +6347,11 @@
|
|
|
6276
6347
|
"kind": "import-statement",
|
|
6277
6348
|
"original": "../../hooks/useDropdownList"
|
|
6278
6349
|
},
|
|
6350
|
+
{
|
|
6351
|
+
"path": "src/Prebuilt/components/hooks/useMetadata.jsx",
|
|
6352
|
+
"kind": "import-statement",
|
|
6353
|
+
"original": "../../hooks/useMetadata"
|
|
6354
|
+
},
|
|
6279
6355
|
{
|
|
6280
6356
|
"path": "src/Prebuilt/common/utils.js",
|
|
6281
6357
|
"kind": "import-statement",
|
|
@@ -6323,7 +6399,7 @@
|
|
|
6323
6399
|
"original": "./SplitComponents/DesktopOptions"
|
|
6324
6400
|
},
|
|
6325
6401
|
{
|
|
6326
|
-
"path": "src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.
|
|
6402
|
+
"path": "src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx",
|
|
6327
6403
|
"kind": "import-statement",
|
|
6328
6404
|
"original": "./SplitComponents/MwebOptions"
|
|
6329
6405
|
},
|
|
@@ -6697,8 +6773,8 @@
|
|
|
6697
6773
|
],
|
|
6698
6774
|
"format": "esm"
|
|
6699
6775
|
},
|
|
6700
|
-
"src/Prebuilt/components/Footer/ChatToggle.
|
|
6701
|
-
"bytes":
|
|
6776
|
+
"src/Prebuilt/components/Footer/ChatToggle.tsx": {
|
|
6777
|
+
"bytes": 1045,
|
|
6702
6778
|
"imports": [
|
|
6703
6779
|
{
|
|
6704
6780
|
"path": "react",
|
|
@@ -6718,7 +6794,7 @@
|
|
|
6718
6794
|
{
|
|
6719
6795
|
"path": "src/index.ts",
|
|
6720
6796
|
"kind": "import-statement",
|
|
6721
|
-
"original": "
|
|
6797
|
+
"original": "../../.."
|
|
6722
6798
|
},
|
|
6723
6799
|
{
|
|
6724
6800
|
"path": "src/Prebuilt/IconButton.jsx",
|
|
@@ -6743,14 +6819,19 @@
|
|
|
6743
6819
|
],
|
|
6744
6820
|
"format": "esm"
|
|
6745
6821
|
},
|
|
6746
|
-
"src/Prebuilt/components/
|
|
6747
|
-
"bytes":
|
|
6822
|
+
"src/Prebuilt/components/Footer/RoleOptions.tsx": {
|
|
6823
|
+
"bytes": 5408,
|
|
6748
6824
|
"imports": [
|
|
6749
6825
|
{
|
|
6750
6826
|
"path": "react",
|
|
6751
6827
|
"kind": "import-statement",
|
|
6752
6828
|
"external": true
|
|
6753
6829
|
},
|
|
6830
|
+
{
|
|
6831
|
+
"path": "@100mslive/types-prebuilt",
|
|
6832
|
+
"kind": "import-statement",
|
|
6833
|
+
"external": true
|
|
6834
|
+
},
|
|
6754
6835
|
{
|
|
6755
6836
|
"path": "@100mslive/react-sdk",
|
|
6756
6837
|
"kind": "import-statement",
|
|
@@ -6762,19 +6843,29 @@
|
|
|
6762
6843
|
"external": true
|
|
6763
6844
|
},
|
|
6764
6845
|
{
|
|
6765
|
-
"path": "src/index.
|
|
6846
|
+
"path": "src/Dropdown/index.tsx",
|
|
6766
6847
|
"kind": "import-statement",
|
|
6767
|
-
"original": "
|
|
6848
|
+
"original": "../../../Dropdown"
|
|
6768
6849
|
},
|
|
6769
6850
|
{
|
|
6770
|
-
"path": "src/
|
|
6851
|
+
"path": "src/Layout/index.tsx",
|
|
6771
6852
|
"kind": "import-statement",
|
|
6772
|
-
"original": "
|
|
6853
|
+
"original": "../../../Layout"
|
|
6773
6854
|
},
|
|
6774
6855
|
{
|
|
6775
|
-
"path": "src/
|
|
6856
|
+
"path": "src/Text/index.tsx",
|
|
6776
6857
|
"kind": "import-statement",
|
|
6777
|
-
"original": "
|
|
6858
|
+
"original": "../../../Text"
|
|
6859
|
+
},
|
|
6860
|
+
{
|
|
6861
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
|
6862
|
+
"kind": "import-statement",
|
|
6863
|
+
"original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
|
6864
|
+
},
|
|
6865
|
+
{
|
|
6866
|
+
"path": "src/Prebuilt/common/utils.js",
|
|
6867
|
+
"kind": "import-statement",
|
|
6868
|
+
"original": "../../common/utils"
|
|
6778
6869
|
},
|
|
6779
6870
|
{
|
|
6780
6871
|
"path": "<define:process.env>",
|
|
@@ -6789,8 +6880,8 @@
|
|
|
6789
6880
|
],
|
|
6790
6881
|
"format": "esm"
|
|
6791
6882
|
},
|
|
6792
|
-
"src/Prebuilt/components/Footer/RoleAccordion.
|
|
6793
|
-
"bytes":
|
|
6883
|
+
"src/Prebuilt/components/Footer/RoleAccordion.tsx": {
|
|
6884
|
+
"bytes": 3113,
|
|
6794
6885
|
"imports": [
|
|
6795
6886
|
{
|
|
6796
6887
|
"path": "react",
|
|
@@ -6807,6 +6898,11 @@
|
|
|
6807
6898
|
"kind": "import-statement",
|
|
6808
6899
|
"external": true
|
|
6809
6900
|
},
|
|
6901
|
+
{
|
|
6902
|
+
"path": "@100mslive/react-sdk",
|
|
6903
|
+
"kind": "import-statement",
|
|
6904
|
+
"external": true
|
|
6905
|
+
},
|
|
6810
6906
|
{
|
|
6811
6907
|
"path": "src/Accordion/index.ts",
|
|
6812
6908
|
"kind": "import-statement",
|
|
@@ -6817,11 +6913,21 @@
|
|
|
6817
6913
|
"kind": "import-statement",
|
|
6818
6914
|
"original": "../../../Layout"
|
|
6819
6915
|
},
|
|
6916
|
+
{
|
|
6917
|
+
"path": "src/Text/index.tsx",
|
|
6918
|
+
"kind": "import-statement",
|
|
6919
|
+
"original": "../../../Text"
|
|
6920
|
+
},
|
|
6820
6921
|
{
|
|
6821
6922
|
"path": "src/Prebuilt/components/Footer/ParticipantList.jsx",
|
|
6822
6923
|
"kind": "import-statement",
|
|
6823
6924
|
"original": "./ParticipantList"
|
|
6824
6925
|
},
|
|
6926
|
+
{
|
|
6927
|
+
"path": "src/Prebuilt/components/Footer/RoleOptions.tsx",
|
|
6928
|
+
"kind": "import-statement",
|
|
6929
|
+
"original": "./RoleOptions"
|
|
6930
|
+
},
|
|
6825
6931
|
{
|
|
6826
6932
|
"path": "src/Prebuilt/common/utils.js",
|
|
6827
6933
|
"kind": "import-statement",
|
|
@@ -6836,7 +6942,7 @@
|
|
|
6836
6942
|
"format": "esm"
|
|
6837
6943
|
},
|
|
6838
6944
|
"src/Prebuilt/components/Footer/ParticipantList.jsx": {
|
|
6839
|
-
"bytes":
|
|
6945
|
+
"bytes": 10439,
|
|
6840
6946
|
"imports": [
|
|
6841
6947
|
{
|
|
6842
6948
|
"path": "react",
|
|
@@ -6869,35 +6975,25 @@
|
|
|
6869
6975
|
"original": "../../IconButton"
|
|
6870
6976
|
},
|
|
6871
6977
|
{
|
|
6872
|
-
"path": "src/Prebuilt/
|
|
6873
|
-
"kind": "import-statement",
|
|
6874
|
-
"original": "../../provider/roomLayoutProvider"
|
|
6875
|
-
},
|
|
6876
|
-
{
|
|
6877
|
-
"path": "src/Prebuilt/components/Chat/ChatParticipantHeader.jsx",
|
|
6878
|
-
"kind": "import-statement",
|
|
6879
|
-
"original": "../Chat/ChatParticipantHeader"
|
|
6880
|
-
},
|
|
6881
|
-
{
|
|
6882
|
-
"path": "src/Prebuilt/components/Connection/ConnectionIndicator.jsx",
|
|
6978
|
+
"path": "src/Prebuilt/components/Connection/ConnectionIndicator.tsx",
|
|
6883
6979
|
"kind": "import-statement",
|
|
6884
6980
|
"original": "../Connection/ConnectionIndicator"
|
|
6885
6981
|
},
|
|
6886
|
-
{
|
|
6887
|
-
"path": "src/Prebuilt/components/RoleChangeModal.jsx",
|
|
6888
|
-
"kind": "import-statement",
|
|
6889
|
-
"original": "../RoleChangeModal"
|
|
6890
|
-
},
|
|
6891
6982
|
{
|
|
6892
6983
|
"path": "src/Prebuilt/components/Toast/ToastManager.js",
|
|
6893
6984
|
"kind": "import-statement",
|
|
6894
6985
|
"original": "../Toast/ToastManager"
|
|
6895
6986
|
},
|
|
6896
6987
|
{
|
|
6897
|
-
"path": "src/Prebuilt/components/Footer/RoleAccordion.
|
|
6988
|
+
"path": "src/Prebuilt/components/Footer/RoleAccordion.tsx",
|
|
6898
6989
|
"kind": "import-statement",
|
|
6899
6990
|
"original": "./RoleAccordion"
|
|
6900
6991
|
},
|
|
6992
|
+
{
|
|
6993
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
|
6994
|
+
"kind": "import-statement",
|
|
6995
|
+
"original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
|
6996
|
+
},
|
|
6901
6997
|
{
|
|
6902
6998
|
"path": "src/Prebuilt/components/AppData/useSidepane.js",
|
|
6903
6999
|
"kind": "import-statement",
|
|
@@ -6932,7 +7028,7 @@
|
|
|
6932
7028
|
"format": "esm"
|
|
6933
7029
|
},
|
|
6934
7030
|
"src/Prebuilt/components/Footer/Footer.tsx": {
|
|
6935
|
-
"bytes":
|
|
7031
|
+
"bytes": 3706,
|
|
6936
7032
|
"imports": [
|
|
6937
7033
|
{
|
|
6938
7034
|
"path": "react",
|
|
@@ -6949,6 +7045,11 @@
|
|
|
6949
7045
|
"kind": "import-statement",
|
|
6950
7046
|
"external": true
|
|
6951
7047
|
},
|
|
7048
|
+
{
|
|
7049
|
+
"path": "@100mslive/types-prebuilt/elements/chat",
|
|
7050
|
+
"kind": "import-statement",
|
|
7051
|
+
"external": true
|
|
7052
|
+
},
|
|
6952
7053
|
{
|
|
6953
7054
|
"path": "src/index.ts",
|
|
6954
7055
|
"kind": "import-statement",
|
|
@@ -6985,7 +7086,7 @@
|
|
|
6985
7086
|
"original": "../ScreenShareToggle"
|
|
6986
7087
|
},
|
|
6987
7088
|
{
|
|
6988
|
-
"path": "src/Prebuilt/components/Footer/ChatToggle.
|
|
7089
|
+
"path": "src/Prebuilt/components/Footer/ChatToggle.tsx",
|
|
6989
7090
|
"kind": "import-statement",
|
|
6990
7091
|
"original": "./ChatToggle"
|
|
6991
7092
|
},
|
|
@@ -6994,10 +7095,25 @@
|
|
|
6994
7095
|
"kind": "import-statement",
|
|
6995
7096
|
"original": "./ParticipantList"
|
|
6996
7097
|
},
|
|
7098
|
+
{
|
|
7099
|
+
"path": "src/Prebuilt/components/AppData/useSidepane.js",
|
|
7100
|
+
"kind": "import-statement",
|
|
7101
|
+
"original": "../AppData/useSidepane"
|
|
7102
|
+
},
|
|
7103
|
+
{
|
|
7104
|
+
"path": "src/Prebuilt/common/constants.js",
|
|
7105
|
+
"kind": "import-statement",
|
|
7106
|
+
"original": "../../common/constants"
|
|
7107
|
+
},
|
|
6997
7108
|
{
|
|
6998
7109
|
"path": "<define:process.env>",
|
|
6999
7110
|
"kind": "import-statement",
|
|
7000
7111
|
"external": true
|
|
7112
|
+
},
|
|
7113
|
+
{
|
|
7114
|
+
"path": "src/Prebuilt/plugins/VirtualBackground/VirtualBackground.jsx",
|
|
7115
|
+
"kind": "dynamic-import",
|
|
7116
|
+
"original": "../../plugins/VirtualBackground/VirtualBackground"
|
|
7001
7117
|
}
|
|
7002
7118
|
],
|
|
7003
7119
|
"format": "esm"
|
|
@@ -7058,8 +7174,24 @@
|
|
|
7058
7174
|
],
|
|
7059
7175
|
"format": "esm"
|
|
7060
7176
|
},
|
|
7177
|
+
"src/Prebuilt/components/hooks/useVideoTileLayout.ts": {
|
|
7178
|
+
"bytes": 707,
|
|
7179
|
+
"imports": [
|
|
7180
|
+
{
|
|
7181
|
+
"path": "react",
|
|
7182
|
+
"kind": "import-statement",
|
|
7183
|
+
"external": true
|
|
7184
|
+
},
|
|
7185
|
+
{
|
|
7186
|
+
"path": "<define:process.env>",
|
|
7187
|
+
"kind": "import-statement",
|
|
7188
|
+
"external": true
|
|
7189
|
+
}
|
|
7190
|
+
],
|
|
7191
|
+
"format": "esm"
|
|
7192
|
+
},
|
|
7061
7193
|
"src/Prebuilt/components/InsetTile.tsx": {
|
|
7062
|
-
"bytes":
|
|
7194
|
+
"bytes": 4247,
|
|
7063
7195
|
"imports": [
|
|
7064
7196
|
{
|
|
7065
7197
|
"path": "react",
|
|
@@ -7121,6 +7253,11 @@
|
|
|
7121
7253
|
"kind": "import-statement",
|
|
7122
7254
|
"original": "./AppData/useUISettings"
|
|
7123
7255
|
},
|
|
7256
|
+
{
|
|
7257
|
+
"path": "src/Prebuilt/components/hooks/useVideoTileLayout.ts",
|
|
7258
|
+
"kind": "import-statement",
|
|
7259
|
+
"original": "./hooks/useVideoTileLayout"
|
|
7260
|
+
},
|
|
7124
7261
|
{
|
|
7125
7262
|
"path": "src/Prebuilt/common/constants.js",
|
|
7126
7263
|
"kind": "import-statement",
|
|
@@ -7140,7 +7277,7 @@
|
|
|
7140
7277
|
"format": "esm"
|
|
7141
7278
|
},
|
|
7142
7279
|
"src/Prebuilt/components/Pagination.tsx": {
|
|
7143
|
-
"bytes":
|
|
7280
|
+
"bytes": 1833,
|
|
7144
7281
|
"imports": [
|
|
7145
7282
|
{
|
|
7146
7283
|
"path": "react",
|
|
@@ -7165,24 +7302,8 @@
|
|
|
7165
7302
|
],
|
|
7166
7303
|
"format": "esm"
|
|
7167
7304
|
},
|
|
7168
|
-
"src/Prebuilt/components/hooks/useVideoTileLayout.ts": {
|
|
7169
|
-
"bytes": 581,
|
|
7170
|
-
"imports": [
|
|
7171
|
-
{
|
|
7172
|
-
"path": "react",
|
|
7173
|
-
"kind": "import-statement",
|
|
7174
|
-
"external": true
|
|
7175
|
-
},
|
|
7176
|
-
{
|
|
7177
|
-
"path": "<define:process.env>",
|
|
7178
|
-
"kind": "import-statement",
|
|
7179
|
-
"external": true
|
|
7180
|
-
}
|
|
7181
|
-
],
|
|
7182
|
-
"format": "esm"
|
|
7183
|
-
},
|
|
7184
7305
|
"src/Prebuilt/components/VideoLayouts/Grid.tsx": {
|
|
7185
|
-
"bytes":
|
|
7306
|
+
"bytes": 1272,
|
|
7186
7307
|
"imports": [
|
|
7187
7308
|
{
|
|
7188
7309
|
"path": "react",
|
|
@@ -7223,7 +7344,7 @@
|
|
|
7223
7344
|
"format": "esm"
|
|
7224
7345
|
},
|
|
7225
7346
|
"src/Prebuilt/components/hooks/useTileLayout.tsx": {
|
|
7226
|
-
"bytes":
|
|
7347
|
+
"bytes": 4413,
|
|
7227
7348
|
"imports": [
|
|
7228
7349
|
{
|
|
7229
7350
|
"path": "react",
|
|
@@ -7254,7 +7375,7 @@
|
|
|
7254
7375
|
"format": "esm"
|
|
7255
7376
|
},
|
|
7256
7377
|
"src/Prebuilt/components/VideoLayouts/EqualProminence.tsx": {
|
|
7257
|
-
"bytes":
|
|
7378
|
+
"bytes": 2328,
|
|
7258
7379
|
"imports": [
|
|
7259
7380
|
{
|
|
7260
7381
|
"path": "react",
|
|
@@ -7325,7 +7446,7 @@
|
|
|
7325
7446
|
"format": "esm"
|
|
7326
7447
|
},
|
|
7327
7448
|
"src/Prebuilt/components/VideoLayouts/ProminenceLayout.tsx": {
|
|
7328
|
-
"bytes":
|
|
7449
|
+
"bytes": 2085,
|
|
7329
7450
|
"imports": [
|
|
7330
7451
|
{
|
|
7331
7452
|
"path": "react",
|
|
@@ -7371,7 +7492,7 @@
|
|
|
7371
7492
|
"format": "esm"
|
|
7372
7493
|
},
|
|
7373
7494
|
"src/Prebuilt/components/SecondaryTiles.tsx": {
|
|
7374
|
-
"bytes":
|
|
7495
|
+
"bytes": 1217,
|
|
7375
7496
|
"imports": [
|
|
7376
7497
|
{
|
|
7377
7498
|
"path": "react",
|
|
@@ -7417,7 +7538,7 @@
|
|
|
7417
7538
|
"format": "esm"
|
|
7418
7539
|
},
|
|
7419
7540
|
"src/Prebuilt/components/hooks/useRoleProminencePeers.tsx": {
|
|
7420
|
-
"bytes":
|
|
7541
|
+
"bytes": 1092,
|
|
7421
7542
|
"imports": [
|
|
7422
7543
|
{
|
|
7423
7544
|
"path": "react",
|
|
@@ -7443,7 +7564,7 @@
|
|
|
7443
7564
|
"format": "esm"
|
|
7444
7565
|
},
|
|
7445
7566
|
"src/Prebuilt/components/VideoLayouts/RoleProminence.tsx": {
|
|
7446
|
-
"bytes":
|
|
7567
|
+
"bytes": 1904,
|
|
7447
7568
|
"imports": [
|
|
7448
7569
|
{
|
|
7449
7570
|
"path": "react",
|
|
@@ -7550,7 +7671,7 @@
|
|
|
7550
7671
|
"format": "esm"
|
|
7551
7672
|
},
|
|
7552
7673
|
"src/Prebuilt/components/ScreenshareTile.jsx": {
|
|
7553
|
-
"bytes":
|
|
7674
|
+
"bytes": 3494,
|
|
7554
7675
|
"imports": [
|
|
7555
7676
|
{
|
|
7556
7677
|
"path": "react",
|
|
@@ -7626,18 +7747,28 @@
|
|
|
7626
7747
|
"format": "esm"
|
|
7627
7748
|
},
|
|
7628
7749
|
"src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx": {
|
|
7629
|
-
"bytes":
|
|
7750
|
+
"bytes": 2131,
|
|
7630
7751
|
"imports": [
|
|
7631
7752
|
{
|
|
7632
7753
|
"path": "react",
|
|
7633
7754
|
"kind": "import-statement",
|
|
7634
7755
|
"external": true
|
|
7635
7756
|
},
|
|
7757
|
+
{
|
|
7758
|
+
"path": "react-use",
|
|
7759
|
+
"kind": "import-statement",
|
|
7760
|
+
"external": true
|
|
7761
|
+
},
|
|
7636
7762
|
{
|
|
7637
7763
|
"path": "@100mslive/react-sdk",
|
|
7638
7764
|
"kind": "import-statement",
|
|
7639
7765
|
"external": true
|
|
7640
7766
|
},
|
|
7767
|
+
{
|
|
7768
|
+
"path": "src/Theme/index.tsx",
|
|
7769
|
+
"kind": "import-statement",
|
|
7770
|
+
"original": "../../../Theme"
|
|
7771
|
+
},
|
|
7641
7772
|
{
|
|
7642
7773
|
"path": "src/Prebuilt/components/Pagination.tsx",
|
|
7643
7774
|
"kind": "import-statement",
|
|
@@ -7682,7 +7813,7 @@
|
|
|
7682
7813
|
"format": "esm"
|
|
7683
7814
|
},
|
|
7684
7815
|
"src/Prebuilt/common/PeersSorter.ts": {
|
|
7685
|
-
"bytes":
|
|
7816
|
+
"bytes": 2767,
|
|
7686
7817
|
"imports": [
|
|
7687
7818
|
{
|
|
7688
7819
|
"path": "@100mslive/react-sdk",
|
|
@@ -7698,7 +7829,7 @@
|
|
|
7698
7829
|
"format": "esm"
|
|
7699
7830
|
},
|
|
7700
7831
|
"src/Prebuilt/components/VideoLayouts/GridLayout.tsx": {
|
|
7701
|
-
"bytes":
|
|
7832
|
+
"bytes": 3819,
|
|
7702
7833
|
"imports": [
|
|
7703
7834
|
{
|
|
7704
7835
|
"path": "react",
|
|
@@ -7754,7 +7885,7 @@
|
|
|
7754
7885
|
"format": "esm"
|
|
7755
7886
|
},
|
|
7756
7887
|
"src/Prebuilt/layouts/EmbedView.jsx": {
|
|
7757
|
-
"bytes":
|
|
7888
|
+
"bytes": 3505,
|
|
7758
7889
|
"imports": [
|
|
7759
7890
|
{
|
|
7760
7891
|
"path": "react",
|
|
@@ -7886,7 +8017,7 @@
|
|
|
7886
8017
|
"format": "esm"
|
|
7887
8018
|
},
|
|
7888
8019
|
"src/Prebuilt/components/Chat/ChatBody.jsx": {
|
|
7889
|
-
"bytes":
|
|
8020
|
+
"bytes": 12870,
|
|
7890
8021
|
"imports": [
|
|
7891
8022
|
{
|
|
7892
8023
|
"path": "react",
|
|
@@ -7959,9 +8090,9 @@
|
|
|
7959
8090
|
"original": "../../images/empty-chat.svg"
|
|
7960
8091
|
},
|
|
7961
8092
|
{
|
|
7962
|
-
"path": "src/Prebuilt/
|
|
8093
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
|
7963
8094
|
"kind": "import-statement",
|
|
7964
|
-
"original": "
|
|
8095
|
+
"original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
|
7965
8096
|
},
|
|
7966
8097
|
{
|
|
7967
8098
|
"path": "src/Prebuilt/components/hooks/useSetPinnedMessage.js",
|
|
@@ -8008,7 +8139,7 @@
|
|
|
8008
8139
|
"format": "esm"
|
|
8009
8140
|
},
|
|
8010
8141
|
"src/Prebuilt/components/Chat/useEmojiPickerStyles.js": {
|
|
8011
|
-
"bytes":
|
|
8142
|
+
"bytes": 1022,
|
|
8012
8143
|
"imports": [
|
|
8013
8144
|
{
|
|
8014
8145
|
"path": "react",
|
|
@@ -8023,8 +8154,8 @@
|
|
|
8023
8154
|
],
|
|
8024
8155
|
"format": "esm"
|
|
8025
8156
|
},
|
|
8026
|
-
"src/Prebuilt/components/Chat/ChatFooter.
|
|
8027
|
-
"bytes":
|
|
8157
|
+
"src/Prebuilt/components/Chat/ChatFooter.tsx": {
|
|
8158
|
+
"bytes": 5859,
|
|
8028
8159
|
"imports": [
|
|
8029
8160
|
{
|
|
8030
8161
|
"path": "react",
|
|
@@ -8059,13 +8190,18 @@
|
|
|
8059
8190
|
{
|
|
8060
8191
|
"path": "src/index.ts",
|
|
8061
8192
|
"kind": "import-statement",
|
|
8062
|
-
"original": "
|
|
8193
|
+
"original": "../../.."
|
|
8063
8194
|
},
|
|
8064
8195
|
{
|
|
8065
8196
|
"path": "src/Prebuilt/components/Toast/ToastManager.js",
|
|
8066
8197
|
"kind": "import-statement",
|
|
8067
8198
|
"original": "../Toast/ToastManager"
|
|
8068
8199
|
},
|
|
8200
|
+
{
|
|
8201
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
|
8202
|
+
"kind": "import-statement",
|
|
8203
|
+
"original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
|
8204
|
+
},
|
|
8069
8205
|
{
|
|
8070
8206
|
"path": "src/Prebuilt/components/AppData/useChatState.js",
|
|
8071
8207
|
"kind": "import-statement",
|
|
@@ -8106,7 +8242,7 @@
|
|
|
8106
8242
|
"format": "esm"
|
|
8107
8243
|
},
|
|
8108
8244
|
"src/Prebuilt/components/Chat/Chat.jsx": {
|
|
8109
|
-
"bytes":
|
|
8245
|
+
"bytes": 6444,
|
|
8110
8246
|
"imports": [
|
|
8111
8247
|
{
|
|
8112
8248
|
"path": "react",
|
|
@@ -8129,62 +8265,128 @@
|
|
|
8129
8265
|
"external": true
|
|
8130
8266
|
},
|
|
8131
8267
|
{
|
|
8132
|
-
"path": "src/Button/index.tsx",
|
|
8268
|
+
"path": "src/Button/index.tsx",
|
|
8269
|
+
"kind": "import-statement",
|
|
8270
|
+
"original": "../../../Button"
|
|
8271
|
+
},
|
|
8272
|
+
{
|
|
8273
|
+
"path": "src/Layout/index.tsx",
|
|
8274
|
+
"kind": "import-statement",
|
|
8275
|
+
"original": "../../../Layout"
|
|
8276
|
+
},
|
|
8277
|
+
{
|
|
8278
|
+
"path": "src/Text/index.tsx",
|
|
8279
|
+
"kind": "import-statement",
|
|
8280
|
+
"original": "../../../Text"
|
|
8281
|
+
},
|
|
8282
|
+
{
|
|
8283
|
+
"path": "src/Theme/index.tsx",
|
|
8284
|
+
"kind": "import-statement",
|
|
8285
|
+
"original": "../../../Theme"
|
|
8286
|
+
},
|
|
8287
|
+
{
|
|
8288
|
+
"path": "src/Prebuilt/components/Chat/ChatBody.jsx",
|
|
8289
|
+
"kind": "import-statement",
|
|
8290
|
+
"original": "./ChatBody"
|
|
8291
|
+
},
|
|
8292
|
+
{
|
|
8293
|
+
"path": "src/Prebuilt/components/Chat/ChatFooter.tsx",
|
|
8294
|
+
"kind": "import-statement",
|
|
8295
|
+
"original": "./ChatFooter"
|
|
8296
|
+
},
|
|
8297
|
+
{
|
|
8298
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
|
8299
|
+
"kind": "import-statement",
|
|
8300
|
+
"original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
|
8301
|
+
},
|
|
8302
|
+
{
|
|
8303
|
+
"path": "src/Prebuilt/components/AppData/useUISettings.js",
|
|
8304
|
+
"kind": "import-statement",
|
|
8305
|
+
"original": "../AppData/useUISettings"
|
|
8306
|
+
},
|
|
8307
|
+
{
|
|
8308
|
+
"path": "src/Prebuilt/components/hooks/useSetPinnedMessage.js",
|
|
8309
|
+
"kind": "import-statement",
|
|
8310
|
+
"original": "../hooks/useSetPinnedMessage"
|
|
8311
|
+
},
|
|
8312
|
+
{
|
|
8313
|
+
"path": "src/Prebuilt/components/Chat/useUnreadCount.js",
|
|
8314
|
+
"kind": "import-statement",
|
|
8315
|
+
"original": "./useUnreadCount"
|
|
8316
|
+
},
|
|
8317
|
+
{
|
|
8318
|
+
"path": "src/Prebuilt/common/constants.js",
|
|
8319
|
+
"kind": "import-statement",
|
|
8320
|
+
"original": "../../common/constants"
|
|
8321
|
+
},
|
|
8322
|
+
{
|
|
8323
|
+
"path": "<define:process.env>",
|
|
8324
|
+
"kind": "import-statement",
|
|
8325
|
+
"external": true
|
|
8326
|
+
}
|
|
8327
|
+
],
|
|
8328
|
+
"format": "esm"
|
|
8329
|
+
},
|
|
8330
|
+
"src/Prebuilt/components/SidePaneTabs.tsx": {
|
|
8331
|
+
"bytes": 4312,
|
|
8332
|
+
"imports": [
|
|
8333
|
+
{
|
|
8334
|
+
"path": "react",
|
|
8133
8335
|
"kind": "import-statement",
|
|
8134
|
-
"
|
|
8336
|
+
"external": true
|
|
8135
8337
|
},
|
|
8136
8338
|
{
|
|
8137
|
-
"path": "
|
|
8339
|
+
"path": "@100mslive/types-prebuilt",
|
|
8138
8340
|
"kind": "import-statement",
|
|
8139
|
-
"
|
|
8341
|
+
"external": true
|
|
8140
8342
|
},
|
|
8141
8343
|
{
|
|
8142
|
-
"path": "
|
|
8344
|
+
"path": "@100mslive/react-sdk",
|
|
8143
8345
|
"kind": "import-statement",
|
|
8144
|
-
"
|
|
8346
|
+
"external": true
|
|
8145
8347
|
},
|
|
8146
8348
|
{
|
|
8147
|
-
"path": "
|
|
8349
|
+
"path": "@100mslive/react-icons",
|
|
8148
8350
|
"kind": "import-statement",
|
|
8149
|
-
"
|
|
8351
|
+
"external": true
|
|
8150
8352
|
},
|
|
8151
8353
|
{
|
|
8152
|
-
"path": "src/Prebuilt/components/Chat/
|
|
8354
|
+
"path": "src/Prebuilt/components/Chat/Chat.jsx",
|
|
8153
8355
|
"kind": "import-statement",
|
|
8154
|
-
"original": "./
|
|
8356
|
+
"original": "./Chat/Chat"
|
|
8155
8357
|
},
|
|
8156
8358
|
{
|
|
8157
|
-
"path": "src/Prebuilt/components/
|
|
8359
|
+
"path": "src/Prebuilt/components/Footer/ParticipantList.jsx",
|
|
8158
8360
|
"kind": "import-statement",
|
|
8159
|
-
"original": "./
|
|
8361
|
+
"original": "./Footer/ParticipantList"
|
|
8160
8362
|
},
|
|
8161
8363
|
{
|
|
8162
|
-
"path": "src/
|
|
8364
|
+
"path": "src/index.ts",
|
|
8163
8365
|
"kind": "import-statement",
|
|
8164
|
-
"original": "
|
|
8366
|
+
"original": "../.."
|
|
8165
8367
|
},
|
|
8166
8368
|
{
|
|
8167
|
-
"path": "src/Prebuilt/
|
|
8369
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
|
8168
8370
|
"kind": "import-statement",
|
|
8169
|
-
"original": "../
|
|
8371
|
+
"original": "../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
|
8170
8372
|
},
|
|
8171
8373
|
{
|
|
8172
|
-
"path": "src/Prebuilt/components/
|
|
8374
|
+
"path": "src/Prebuilt/components/AppData/useSidepane.js",
|
|
8173
8375
|
"kind": "import-statement",
|
|
8174
|
-
"original": "
|
|
8376
|
+
"original": "./AppData/useSidepane"
|
|
8175
8377
|
},
|
|
8176
8378
|
{
|
|
8177
|
-
"path": "src/Prebuilt/
|
|
8379
|
+
"path": "src/Prebuilt/common/constants.js",
|
|
8178
8380
|
"kind": "import-statement",
|
|
8179
|
-
"original": "
|
|
8381
|
+
"original": "../common/constants"
|
|
8180
8382
|
},
|
|
8181
8383
|
{
|
|
8182
|
-
"path": "
|
|
8384
|
+
"path": "<define:process.env>",
|
|
8183
8385
|
"kind": "import-statement",
|
|
8184
|
-
"
|
|
8386
|
+
"external": true
|
|
8185
8387
|
},
|
|
8186
8388
|
{
|
|
8187
|
-
"path": "<
|
|
8389
|
+
"path": "<runtime>",
|
|
8188
8390
|
"kind": "import-statement",
|
|
8189
8391
|
"external": true
|
|
8190
8392
|
}
|
|
@@ -8323,7 +8525,7 @@
|
|
|
8323
8525
|
"format": "esm"
|
|
8324
8526
|
},
|
|
8325
8527
|
"src/Prebuilt/layouts/SidePane.tsx": {
|
|
8326
|
-
"bytes":
|
|
8528
|
+
"bytes": 3691,
|
|
8327
8529
|
"imports": [
|
|
8328
8530
|
{
|
|
8329
8531
|
"path": "react",
|
|
@@ -8346,19 +8548,19 @@
|
|
|
8346
8548
|
"external": true
|
|
8347
8549
|
},
|
|
8348
8550
|
{
|
|
8349
|
-
"path": "src/Prebuilt/components/
|
|
8551
|
+
"path": "src/Prebuilt/components/SidePaneTabs.tsx",
|
|
8350
8552
|
"kind": "import-statement",
|
|
8351
|
-
"original": "../components/
|
|
8553
|
+
"original": "../components/SidePaneTabs"
|
|
8352
8554
|
},
|
|
8353
8555
|
{
|
|
8354
|
-
"path": "src/Prebuilt/components/
|
|
8556
|
+
"path": "src/Prebuilt/components/Streaming/StreamingLanding.jsx",
|
|
8355
8557
|
"kind": "import-statement",
|
|
8356
|
-
"original": "../components/
|
|
8558
|
+
"original": "../components/Streaming/StreamingLanding"
|
|
8357
8559
|
},
|
|
8358
8560
|
{
|
|
8359
|
-
"path": "
|
|
8561
|
+
"path": "../components/VideoLayouts/GridLayout",
|
|
8360
8562
|
"kind": "import-statement",
|
|
8361
|
-
"
|
|
8563
|
+
"external": true
|
|
8362
8564
|
},
|
|
8363
8565
|
{
|
|
8364
8566
|
"path": "src/Prebuilt/components/VideoTile.jsx",
|
|
@@ -8375,6 +8577,11 @@
|
|
|
8375
8577
|
"kind": "import-statement",
|
|
8376
8578
|
"original": "../../Theme"
|
|
8377
8579
|
},
|
|
8580
|
+
{
|
|
8581
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
|
8582
|
+
"kind": "import-statement",
|
|
8583
|
+
"original": "../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
|
8584
|
+
},
|
|
8378
8585
|
{
|
|
8379
8586
|
"path": "src/Prebuilt/common/constants.js",
|
|
8380
8587
|
"kind": "import-statement",
|
|
@@ -8384,6 +8591,11 @@
|
|
|
8384
8591
|
"path": "<define:process.env>",
|
|
8385
8592
|
"kind": "import-statement",
|
|
8386
8593
|
"external": true
|
|
8594
|
+
},
|
|
8595
|
+
{
|
|
8596
|
+
"path": "<runtime>",
|
|
8597
|
+
"kind": "import-statement",
|
|
8598
|
+
"external": true
|
|
8387
8599
|
}
|
|
8388
8600
|
],
|
|
8389
8601
|
"format": "esm"
|
|
@@ -8456,7 +8668,7 @@
|
|
|
8456
8668
|
"format": "esm"
|
|
8457
8669
|
},
|
|
8458
8670
|
"src/Prebuilt/components/HMSVideo/Controls.jsx": {
|
|
8459
|
-
"bytes":
|
|
8671
|
+
"bytes": 463,
|
|
8460
8672
|
"imports": [
|
|
8461
8673
|
{
|
|
8462
8674
|
"path": "src/index.ts",
|
|
@@ -8472,7 +8684,7 @@
|
|
|
8472
8684
|
"format": "esm"
|
|
8473
8685
|
},
|
|
8474
8686
|
"src/Prebuilt/components/HMSVideo/HMSVideo.jsx": {
|
|
8475
|
-
"bytes":
|
|
8687
|
+
"bytes": 415,
|
|
8476
8688
|
"imports": [
|
|
8477
8689
|
{
|
|
8478
8690
|
"path": "react",
|
|
@@ -8488,6 +8700,11 @@
|
|
|
8488
8700
|
"path": "<define:process.env>",
|
|
8489
8701
|
"kind": "import-statement",
|
|
8490
8702
|
"external": true
|
|
8703
|
+
},
|
|
8704
|
+
{
|
|
8705
|
+
"path": "<runtime>",
|
|
8706
|
+
"kind": "import-statement",
|
|
8707
|
+
"external": true
|
|
8491
8708
|
}
|
|
8492
8709
|
],
|
|
8493
8710
|
"format": "esm"
|
|
@@ -8530,7 +8747,7 @@
|
|
|
8530
8747
|
"format": "esm"
|
|
8531
8748
|
},
|
|
8532
8749
|
"src/Prebuilt/components/HMSVideo/VideoProgress.jsx": {
|
|
8533
|
-
"bytes":
|
|
8750
|
+
"bytes": 2352,
|
|
8534
8751
|
"imports": [
|
|
8535
8752
|
{
|
|
8536
8753
|
"path": "react",
|
|
@@ -8701,7 +8918,7 @@
|
|
|
8701
8918
|
"format": "esm"
|
|
8702
8919
|
},
|
|
8703
8920
|
"src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx": {
|
|
8704
|
-
"bytes":
|
|
8921
|
+
"bytes": 4183,
|
|
8705
8922
|
"imports": [
|
|
8706
8923
|
{
|
|
8707
8924
|
"path": "react",
|
|
@@ -8727,7 +8944,7 @@
|
|
|
8727
8944
|
"format": "esm"
|
|
8728
8945
|
},
|
|
8729
8946
|
"src/Prebuilt/layouts/HLSView.jsx": {
|
|
8730
|
-
"bytes":
|
|
8947
|
+
"bytes": 14271,
|
|
8731
8948
|
"imports": [
|
|
8732
8949
|
{
|
|
8733
8950
|
"path": "react",
|
|
@@ -8838,18 +9055,13 @@
|
|
|
8838
9055
|
"format": "esm"
|
|
8839
9056
|
},
|
|
8840
9057
|
"src/Prebuilt/layouts/VideoStreamingSection.tsx": {
|
|
8841
|
-
"bytes":
|
|
9058
|
+
"bytes": 3145,
|
|
8842
9059
|
"imports": [
|
|
8843
9060
|
{
|
|
8844
9061
|
"path": "react",
|
|
8845
9062
|
"kind": "import-statement",
|
|
8846
9063
|
"external": true
|
|
8847
9064
|
},
|
|
8848
|
-
{
|
|
8849
|
-
"path": "@100mslive/hms-video",
|
|
8850
|
-
"kind": "import-statement",
|
|
8851
|
-
"external": true
|
|
8852
|
-
},
|
|
8853
9065
|
{
|
|
8854
9066
|
"path": "@100mslive/types-prebuilt",
|
|
8855
9067
|
"kind": "import-statement",
|
|
@@ -8900,11 +9112,6 @@
|
|
|
8900
9112
|
"kind": "import-statement",
|
|
8901
9113
|
"original": "../components/AppData/useUISettings"
|
|
8902
9114
|
},
|
|
8903
|
-
{
|
|
8904
|
-
"path": "src/Prebuilt/common/hooks.js",
|
|
8905
|
-
"kind": "import-statement",
|
|
8906
|
-
"original": "../common/hooks"
|
|
8907
|
-
},
|
|
8908
9115
|
{
|
|
8909
9116
|
"path": "src/Prebuilt/common/constants.js",
|
|
8910
9117
|
"kind": "import-statement",
|
|
@@ -8928,8 +9135,8 @@
|
|
|
8928
9135
|
],
|
|
8929
9136
|
"format": "esm"
|
|
8930
9137
|
},
|
|
8931
|
-
"src/Prebuilt/components/RoleChangeRequestModal.
|
|
8932
|
-
"bytes":
|
|
9138
|
+
"src/Prebuilt/components/RoleChangeRequestModal.tsx": {
|
|
9139
|
+
"bytes": 3702,
|
|
8933
9140
|
"imports": [
|
|
8934
9141
|
{
|
|
8935
9142
|
"path": "react",
|
|
@@ -8942,19 +9149,14 @@
|
|
|
8942
9149
|
"external": true
|
|
8943
9150
|
},
|
|
8944
9151
|
{
|
|
8945
|
-
"path": "src/Prebuilt/components/Preview/PreviewJoin.
|
|
9152
|
+
"path": "src/Prebuilt/components/Preview/PreviewJoin.tsx",
|
|
8946
9153
|
"kind": "import-statement",
|
|
8947
9154
|
"original": "./Preview/PreviewJoin"
|
|
8948
9155
|
},
|
|
8949
9156
|
{
|
|
8950
9157
|
"path": "src/index.ts",
|
|
8951
9158
|
"kind": "import-statement",
|
|
8952
|
-
"original": "
|
|
8953
|
-
},
|
|
8954
|
-
{
|
|
8955
|
-
"path": "src/Prebuilt/components/AppData/useUISettings.js",
|
|
8956
|
-
"kind": "import-statement",
|
|
8957
|
-
"original": "./AppData/useUISettings"
|
|
9159
|
+
"original": "../.."
|
|
8958
9160
|
},
|
|
8959
9161
|
{
|
|
8960
9162
|
"path": "src/Prebuilt/components/hooks/useMetadata.jsx",
|
|
@@ -8980,7 +9182,7 @@
|
|
|
8980
9182
|
"format": "esm"
|
|
8981
9183
|
},
|
|
8982
9184
|
"src/Prebuilt/components/conference.jsx": {
|
|
8983
|
-
"bytes":
|
|
9185
|
+
"bytes": 6434,
|
|
8984
9186
|
"imports": [
|
|
8985
9187
|
{
|
|
8986
9188
|
"path": "react",
|
|
@@ -9048,7 +9250,7 @@
|
|
|
9048
9250
|
"original": "./Header"
|
|
9049
9251
|
},
|
|
9050
9252
|
{
|
|
9051
|
-
"path": "src/Prebuilt/components/RoleChangeRequestModal.
|
|
9253
|
+
"path": "src/Prebuilt/components/RoleChangeRequestModal.tsx",
|
|
9052
9254
|
"kind": "import-statement",
|
|
9053
9255
|
"original": "./RoleChangeRequestModal"
|
|
9054
9256
|
},
|
|
@@ -9076,7 +9278,7 @@
|
|
|
9076
9278
|
"format": "esm"
|
|
9077
9279
|
},
|
|
9078
9280
|
"src/Prebuilt/App.tsx": {
|
|
9079
|
-
"bytes":
|
|
9281
|
+
"bytes": 11824,
|
|
9080
9282
|
"imports": [
|
|
9081
9283
|
{
|
|
9082
9284
|
"path": "react",
|
|
@@ -9108,11 +9310,6 @@
|
|
|
9108
9310
|
"kind": "import-statement",
|
|
9109
9311
|
"original": "./components/AppData/AppData"
|
|
9110
9312
|
},
|
|
9111
|
-
{
|
|
9112
|
-
"path": "src/Prebuilt/components/AudioLevel/BeamSpeakerLabelsLogging.jsx",
|
|
9113
|
-
"kind": "import-statement",
|
|
9114
|
-
"original": "./components/AudioLevel/BeamSpeakerLabelsLogging"
|
|
9115
|
-
},
|
|
9116
9313
|
{
|
|
9117
9314
|
"path": "src/Prebuilt/components/AuthToken.jsx",
|
|
9118
9315
|
"kind": "import-statement",
|
|
@@ -9149,7 +9346,7 @@
|
|
|
9149
9346
|
"original": "./components/PostLeave"
|
|
9150
9347
|
},
|
|
9151
9348
|
{
|
|
9152
|
-
"path": "src/Prebuilt/components/Preview/PreviewContainer.
|
|
9349
|
+
"path": "src/Prebuilt/components/Preview/PreviewContainer.tsx",
|
|
9153
9350
|
"kind": "import-statement",
|
|
9154
9351
|
"original": "./components/Preview/PreviewContainer"
|
|
9155
9352
|
},
|
|
@@ -9188,6 +9385,16 @@
|
|
|
9188
9385
|
"kind": "import-statement",
|
|
9189
9386
|
"original": "./plugins/RemoteStopScreenshare"
|
|
9190
9387
|
},
|
|
9388
|
+
{
|
|
9389
|
+
"path": "src/Prebuilt/components/AppData/useUISettings.js",
|
|
9390
|
+
"kind": "import-statement",
|
|
9391
|
+
"original": "./components/AppData/useUISettings"
|
|
9392
|
+
},
|
|
9393
|
+
{
|
|
9394
|
+
"path": "src/Prebuilt/components/hooks/useAutoStartStreaming.tsx",
|
|
9395
|
+
"kind": "import-statement",
|
|
9396
|
+
"original": "./components/hooks/useAutoStartStreaming"
|
|
9397
|
+
},
|
|
9191
9398
|
{
|
|
9192
9399
|
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
|
9193
9400
|
"kind": "import-statement",
|
|
@@ -9465,11 +9672,11 @@
|
|
|
9465
9672
|
"dist/index.js": {
|
|
9466
9673
|
"imports": [
|
|
9467
9674
|
{
|
|
9468
|
-
"path": "dist/chunk-
|
|
9675
|
+
"path": "dist/chunk-WVGGQZK4.js",
|
|
9469
9676
|
"kind": "import-statement"
|
|
9470
9677
|
},
|
|
9471
9678
|
{
|
|
9472
|
-
"path": "dist/chunk-
|
|
9679
|
+
"path": "dist/chunk-KBVIZGYW.js",
|
|
9473
9680
|
"kind": "import-statement"
|
|
9474
9681
|
}
|
|
9475
9682
|
],
|
|
@@ -9538,20 +9745,20 @@
|
|
|
9538
9745
|
"inputs": {},
|
|
9539
9746
|
"bytes": 1702
|
|
9540
9747
|
},
|
|
9541
|
-
"dist/VirtualBackground-
|
|
9748
|
+
"dist/VirtualBackground-37FXUPYO.js.map": {
|
|
9542
9749
|
"imports": [],
|
|
9543
9750
|
"exports": [],
|
|
9544
9751
|
"inputs": {},
|
|
9545
|
-
"bytes":
|
|
9752
|
+
"bytes": 9170
|
|
9546
9753
|
},
|
|
9547
|
-
"dist/VirtualBackground-
|
|
9754
|
+
"dist/VirtualBackground-37FXUPYO.js": {
|
|
9548
9755
|
"imports": [
|
|
9549
9756
|
{
|
|
9550
|
-
"path": "dist/chunk-
|
|
9757
|
+
"path": "dist/chunk-ZKE2N5LH.js",
|
|
9551
9758
|
"kind": "import-statement"
|
|
9552
9759
|
},
|
|
9553
9760
|
{
|
|
9554
|
-
"path": "dist/chunk-
|
|
9761
|
+
"path": "dist/chunk-KBVIZGYW.js",
|
|
9555
9762
|
"kind": "import-statement"
|
|
9556
9763
|
},
|
|
9557
9764
|
{
|
|
@@ -9592,28 +9799,28 @@
|
|
|
9592
9799
|
"entryPoint": "src/Prebuilt/plugins/VirtualBackground/VirtualBackground.jsx",
|
|
9593
9800
|
"inputs": {
|
|
9594
9801
|
"src/Prebuilt/plugins/VirtualBackground/VirtualBackground.jsx": {
|
|
9595
|
-
"bytesInOutput":
|
|
9802
|
+
"bytesInOutput": 3744
|
|
9596
9803
|
},
|
|
9597
9804
|
"src/Prebuilt/plugins/VirtualBackground/vbutils.js": {
|
|
9598
9805
|
"bytesInOutput": 1913
|
|
9599
9806
|
}
|
|
9600
9807
|
},
|
|
9601
|
-
"bytes":
|
|
9808
|
+
"bytes": 6113
|
|
9602
9809
|
},
|
|
9603
|
-
"dist/HLSView-
|
|
9810
|
+
"dist/HLSView-QMU5JK7U.js.map": {
|
|
9604
9811
|
"imports": [],
|
|
9605
9812
|
"exports": [],
|
|
9606
9813
|
"inputs": {},
|
|
9607
|
-
"bytes":
|
|
9814
|
+
"bytes": 51606
|
|
9608
9815
|
},
|
|
9609
|
-
"dist/HLSView-
|
|
9816
|
+
"dist/HLSView-QMU5JK7U.js": {
|
|
9610
9817
|
"imports": [
|
|
9611
9818
|
{
|
|
9612
|
-
"path": "dist/chunk-
|
|
9819
|
+
"path": "dist/chunk-WVGGQZK4.js",
|
|
9613
9820
|
"kind": "import-statement"
|
|
9614
9821
|
},
|
|
9615
9822
|
{
|
|
9616
|
-
"path": "dist/chunk-
|
|
9823
|
+
"path": "dist/chunk-KBVIZGYW.js",
|
|
9617
9824
|
"kind": "import-statement"
|
|
9618
9825
|
},
|
|
9619
9826
|
{
|
|
@@ -9723,22 +9930,22 @@
|
|
|
9723
9930
|
"entryPoint": "src/Prebuilt/layouts/HLSView.jsx",
|
|
9724
9931
|
"inputs": {
|
|
9725
9932
|
"src/Prebuilt/layouts/HLSView.jsx": {
|
|
9726
|
-
"bytesInOutput":
|
|
9933
|
+
"bytesInOutput": 14036
|
|
9727
9934
|
},
|
|
9728
9935
|
"src/Prebuilt/components/HlsStatsOverlay.jsx": {
|
|
9729
9936
|
"bytesInOutput": 3494
|
|
9730
9937
|
},
|
|
9731
9938
|
"src/Prebuilt/components/HMSVideo/Controls.jsx": {
|
|
9732
|
-
"bytesInOutput":
|
|
9939
|
+
"bytesInOutput": 389
|
|
9733
9940
|
},
|
|
9734
9941
|
"src/Prebuilt/components/HMSVideo/HMSVideo.jsx": {
|
|
9735
|
-
"bytesInOutput":
|
|
9942
|
+
"bytesInOutput": 494
|
|
9736
9943
|
},
|
|
9737
9944
|
"src/Prebuilt/components/HMSVideo/PlayButton.jsx": {
|
|
9738
9945
|
"bytesInOutput": 507
|
|
9739
9946
|
},
|
|
9740
9947
|
"src/Prebuilt/components/HMSVideo/VideoProgress.jsx": {
|
|
9741
|
-
"bytesInOutput":
|
|
9948
|
+
"bytesInOutput": 2512
|
|
9742
9949
|
},
|
|
9743
9950
|
"src/Prebuilt/components/HMSVideo/HMSVIdeoUtils.js": {
|
|
9744
9951
|
"bytesInOutput": 698
|
|
@@ -9759,29 +9966,29 @@
|
|
|
9759
9966
|
"bytesInOutput": 875
|
|
9760
9967
|
},
|
|
9761
9968
|
"src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx": {
|
|
9762
|
-
"bytesInOutput":
|
|
9969
|
+
"bytesInOutput": 3945
|
|
9763
9970
|
}
|
|
9764
9971
|
},
|
|
9765
|
-
"bytes":
|
|
9972
|
+
"bytes": 31959
|
|
9766
9973
|
},
|
|
9767
|
-
"dist/conference-
|
|
9974
|
+
"dist/conference-FJJQ4TXX.js.map": {
|
|
9768
9975
|
"imports": [],
|
|
9769
9976
|
"exports": [],
|
|
9770
9977
|
"inputs": {},
|
|
9771
|
-
"bytes":
|
|
9978
|
+
"bytes": 398636
|
|
9772
9979
|
},
|
|
9773
|
-
"dist/conference-
|
|
9980
|
+
"dist/conference-FJJQ4TXX.js": {
|
|
9774
9981
|
"imports": [
|
|
9775
9982
|
{
|
|
9776
|
-
"path": "dist/chunk-
|
|
9983
|
+
"path": "dist/chunk-ZKE2N5LH.js",
|
|
9777
9984
|
"kind": "import-statement"
|
|
9778
9985
|
},
|
|
9779
9986
|
{
|
|
9780
|
-
"path": "dist/chunk-
|
|
9987
|
+
"path": "dist/chunk-WVGGQZK4.js",
|
|
9781
9988
|
"kind": "import-statement"
|
|
9782
9989
|
},
|
|
9783
9990
|
{
|
|
9784
|
-
"path": "dist/chunk-
|
|
9991
|
+
"path": "dist/chunk-KBVIZGYW.js",
|
|
9785
9992
|
"kind": "import-statement"
|
|
9786
9993
|
},
|
|
9787
9994
|
{
|
|
@@ -9814,6 +10021,11 @@
|
|
|
9814
10021
|
"kind": "import-statement",
|
|
9815
10022
|
"external": true
|
|
9816
10023
|
},
|
|
10024
|
+
{
|
|
10025
|
+
"path": "@100mslive/types-prebuilt/elements/chat",
|
|
10026
|
+
"kind": "import-statement",
|
|
10027
|
+
"external": true
|
|
10028
|
+
},
|
|
9817
10029
|
{
|
|
9818
10030
|
"path": "react",
|
|
9819
10031
|
"kind": "import-statement",
|
|
@@ -9854,11 +10066,6 @@
|
|
|
9854
10066
|
"kind": "import-statement",
|
|
9855
10067
|
"external": true
|
|
9856
10068
|
},
|
|
9857
|
-
{
|
|
9858
|
-
"path": "react-router-dom",
|
|
9859
|
-
"kind": "import-statement",
|
|
9860
|
-
"external": true
|
|
9861
|
-
},
|
|
9862
10069
|
{
|
|
9863
10070
|
"path": "react-use",
|
|
9864
10071
|
"kind": "import-statement",
|
|
@@ -9869,11 +10076,6 @@
|
|
|
9869
10076
|
"kind": "import-statement",
|
|
9870
10077
|
"external": true
|
|
9871
10078
|
},
|
|
9872
|
-
{
|
|
9873
|
-
"path": "worker-timers",
|
|
9874
|
-
"kind": "import-statement",
|
|
9875
|
-
"external": true
|
|
9876
|
-
},
|
|
9877
10079
|
{
|
|
9878
10080
|
"path": "react",
|
|
9879
10081
|
"kind": "import-statement",
|
|
@@ -10004,21 +10206,6 @@
|
|
|
10004
10206
|
"kind": "import-statement",
|
|
10005
10207
|
"external": true
|
|
10006
10208
|
},
|
|
10007
|
-
{
|
|
10008
|
-
"path": "@100mslive/types-prebuilt/elements/join_form",
|
|
10009
|
-
"kind": "import-statement",
|
|
10010
|
-
"external": true
|
|
10011
|
-
},
|
|
10012
|
-
{
|
|
10013
|
-
"path": "@100mslive/react-sdk",
|
|
10014
|
-
"kind": "import-statement",
|
|
10015
|
-
"external": true
|
|
10016
|
-
},
|
|
10017
|
-
{
|
|
10018
|
-
"path": "react",
|
|
10019
|
-
"kind": "import-statement",
|
|
10020
|
-
"external": true
|
|
10021
|
-
},
|
|
10022
10209
|
{
|
|
10023
10210
|
"path": "@100mslive/react-sdk",
|
|
10024
10211
|
"kind": "import-statement",
|
|
@@ -10275,12 +10462,12 @@
|
|
|
10275
10462
|
"external": true
|
|
10276
10463
|
},
|
|
10277
10464
|
{
|
|
10278
|
-
"path": "
|
|
10465
|
+
"path": "react-use",
|
|
10279
10466
|
"kind": "import-statement",
|
|
10280
10467
|
"external": true
|
|
10281
10468
|
},
|
|
10282
10469
|
{
|
|
10283
|
-
"path": "
|
|
10470
|
+
"path": "react-window",
|
|
10284
10471
|
"kind": "import-statement",
|
|
10285
10472
|
"external": true
|
|
10286
10473
|
},
|
|
@@ -10290,15 +10477,19 @@
|
|
|
10290
10477
|
"external": true
|
|
10291
10478
|
},
|
|
10292
10479
|
{
|
|
10293
|
-
"path": "react-
|
|
10480
|
+
"path": "@100mslive/react-sdk",
|
|
10294
10481
|
"kind": "import-statement",
|
|
10295
10482
|
"external": true
|
|
10296
10483
|
},
|
|
10297
10484
|
{
|
|
10298
|
-
"path": "react-
|
|
10485
|
+
"path": "@100mslive/react-icons",
|
|
10299
10486
|
"kind": "import-statement",
|
|
10300
10487
|
"external": true
|
|
10301
10488
|
},
|
|
10489
|
+
{
|
|
10490
|
+
"path": "dist/VirtualBackground-37FXUPYO.js",
|
|
10491
|
+
"kind": "dynamic-import"
|
|
10492
|
+
},
|
|
10302
10493
|
{
|
|
10303
10494
|
"path": "react",
|
|
10304
10495
|
"kind": "import-statement",
|
|
@@ -10375,12 +10566,12 @@
|
|
|
10375
10566
|
"external": true
|
|
10376
10567
|
},
|
|
10377
10568
|
{
|
|
10378
|
-
"path": "
|
|
10569
|
+
"path": "react",
|
|
10379
10570
|
"kind": "import-statement",
|
|
10380
10571
|
"external": true
|
|
10381
10572
|
},
|
|
10382
10573
|
{
|
|
10383
|
-
"path": "react",
|
|
10574
|
+
"path": "@100mslive/react-icons",
|
|
10384
10575
|
"kind": "import-statement",
|
|
10385
10576
|
"external": true
|
|
10386
10577
|
},
|
|
@@ -10439,6 +10630,11 @@
|
|
|
10439
10630
|
"kind": "import-statement",
|
|
10440
10631
|
"external": true
|
|
10441
10632
|
},
|
|
10633
|
+
{
|
|
10634
|
+
"path": "react-use",
|
|
10635
|
+
"kind": "import-statement",
|
|
10636
|
+
"external": true
|
|
10637
|
+
},
|
|
10442
10638
|
{
|
|
10443
10639
|
"path": "@100mslive/react-sdk",
|
|
10444
10640
|
"kind": "import-statement",
|
|
@@ -10529,6 +10725,21 @@
|
|
|
10529
10725
|
"kind": "import-statement",
|
|
10530
10726
|
"external": true
|
|
10531
10727
|
},
|
|
10728
|
+
{
|
|
10729
|
+
"path": "@100mslive/react-sdk",
|
|
10730
|
+
"kind": "import-statement",
|
|
10731
|
+
"external": true
|
|
10732
|
+
},
|
|
10733
|
+
{
|
|
10734
|
+
"path": "@100mslive/react-icons",
|
|
10735
|
+
"kind": "import-statement",
|
|
10736
|
+
"external": true
|
|
10737
|
+
},
|
|
10738
|
+
{
|
|
10739
|
+
"path": "react",
|
|
10740
|
+
"kind": "import-statement",
|
|
10741
|
+
"external": true
|
|
10742
|
+
},
|
|
10532
10743
|
{
|
|
10533
10744
|
"path": "react-use",
|
|
10534
10745
|
"kind": "import-statement",
|
|
@@ -10680,7 +10891,7 @@
|
|
|
10680
10891
|
"external": true
|
|
10681
10892
|
},
|
|
10682
10893
|
{
|
|
10683
|
-
"path": "dist/HLSView-
|
|
10894
|
+
"path": "dist/HLSView-QMU5JK7U.js",
|
|
10684
10895
|
"kind": "dynamic-import"
|
|
10685
10896
|
},
|
|
10686
10897
|
{
|
|
@@ -10700,64 +10911,55 @@
|
|
|
10700
10911
|
"entryPoint": "src/Prebuilt/components/conference.jsx",
|
|
10701
10912
|
"inputs": {
|
|
10702
10913
|
"src/Prebuilt/components/conference.jsx": {
|
|
10703
|
-
"bytesInOutput":
|
|
10914
|
+
"bytesInOutput": 6205
|
|
10704
10915
|
},
|
|
10705
10916
|
"src/Prebuilt/components/Footer/Footer.tsx": {
|
|
10706
|
-
"bytesInOutput":
|
|
10917
|
+
"bytesInOutput": 3165
|
|
10707
10918
|
},
|
|
10708
10919
|
"src/Prebuilt/components/EmojiReaction.jsx": {
|
|
10709
|
-
"bytesInOutput":
|
|
10920
|
+
"bytesInOutput": 1987
|
|
10710
10921
|
},
|
|
10711
10922
|
"src/Prebuilt/components/Footer/EmojiCard.jsx": {
|
|
10712
10923
|
"bytesInOutput": 937
|
|
10713
10924
|
},
|
|
10714
10925
|
"src/Prebuilt/components/Leave/LeaveRoom.tsx": {
|
|
10715
|
-
"bytesInOutput":
|
|
10716
|
-
},
|
|
10717
|
-
"src/Prebuilt/components/PIP/PIPManager.js": {
|
|
10718
|
-
"bytesInOutput": 9129
|
|
10719
|
-
},
|
|
10720
|
-
"src/Prebuilt/components/PIP/pipUtils.js": {
|
|
10721
|
-
"bytesInOutput": 4262
|
|
10926
|
+
"bytesInOutput": 1922
|
|
10722
10927
|
},
|
|
10723
10928
|
"src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx": {
|
|
10724
|
-
"bytesInOutput":
|
|
10929
|
+
"bytesInOutput": 5635
|
|
10725
10930
|
},
|
|
10726
10931
|
"src/Prebuilt/components/Leave/EndSessionContent.tsx": {
|
|
10727
|
-
"bytesInOutput":
|
|
10932
|
+
"bytesInOutput": 1894
|
|
10728
10933
|
},
|
|
10729
10934
|
"src/Prebuilt/components/Leave/LeaveAtoms.tsx": {
|
|
10730
10935
|
"bytesInOutput": 464
|
|
10731
10936
|
},
|
|
10732
10937
|
"src/Prebuilt/components/Leave/LeaveCard.tsx": {
|
|
10733
|
-
"bytesInOutput":
|
|
10938
|
+
"bytesInOutput": 605
|
|
10734
10939
|
},
|
|
10735
10940
|
"src/Prebuilt/components/Leave/LeaveSessionContent.tsx": {
|
|
10736
|
-
"bytesInOutput":
|
|
10941
|
+
"bytesInOutput": 1704
|
|
10737
10942
|
},
|
|
10738
10943
|
"src/Prebuilt/components/Leave/MwebLeaveRoom.tsx": {
|
|
10739
|
-
"bytesInOutput":
|
|
10944
|
+
"bytesInOutput": 4341
|
|
10740
10945
|
},
|
|
10741
10946
|
"src/Prebuilt/components/MoreSettings/MoreSettings.tsx": {
|
|
10742
|
-
"bytesInOutput":
|
|
10947
|
+
"bytesInOutput": 365
|
|
10743
10948
|
},
|
|
10744
10949
|
"src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx": {
|
|
10745
|
-
"bytesInOutput":
|
|
10950
|
+
"bytesInOutput": 6505
|
|
10746
10951
|
},
|
|
10747
10952
|
"src/Prebuilt/components/PIP/index.jsx": {
|
|
10748
10953
|
"bytesInOutput": 151
|
|
10749
10954
|
},
|
|
10750
10955
|
"src/Prebuilt/components/PIP/PIPComponent.jsx": {
|
|
10751
|
-
"bytesInOutput":
|
|
10956
|
+
"bytesInOutput": 2241
|
|
10752
10957
|
},
|
|
10753
10958
|
"src/Prebuilt/components/PIP/SetupMediaSession.js": {
|
|
10754
10959
|
"bytesInOutput": 2442
|
|
10755
10960
|
},
|
|
10756
10961
|
"src/Prebuilt/components/RoleChangeModal.jsx": {
|
|
10757
|
-
"bytesInOutput":
|
|
10758
|
-
},
|
|
10759
|
-
"src/Prebuilt/common/hooks.js": {
|
|
10760
|
-
"bytesInOutput": 2182
|
|
10962
|
+
"bytesInOutput": 5978
|
|
10761
10963
|
},
|
|
10762
10964
|
"src/Prebuilt/components/Settings/StartRecording.jsx": {
|
|
10763
10965
|
"bytesInOutput": 4189
|
|
@@ -10772,7 +10974,7 @@
|
|
|
10772
10974
|
"bytesInOutput": 4416
|
|
10773
10975
|
},
|
|
10774
10976
|
"src/Prebuilt/components/StatsForNerds.jsx": {
|
|
10775
|
-
"bytesInOutput":
|
|
10977
|
+
"bytesInOutput": 9440
|
|
10776
10978
|
},
|
|
10777
10979
|
"src/Prebuilt/components/MoreSettings/BulkRoleChangeModal.jsx": {
|
|
10778
10980
|
"bytesInOutput": 4968
|
|
@@ -10789,11 +10991,11 @@
|
|
|
10789
10991
|
"src/Prebuilt/components/MoreSettings/MuteAllContent.jsx": {
|
|
10790
10992
|
"bytesInOutput": 2246
|
|
10791
10993
|
},
|
|
10792
|
-
"src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.
|
|
10793
|
-
"bytesInOutput":
|
|
10994
|
+
"src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx": {
|
|
10995
|
+
"bytesInOutput": 9223
|
|
10794
10996
|
},
|
|
10795
10997
|
"src/Prebuilt/components/RaiseHand.jsx": {
|
|
10796
|
-
"bytesInOutput":
|
|
10998
|
+
"bytesInOutput": 740
|
|
10797
10999
|
},
|
|
10798
11000
|
"src/Prebuilt/components/ScreenShareToggle.jsx": {
|
|
10799
11001
|
"bytesInOutput": 1404
|
|
@@ -10825,83 +11027,86 @@
|
|
|
10825
11027
|
"src/Prebuilt/components/pdfAnnotator/pdfInfo.jsx": {
|
|
10826
11028
|
"bytesInOutput": 796
|
|
10827
11029
|
},
|
|
10828
|
-
"src/Prebuilt/components/Footer/ChatToggle.
|
|
11030
|
+
"src/Prebuilt/components/Footer/ChatToggle.tsx": {
|
|
10829
11031
|
"bytesInOutput": 861
|
|
10830
11032
|
},
|
|
10831
11033
|
"src/Prebuilt/components/Footer/ParticipantList.jsx": {
|
|
10832
|
-
"bytesInOutput":
|
|
11034
|
+
"bytesInOutput": 10934
|
|
10833
11035
|
},
|
|
10834
|
-
"src/Prebuilt/components/
|
|
10835
|
-
"bytesInOutput":
|
|
11036
|
+
"src/Prebuilt/components/Footer/RoleAccordion.tsx": {
|
|
11037
|
+
"bytesInOutput": 2623
|
|
10836
11038
|
},
|
|
10837
|
-
"src/Prebuilt/components/Footer/
|
|
10838
|
-
"bytesInOutput":
|
|
11039
|
+
"src/Prebuilt/components/Footer/RoleOptions.tsx": {
|
|
11040
|
+
"bytesInOutput": 5744
|
|
10839
11041
|
},
|
|
10840
11042
|
"src/Prebuilt/components/Notifications/HLSFailureModal.jsx": {
|
|
10841
|
-
"bytesInOutput":
|
|
11043
|
+
"bytesInOutput": 2329
|
|
10842
11044
|
},
|
|
10843
11045
|
"src/Prebuilt/layouts/VideoStreamingSection.tsx": {
|
|
10844
|
-
"bytesInOutput":
|
|
11046
|
+
"bytesInOutput": 2255
|
|
10845
11047
|
},
|
|
10846
11048
|
"src/Prebuilt/components/VideoLayouts/GridLayout.tsx": {
|
|
10847
|
-
"bytesInOutput":
|
|
11049
|
+
"bytesInOutput": 3145
|
|
10848
11050
|
},
|
|
10849
11051
|
"src/Prebuilt/components/VideoLayouts/EqualProminence.tsx": {
|
|
10850
|
-
"bytesInOutput":
|
|
11052
|
+
"bytesInOutput": 1947
|
|
10851
11053
|
},
|
|
10852
11054
|
"src/Prebuilt/components/InsetTile.tsx": {
|
|
10853
|
-
"bytesInOutput":
|
|
11055
|
+
"bytesInOutput": 3965
|
|
11056
|
+
},
|
|
11057
|
+
"src/Prebuilt/components/hooks/useVideoTileLayout.ts": {
|
|
11058
|
+
"bytesInOutput": 406
|
|
10854
11059
|
},
|
|
10855
11060
|
"src/Prebuilt/components/Pagination.tsx": {
|
|
10856
|
-
"bytesInOutput":
|
|
11061
|
+
"bytesInOutput": 1661
|
|
10857
11062
|
},
|
|
10858
11063
|
"src/Prebuilt/components/VideoLayouts/Grid.tsx": {
|
|
10859
|
-
"bytesInOutput":
|
|
10860
|
-
},
|
|
10861
|
-
"src/Prebuilt/components/hooks/useVideoTileLayout.ts": {
|
|
10862
|
-
"bytesInOutput": 346
|
|
11064
|
+
"bytesInOutput": 1167
|
|
10863
11065
|
},
|
|
10864
11066
|
"src/Prebuilt/components/hooks/useTileLayout.tsx": {
|
|
10865
|
-
"bytesInOutput":
|
|
11067
|
+
"bytesInOutput": 3793
|
|
10866
11068
|
},
|
|
10867
11069
|
"src/Prebuilt/components/VideoLayouts/RoleProminence.tsx": {
|
|
10868
|
-
"bytesInOutput":
|
|
11070
|
+
"bytesInOutput": 1698
|
|
10869
11071
|
},
|
|
10870
11072
|
"src/Prebuilt/components/SecondaryTiles.tsx": {
|
|
10871
|
-
"bytesInOutput":
|
|
11073
|
+
"bytesInOutput": 1034
|
|
10872
11074
|
},
|
|
10873
11075
|
"src/Prebuilt/components/VideoLayouts/ProminenceLayout.tsx": {
|
|
10874
|
-
"bytesInOutput":
|
|
11076
|
+
"bytesInOutput": 1912
|
|
10875
11077
|
},
|
|
10876
11078
|
"src/Prebuilt/components/hooks/useRoleProminencePeers.tsx": {
|
|
10877
|
-
"bytesInOutput":
|
|
11079
|
+
"bytesInOutput": 932
|
|
10878
11080
|
},
|
|
10879
11081
|
"src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx": {
|
|
10880
|
-
"bytesInOutput":
|
|
11082
|
+
"bytesInOutput": 1827
|
|
10881
11083
|
},
|
|
10882
11084
|
"src/Prebuilt/components/ScreenshareTile.jsx": {
|
|
10883
|
-
"bytesInOutput":
|
|
11085
|
+
"bytesInOutput": 3527
|
|
10884
11086
|
},
|
|
10885
11087
|
"src/Prebuilt/components/ScreenshareDisplay.jsx": {
|
|
10886
11088
|
"bytesInOutput": 1191
|
|
10887
11089
|
},
|
|
10888
11090
|
"src/Prebuilt/common/PeersSorter.ts": {
|
|
10889
|
-
"bytesInOutput":
|
|
11091
|
+
"bytesInOutput": 2710
|
|
10890
11092
|
},
|
|
10891
11093
|
"src/Prebuilt/layouts/EmbedView.jsx": {
|
|
10892
|
-
"bytesInOutput":
|
|
11094
|
+
"bytesInOutput": 3224
|
|
10893
11095
|
},
|
|
10894
11096
|
"src/Prebuilt/layouts/PDFView.jsx": {
|
|
10895
|
-
"bytesInOutput":
|
|
11097
|
+
"bytesInOutput": 3127
|
|
10896
11098
|
},
|
|
10897
11099
|
"src/Prebuilt/layouts/SidePane.tsx": {
|
|
10898
|
-
"bytesInOutput":
|
|
11100
|
+
"bytesInOutput": 3238
|
|
11101
|
+
},
|
|
11102
|
+
"src/Prebuilt/components/SidePaneTabs.tsx": {
|
|
11103
|
+
"bytesInOutput": 4069
|
|
10899
11104
|
},
|
|
10900
11105
|
"src/Prebuilt/components/Chat/Chat.jsx": {
|
|
10901
|
-
"bytesInOutput":
|
|
11106
|
+
"bytesInOutput": 6792
|
|
10902
11107
|
},
|
|
10903
11108
|
"src/Prebuilt/components/Chat/ChatBody.jsx": {
|
|
10904
|
-
"bytesInOutput":
|
|
11109
|
+
"bytesInOutput": 12384
|
|
10905
11110
|
},
|
|
10906
11111
|
"src/Prebuilt/images/empty-chat.svg": {
|
|
10907
11112
|
"bytesInOutput": 2261
|
|
@@ -10909,14 +11114,14 @@
|
|
|
10909
11114
|
"src/Prebuilt/components/hooks/useSetPinnedMessage.js": {
|
|
10910
11115
|
"bytesInOutput": 1207
|
|
10911
11116
|
},
|
|
10912
|
-
"src/Prebuilt/components/Chat/ChatFooter.
|
|
10913
|
-
"bytesInOutput":
|
|
11117
|
+
"src/Prebuilt/components/Chat/ChatFooter.tsx": {
|
|
11118
|
+
"bytesInOutput": 5440
|
|
10914
11119
|
},
|
|
10915
11120
|
"src/Prebuilt/components/AppData/useChatState.js": {
|
|
10916
11121
|
"bytesInOutput": 639
|
|
10917
11122
|
},
|
|
10918
11123
|
"src/Prebuilt/components/Chat/useEmojiPickerStyles.js": {
|
|
10919
|
-
"bytesInOutput":
|
|
11124
|
+
"bytesInOutput": 1143
|
|
10920
11125
|
},
|
|
10921
11126
|
"src/Prebuilt/components/Chat/useUnreadCount.js": {
|
|
10922
11127
|
"bytesInOutput": 497
|
|
@@ -10933,22 +11138,22 @@
|
|
|
10933
11138
|
"src/Prebuilt/layouts/WaitingView.jsx": {
|
|
10934
11139
|
"bytesInOutput": 1380
|
|
10935
11140
|
},
|
|
10936
|
-
"src/Prebuilt/components/RoleChangeRequestModal.
|
|
10937
|
-
"bytesInOutput":
|
|
11141
|
+
"src/Prebuilt/components/RoleChangeRequestModal.tsx": {
|
|
11142
|
+
"bytesInOutput": 3918
|
|
10938
11143
|
}
|
|
10939
11144
|
},
|
|
10940
|
-
"bytes":
|
|
11145
|
+
"bytes": 301115
|
|
10941
11146
|
},
|
|
10942
|
-
"dist/chunk-
|
|
11147
|
+
"dist/chunk-ZKE2N5LH.js.map": {
|
|
10943
11148
|
"imports": [],
|
|
10944
11149
|
"exports": [],
|
|
10945
11150
|
"inputs": {},
|
|
10946
11151
|
"bytes": 2406
|
|
10947
11152
|
},
|
|
10948
|
-
"dist/chunk-
|
|
11153
|
+
"dist/chunk-ZKE2N5LH.js": {
|
|
10949
11154
|
"imports": [
|
|
10950
11155
|
{
|
|
10951
|
-
"path": "dist/chunk-
|
|
11156
|
+
"path": "dist/chunk-KBVIZGYW.js",
|
|
10952
11157
|
"kind": "import-statement"
|
|
10953
11158
|
},
|
|
10954
11159
|
{
|
|
@@ -10967,16 +11172,16 @@
|
|
|
10967
11172
|
},
|
|
10968
11173
|
"bytes": 1591
|
|
10969
11174
|
},
|
|
10970
|
-
"dist/chunk-
|
|
11175
|
+
"dist/chunk-WVGGQZK4.js.map": {
|
|
10971
11176
|
"imports": [],
|
|
10972
11177
|
"exports": [],
|
|
10973
11178
|
"inputs": {},
|
|
10974
|
-
"bytes":
|
|
11179
|
+
"bytes": 494844
|
|
10975
11180
|
},
|
|
10976
|
-
"dist/chunk-
|
|
11181
|
+
"dist/chunk-WVGGQZK4.js": {
|
|
10977
11182
|
"imports": [
|
|
10978
11183
|
{
|
|
10979
|
-
"path": "dist/chunk-
|
|
11184
|
+
"path": "dist/chunk-KBVIZGYW.js",
|
|
10980
11185
|
"kind": "import-statement"
|
|
10981
11186
|
},
|
|
10982
11187
|
{
|
|
@@ -11269,23 +11474,13 @@
|
|
|
11269
11474
|
"kind": "import-statement",
|
|
11270
11475
|
"external": true
|
|
11271
11476
|
},
|
|
11272
|
-
{
|
|
11273
|
-
"path": "@100mslive/react-sdk",
|
|
11274
|
-
"kind": "import-statement",
|
|
11275
|
-
"external": true
|
|
11276
|
-
},
|
|
11277
11477
|
{
|
|
11278
11478
|
"path": "react",
|
|
11279
11479
|
"kind": "import-statement",
|
|
11280
11480
|
"external": true
|
|
11281
11481
|
},
|
|
11282
11482
|
{
|
|
11283
|
-
"path": "@100mslive/react-
|
|
11284
|
-
"kind": "import-statement",
|
|
11285
|
-
"external": true
|
|
11286
|
-
},
|
|
11287
|
-
{
|
|
11288
|
-
"path": "react",
|
|
11483
|
+
"path": "@100mslive/react-icons",
|
|
11289
11484
|
"kind": "import-statement",
|
|
11290
11485
|
"external": true
|
|
11291
11486
|
},
|
|
@@ -11305,7 +11500,7 @@
|
|
|
11305
11500
|
"external": true
|
|
11306
11501
|
},
|
|
11307
11502
|
{
|
|
11308
|
-
"path": "
|
|
11503
|
+
"path": "react",
|
|
11309
11504
|
"kind": "import-statement",
|
|
11310
11505
|
"external": true
|
|
11311
11506
|
},
|
|
@@ -11315,7 +11510,7 @@
|
|
|
11315
11510
|
"external": true
|
|
11316
11511
|
},
|
|
11317
11512
|
{
|
|
11318
|
-
"path": "react",
|
|
11513
|
+
"path": "@100mslive/react-sdk",
|
|
11319
11514
|
"kind": "import-statement",
|
|
11320
11515
|
"external": true
|
|
11321
11516
|
},
|
|
@@ -11484,6 +11679,21 @@
|
|
|
11484
11679
|
"kind": "import-statement",
|
|
11485
11680
|
"external": true
|
|
11486
11681
|
},
|
|
11682
|
+
{
|
|
11683
|
+
"path": "worker-timers",
|
|
11684
|
+
"kind": "import-statement",
|
|
11685
|
+
"external": true
|
|
11686
|
+
},
|
|
11687
|
+
{
|
|
11688
|
+
"path": "react",
|
|
11689
|
+
"kind": "import-statement",
|
|
11690
|
+
"external": true
|
|
11691
|
+
},
|
|
11692
|
+
{
|
|
11693
|
+
"path": "react-router-dom",
|
|
11694
|
+
"kind": "import-statement",
|
|
11695
|
+
"external": true
|
|
11696
|
+
},
|
|
11487
11697
|
{
|
|
11488
11698
|
"path": "@100mslive/react-icons",
|
|
11489
11699
|
"kind": "import-statement",
|
|
@@ -11644,6 +11854,11 @@
|
|
|
11644
11854
|
"kind": "import-statement",
|
|
11645
11855
|
"external": true
|
|
11646
11856
|
},
|
|
11857
|
+
{
|
|
11858
|
+
"path": "react-use",
|
|
11859
|
+
"kind": "import-statement",
|
|
11860
|
+
"external": true
|
|
11861
|
+
},
|
|
11647
11862
|
{
|
|
11648
11863
|
"path": "@100mslive/react-sdk",
|
|
11649
11864
|
"kind": "import-statement",
|
|
@@ -11784,11 +11999,6 @@
|
|
|
11784
11999
|
"kind": "import-statement",
|
|
11785
12000
|
"external": true
|
|
11786
12001
|
},
|
|
11787
|
-
{
|
|
11788
|
-
"path": "react-use",
|
|
11789
|
-
"kind": "import-statement",
|
|
11790
|
-
"external": true
|
|
11791
|
-
},
|
|
11792
12002
|
{
|
|
11793
12003
|
"path": "@100mslive/react-sdk",
|
|
11794
12004
|
"kind": "import-statement",
|
|
@@ -11849,6 +12059,11 @@
|
|
|
11849
12059
|
"kind": "import-statement",
|
|
11850
12060
|
"external": true
|
|
11851
12061
|
},
|
|
12062
|
+
{
|
|
12063
|
+
"path": "react-use",
|
|
12064
|
+
"kind": "import-statement",
|
|
12065
|
+
"external": true
|
|
12066
|
+
},
|
|
11852
12067
|
{
|
|
11853
12068
|
"path": "@100mslive/react-sdk",
|
|
11854
12069
|
"kind": "import-statement",
|
|
@@ -11890,7 +12105,7 @@
|
|
|
11890
12105
|
"external": true
|
|
11891
12106
|
},
|
|
11892
12107
|
{
|
|
11893
|
-
"path": "dist/VirtualBackground-
|
|
12108
|
+
"path": "dist/VirtualBackground-37FXUPYO.js",
|
|
11894
12109
|
"kind": "dynamic-import"
|
|
11895
12110
|
},
|
|
11896
12111
|
{
|
|
@@ -11934,7 +12149,32 @@
|
|
|
11934
12149
|
"external": true
|
|
11935
12150
|
},
|
|
11936
12151
|
{
|
|
11937
|
-
"path": "
|
|
12152
|
+
"path": "react",
|
|
12153
|
+
"kind": "import-statement",
|
|
12154
|
+
"external": true
|
|
12155
|
+
},
|
|
12156
|
+
{
|
|
12157
|
+
"path": "@100mslive/react-sdk",
|
|
12158
|
+
"kind": "import-statement",
|
|
12159
|
+
"external": true
|
|
12160
|
+
},
|
|
12161
|
+
{
|
|
12162
|
+
"path": "react",
|
|
12163
|
+
"kind": "import-statement",
|
|
12164
|
+
"external": true
|
|
12165
|
+
},
|
|
12166
|
+
{
|
|
12167
|
+
"path": "@100mslive/types-prebuilt/elements/join_form",
|
|
12168
|
+
"kind": "import-statement",
|
|
12169
|
+
"external": true
|
|
12170
|
+
},
|
|
12171
|
+
{
|
|
12172
|
+
"path": "@100mslive/react-sdk",
|
|
12173
|
+
"kind": "import-statement",
|
|
12174
|
+
"external": true
|
|
12175
|
+
},
|
|
12176
|
+
{
|
|
12177
|
+
"path": "dist/conference-FJJQ4TXX.js",
|
|
11938
12178
|
"kind": "dynamic-import"
|
|
11939
12179
|
},
|
|
11940
12180
|
{
|
|
@@ -11974,6 +12214,7 @@
|
|
|
11974
12214
|
"Label",
|
|
11975
12215
|
"Link",
|
|
11976
12216
|
"PasswordInput",
|
|
12217
|
+
"PictureInPicture",
|
|
11977
12218
|
"Popover",
|
|
11978
12219
|
"PreviewControls",
|
|
11979
12220
|
"PreviewTile",
|
|
@@ -12013,6 +12254,7 @@
|
|
|
12013
12254
|
"VideoTile_default",
|
|
12014
12255
|
"getFormattedCount",
|
|
12015
12256
|
"getLeft",
|
|
12257
|
+
"getMetadata",
|
|
12016
12258
|
"getVideoTileLabel",
|
|
12017
12259
|
"isAndroid",
|
|
12018
12260
|
"isChrome",
|
|
@@ -12020,25 +12262,25 @@
|
|
|
12020
12262
|
"isIPadOS",
|
|
12021
12263
|
"isInternalRole",
|
|
12022
12264
|
"isMacOS",
|
|
12023
|
-
"isSafari",
|
|
12024
12265
|
"isScreenshareSupported",
|
|
12025
12266
|
"useAuthToken",
|
|
12026
12267
|
"useBorderAudioLevel",
|
|
12027
12268
|
"useDropdownList",
|
|
12028
12269
|
"useDropdownSelection",
|
|
12270
|
+
"useFilteredRoles",
|
|
12029
12271
|
"useHMSPrebuiltContext",
|
|
12030
|
-
"useIsHeadless",
|
|
12031
12272
|
"useIsSidepaneTypeOpen",
|
|
12032
12273
|
"useMyMetadata",
|
|
12033
12274
|
"usePDFAnnotator",
|
|
12275
|
+
"useParticipants",
|
|
12034
12276
|
"usePinnedTrack",
|
|
12035
|
-
"
|
|
12277
|
+
"useRedirectToLeave",
|
|
12036
12278
|
"useRoomLayoutConferencingScreen",
|
|
12037
|
-
"useRoomLayoutLeaveScreen",
|
|
12038
12279
|
"useRoomLayoutPreviewScreen",
|
|
12039
12280
|
"useSetAppDataByKey",
|
|
12040
12281
|
"useSetSubscribedChatSelector",
|
|
12041
12282
|
"useSetUiSettings",
|
|
12283
|
+
"useSidepaneReset",
|
|
12042
12284
|
"useSidepaneToggle",
|
|
12043
12285
|
"useTheme",
|
|
12044
12286
|
"useUISettings",
|
|
@@ -12108,7 +12350,7 @@
|
|
|
12108
12350
|
"bytesInOutput": 2574
|
|
12109
12351
|
},
|
|
12110
12352
|
"src/VideoTile/StyledVideoTile.tsx": {
|
|
12111
|
-
"bytesInOutput":
|
|
12353
|
+
"bytesInOutput": 2610
|
|
12112
12354
|
},
|
|
12113
12355
|
"src/VideoTile/index.tsx": {
|
|
12114
12356
|
"bytesInOutput": 0
|
|
@@ -12213,10 +12455,10 @@
|
|
|
12213
12455
|
"bytesInOutput": 860
|
|
12214
12456
|
},
|
|
12215
12457
|
"src/Prebuilt/App.tsx": {
|
|
12216
|
-
"bytesInOutput":
|
|
12458
|
+
"bytesInOutput": 10123
|
|
12217
12459
|
},
|
|
12218
12460
|
"src/Prebuilt/components/AppData/AppData.jsx": {
|
|
12219
|
-
"bytesInOutput":
|
|
12461
|
+
"bytesInOutput": 5447
|
|
12220
12462
|
},
|
|
12221
12463
|
"src/Prebuilt/components/init/initUtils.js": {
|
|
12222
12464
|
"bytesInOutput": 1693
|
|
@@ -12228,16 +12470,10 @@
|
|
|
12228
12470
|
"bytesInOutput": 1125
|
|
12229
12471
|
},
|
|
12230
12472
|
"src/Prebuilt/common/constants.js": {
|
|
12231
|
-
"bytesInOutput":
|
|
12473
|
+
"bytesInOutput": 2911
|
|
12232
12474
|
},
|
|
12233
12475
|
"src/Prebuilt/components/AppData/useUISettings.js": {
|
|
12234
|
-
"bytesInOutput":
|
|
12235
|
-
},
|
|
12236
|
-
"src/Prebuilt/components/AudioLevel/BeamSpeakerLabelsLogging.jsx": {
|
|
12237
|
-
"bytesInOutput": 427
|
|
12238
|
-
},
|
|
12239
|
-
"src/Prebuilt/services/FeatureFlags.jsx": {
|
|
12240
|
-
"bytesInOutput": 1532
|
|
12476
|
+
"bytesInOutput": 3966
|
|
12241
12477
|
},
|
|
12242
12478
|
"src/Prebuilt/components/AuthToken.jsx": {
|
|
12243
12479
|
"bytesInOutput": 3208
|
|
@@ -12252,28 +12488,31 @@
|
|
|
12252
12488
|
"bytesInOutput": 3272
|
|
12253
12489
|
},
|
|
12254
12490
|
"src/Prebuilt/components/FullPageProgress.jsx": {
|
|
12255
|
-
"bytesInOutput":
|
|
12491
|
+
"bytesInOutput": 543
|
|
12256
12492
|
},
|
|
12257
12493
|
"src/Prebuilt/components/init/Init.jsx": {
|
|
12258
12494
|
"bytesInOutput": 634
|
|
12259
12495
|
},
|
|
12496
|
+
"src/Prebuilt/services/FeatureFlags.jsx": {
|
|
12497
|
+
"bytesInOutput": 1396
|
|
12498
|
+
},
|
|
12260
12499
|
"src/Prebuilt/components/Input/KeyboardInputManager.js": {
|
|
12261
12500
|
"bytesInOutput": 4346
|
|
12262
12501
|
},
|
|
12263
12502
|
"src/Prebuilt/components/Notifications/Notifications.jsx": {
|
|
12264
|
-
"bytesInOutput":
|
|
12503
|
+
"bytesInOutput": 6254
|
|
12265
12504
|
},
|
|
12266
12505
|
"src/Prebuilt/provider/roomLayoutProvider/index.tsx": {
|
|
12267
12506
|
"bytesInOutput": 867
|
|
12268
12507
|
},
|
|
12269
12508
|
"src/Prebuilt/provider/roomLayoutProvider/hooks/useFetchRoomLayout.ts": {
|
|
12270
|
-
"bytesInOutput":
|
|
12509
|
+
"bytesInOutput": 2227
|
|
12271
12510
|
},
|
|
12272
12511
|
"src/Prebuilt/provider/roomLayoutProvider/constants/index.ts": {
|
|
12273
12512
|
"bytesInOutput": 1049
|
|
12274
12513
|
},
|
|
12275
12514
|
"src/Prebuilt/components/Toast/ToastConfig.jsx": {
|
|
12276
|
-
"bytesInOutput":
|
|
12515
|
+
"bytesInOutput": 6042
|
|
12277
12516
|
},
|
|
12278
12517
|
"src/Prebuilt/components/Toast/ToastManager.js": {
|
|
12279
12518
|
"bytesInOutput": 1001
|
|
@@ -12285,13 +12524,13 @@
|
|
|
12285
12524
|
"bytesInOutput": 1019
|
|
12286
12525
|
},
|
|
12287
12526
|
"src/Prebuilt/components/Notifications/InitErrorModal.jsx": {
|
|
12288
|
-
"bytesInOutput":
|
|
12527
|
+
"bytesInOutput": 1365
|
|
12289
12528
|
},
|
|
12290
12529
|
"src/Prebuilt/components/Notifications/PeerNotifications.jsx": {
|
|
12291
12530
|
"bytesInOutput": 1713
|
|
12292
12531
|
},
|
|
12293
12532
|
"src/Prebuilt/common/utils.js": {
|
|
12294
|
-
"bytesInOutput":
|
|
12533
|
+
"bytesInOutput": 942
|
|
12295
12534
|
},
|
|
12296
12535
|
"src/Prebuilt/components/Notifications/PermissionErrorModal.jsx": {
|
|
12297
12536
|
"bytesInOutput": 4316
|
|
@@ -12303,7 +12542,7 @@
|
|
|
12303
12542
|
"bytesInOutput": 11963
|
|
12304
12543
|
},
|
|
12305
12544
|
"src/Prebuilt/components/Notifications/ReconnectNotifications.jsx": {
|
|
12306
|
-
"bytesInOutput":
|
|
12545
|
+
"bytesInOutput": 2299
|
|
12307
12546
|
},
|
|
12308
12547
|
"src/Prebuilt/components/Notifications/TrackBulkUnmuteModal.jsx": {
|
|
12309
12548
|
"bytesInOutput": 1736
|
|
@@ -12314,20 +12553,32 @@
|
|
|
12314
12553
|
"src/Prebuilt/components/Notifications/TrackUnmuteModal.jsx": {
|
|
12315
12554
|
"bytesInOutput": 1759
|
|
12316
12555
|
},
|
|
12556
|
+
"src/Prebuilt/components/hooks/useRedirectToLeave.tsx": {
|
|
12557
|
+
"bytesInOutput": 933
|
|
12558
|
+
},
|
|
12559
|
+
"src/Prebuilt/components/PIP/PIPManager.js": {
|
|
12560
|
+
"bytesInOutput": 9135
|
|
12561
|
+
},
|
|
12562
|
+
"src/Prebuilt/components/PIP/pipUtils.js": {
|
|
12563
|
+
"bytesInOutput": 4262
|
|
12564
|
+
},
|
|
12565
|
+
"src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts": {
|
|
12566
|
+
"bytesInOutput": 1293
|
|
12567
|
+
},
|
|
12317
12568
|
"src/Prebuilt/components/Notifications/index.jsx": {
|
|
12318
12569
|
"bytesInOutput": 0
|
|
12319
12570
|
},
|
|
12320
12571
|
"src/Prebuilt/components/PostLeave.jsx": {
|
|
12321
|
-
"bytesInOutput":
|
|
12572
|
+
"bytesInOutput": 2585
|
|
12322
12573
|
},
|
|
12323
12574
|
"src/Prebuilt/components/Header/Header.tsx": {
|
|
12324
12575
|
"bytesInOutput": 1512
|
|
12325
12576
|
},
|
|
12326
12577
|
"src/Prebuilt/components/Header/HeaderComponents.jsx": {
|
|
12327
|
-
"bytesInOutput":
|
|
12578
|
+
"bytesInOutput": 1858
|
|
12328
12579
|
},
|
|
12329
|
-
"src/Prebuilt/components/Header/StreamActions.
|
|
12330
|
-
"bytesInOutput":
|
|
12580
|
+
"src/Prebuilt/components/Header/StreamActions.tsx": {
|
|
12581
|
+
"bytesInOutput": 8958
|
|
12331
12582
|
},
|
|
12332
12583
|
"src/Sheet/Sheet.tsx": {
|
|
12333
12584
|
"bytesInOutput": 2743
|
|
@@ -12339,46 +12590,43 @@
|
|
|
12339
12590
|
"bytesInOutput": 7870
|
|
12340
12591
|
},
|
|
12341
12592
|
"src/Prebuilt/plugins/whiteboard/useWhiteboardMetadata.js": {
|
|
12342
|
-
"bytesInOutput":
|
|
12593
|
+
"bytesInOutput": 1733
|
|
12343
12594
|
},
|
|
12344
12595
|
"src/Prebuilt/components/hooks/useMetadata.jsx": {
|
|
12345
|
-
"bytesInOutput":
|
|
12596
|
+
"bytesInOutput": 1734
|
|
12346
12597
|
},
|
|
12347
12598
|
"src/Prebuilt/components/hooks/usePlaylistMusic.js": {
|
|
12348
|
-
"bytesInOutput":
|
|
12599
|
+
"bytesInOutput": 1044
|
|
12349
12600
|
},
|
|
12350
12601
|
"src/Prebuilt/components/hooks/useScreenshareAudio.js": {
|
|
12351
12602
|
"bytesInOutput": 880
|
|
12352
12603
|
},
|
|
12353
12604
|
"src/Prebuilt/components/Header/common.jsx": {
|
|
12354
|
-
"bytesInOutput":
|
|
12605
|
+
"bytesInOutput": 5056
|
|
12355
12606
|
},
|
|
12356
12607
|
"src/Prebuilt/components/Header/index.tsx": {
|
|
12357
12608
|
"bytesInOutput": 0
|
|
12358
12609
|
},
|
|
12359
|
-
"src/Prebuilt/
|
|
12360
|
-
"bytesInOutput":
|
|
12361
|
-
},
|
|
12362
|
-
"src/Prebuilt/components/Preview/PreviewContainer.jsx": {
|
|
12363
|
-
"bytesInOutput": 1680
|
|
12610
|
+
"src/Prebuilt/components/Preview/PreviewContainer.tsx": {
|
|
12611
|
+
"bytesInOutput": 1769
|
|
12364
12612
|
},
|
|
12365
|
-
"src/Prebuilt/components/Preview/PreviewJoin.
|
|
12366
|
-
"bytesInOutput":
|
|
12613
|
+
"src/Prebuilt/components/Preview/PreviewJoin.tsx": {
|
|
12614
|
+
"bytesInOutput": 8863
|
|
12367
12615
|
},
|
|
12368
12616
|
"src/Prebuilt/components/AudioVideoToggle.jsx": {
|
|
12369
|
-
"bytesInOutput":
|
|
12617
|
+
"bytesInOutput": 5583
|
|
12370
12618
|
},
|
|
12371
12619
|
"src/Prebuilt/components/IconButtonWithOptions/IconButtonWithOptions.jsx": {
|
|
12372
|
-
"bytesInOutput":
|
|
12620
|
+
"bytesInOutput": 2838
|
|
12373
12621
|
},
|
|
12374
12622
|
"src/Prebuilt/components/Chip.jsx": {
|
|
12375
12623
|
"bytesInOutput": 594
|
|
12376
12624
|
},
|
|
12377
|
-
"src/Prebuilt/components/Connection/TileConnection.
|
|
12378
|
-
"bytesInOutput":
|
|
12625
|
+
"src/Prebuilt/components/Connection/TileConnection.tsx": {
|
|
12626
|
+
"bytesInOutput": 1455
|
|
12379
12627
|
},
|
|
12380
|
-
"src/Prebuilt/components/Connection/ConnectionIndicator.
|
|
12381
|
-
"bytesInOutput":
|
|
12628
|
+
"src/Prebuilt/components/Connection/ConnectionIndicator.tsx": {
|
|
12629
|
+
"bytesInOutput": 3722
|
|
12382
12630
|
},
|
|
12383
12631
|
"src/Prebuilt/components/Connection/connectionQualityUtils.js": {
|
|
12384
12632
|
"bytesInOutput": 750
|
|
@@ -12408,19 +12656,19 @@
|
|
|
12408
12656
|
"bytesInOutput": 1851
|
|
12409
12657
|
},
|
|
12410
12658
|
"src/Prebuilt/components/VideoTile.jsx": {
|
|
12411
|
-
"bytesInOutput":
|
|
12659
|
+
"bytesInOutput": 7793
|
|
12412
12660
|
},
|
|
12413
12661
|
"src/Prebuilt/components/TileMenu/TileMenu.jsx": {
|
|
12414
|
-
"bytesInOutput":
|
|
12662
|
+
"bytesInOutput": 4399
|
|
12415
12663
|
},
|
|
12416
12664
|
"src/Prebuilt/components/MoreSettings/ChangeNameModal.jsx": {
|
|
12417
12665
|
"bytesInOutput": 2094
|
|
12418
12666
|
},
|
|
12419
12667
|
"src/Prebuilt/components/MoreSettings/ChangeNameContent.jsx": {
|
|
12420
|
-
"bytesInOutput":
|
|
12668
|
+
"bytesInOutput": 3192
|
|
12421
12669
|
},
|
|
12422
12670
|
"src/Prebuilt/components/TileMenu/TileMenuContent.jsx": {
|
|
12423
|
-
"bytesInOutput":
|
|
12671
|
+
"bytesInOutput": 10516
|
|
12424
12672
|
},
|
|
12425
12673
|
"src/Prebuilt/components/hooks/useDropdownList.jsx": {
|
|
12426
12674
|
"bytesInOutput": 579
|
|
@@ -12429,7 +12677,7 @@
|
|
|
12429
12677
|
"bytesInOutput": 1023
|
|
12430
12678
|
},
|
|
12431
12679
|
"src/Prebuilt/components/Preview/PreviewForm.tsx": {
|
|
12432
|
-
"bytesInOutput":
|
|
12680
|
+
"bytesInOutput": 2532
|
|
12433
12681
|
},
|
|
12434
12682
|
"src/Prebuilt/components/Toast/ToastContainer.jsx": {
|
|
12435
12683
|
"bytesInOutput": 1017
|
|
@@ -12438,24 +12686,30 @@
|
|
|
12438
12686
|
"bytesInOutput": 505
|
|
12439
12687
|
},
|
|
12440
12688
|
"src/Prebuilt/plugins/FlyingEmoji.jsx": {
|
|
12441
|
-
"bytesInOutput":
|
|
12689
|
+
"bytesInOutput": 3878
|
|
12442
12690
|
},
|
|
12443
12691
|
"src/Prebuilt/plugins/RemoteStopScreenshare.jsx": {
|
|
12444
12692
|
"bytesInOutput": 575
|
|
12445
12693
|
},
|
|
12694
|
+
"src/Prebuilt/components/hooks/useAutoStartStreaming.tsx": {
|
|
12695
|
+
"bytesInOutput": 1705
|
|
12696
|
+
},
|
|
12697
|
+
"src/Prebuilt/common/hooks.js": {
|
|
12698
|
+
"bytesInOutput": 2244
|
|
12699
|
+
},
|
|
12446
12700
|
"src/Progress/index.tsx": {
|
|
12447
12701
|
"bytesInOutput": 391
|
|
12448
12702
|
}
|
|
12449
12703
|
},
|
|
12450
|
-
"bytes":
|
|
12704
|
+
"bytes": 309555
|
|
12451
12705
|
},
|
|
12452
|
-
"dist/chunk-
|
|
12706
|
+
"dist/chunk-KBVIZGYW.js.map": {
|
|
12453
12707
|
"imports": [],
|
|
12454
12708
|
"exports": [],
|
|
12455
12709
|
"inputs": {},
|
|
12456
|
-
"bytes":
|
|
12710
|
+
"bytes": 39330
|
|
12457
12711
|
},
|
|
12458
|
-
"dist/chunk-
|
|
12712
|
+
"dist/chunk-KBVIZGYW.js": {
|
|
12459
12713
|
"imports": [
|
|
12460
12714
|
{
|
|
12461
12715
|
"path": "@stitches/react",
|
|
@@ -12532,7 +12786,7 @@
|
|
|
12532
12786
|
],
|
|
12533
12787
|
"inputs": {
|
|
12534
12788
|
"<define:process.env>": {
|
|
12535
|
-
"bytesInOutput":
|
|
12789
|
+
"bytesInOutput": 18415
|
|
12536
12790
|
},
|
|
12537
12791
|
"src/Theme/stitches.config.ts": {
|
|
12538
12792
|
"bytesInOutput": 1652
|
|
@@ -12580,10 +12834,10 @@
|
|
|
12580
12834
|
"bytesInOutput": 0
|
|
12581
12835
|
},
|
|
12582
12836
|
"src/Prebuilt/IconButton.jsx": {
|
|
12583
|
-
"bytesInOutput":
|
|
12837
|
+
"bytesInOutput": 546
|
|
12584
12838
|
}
|
|
12585
12839
|
},
|
|
12586
|
-
"bytes":
|
|
12840
|
+
"bytes": 40028
|
|
12587
12841
|
}
|
|
12588
12842
|
}
|
|
12589
12843
|
}
|