@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.
Files changed (136) hide show
  1. package/dist/{HLSView-PY2FKWX3.js → HLSView-QMU5JK7U.js} +208 -118
  2. package/dist/HLSView-QMU5JK7U.js.map +7 -0
  3. package/dist/Prebuilt/AppContext.d.ts +1 -1
  4. package/dist/Prebuilt/components/Chat/ChatFooter.d.ts +7 -0
  5. package/dist/Prebuilt/components/Connection/ConnectionIndicator.d.ts +6 -0
  6. package/dist/Prebuilt/components/Connection/TileConnection.d.ts +10 -0
  7. package/dist/Prebuilt/components/Footer/ChatToggle.d.ts +2 -0
  8. package/dist/Prebuilt/components/Footer/RoleAccordion.d.ts +14 -0
  9. package/dist/Prebuilt/components/Footer/RoleOptions.d.ts +6 -0
  10. package/dist/Prebuilt/components/Header/StreamActions.d.ts +11 -0
  11. package/dist/Prebuilt/components/Leave/DesktopLeaveRoom.d.ts +4 -3
  12. package/dist/Prebuilt/components/Leave/EndSessionContent.d.ts +4 -3
  13. package/dist/Prebuilt/components/Leave/LeaveCard.d.ts +1 -2
  14. package/dist/Prebuilt/components/Leave/LeaveSessionContent.d.ts +3 -1
  15. package/dist/Prebuilt/components/Leave/MwebLeaveRoom.d.ts +4 -3
  16. package/dist/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.d.ts +6 -0
  17. package/dist/Prebuilt/components/Preview/PreviewContainer.d.ts +3 -0
  18. package/dist/Prebuilt/components/Preview/PreviewJoin.d.ts +16 -0
  19. package/dist/Prebuilt/components/RoleChangeRequestModal.d.ts +2 -0
  20. package/dist/Prebuilt/components/SecondaryTiles.d.ts +1 -1
  21. package/dist/Prebuilt/components/SidePaneTabs.d.ts +7 -0
  22. package/dist/Prebuilt/components/VideoLayouts/EqualProminence.d.ts +1 -1
  23. package/dist/Prebuilt/components/VideoLayouts/Grid.d.ts +1 -0
  24. package/dist/Prebuilt/components/VideoLayouts/GridLayout.d.ts +5 -3
  25. package/dist/Prebuilt/components/VideoLayouts/ProminenceLayout.d.ts +6 -3
  26. package/dist/Prebuilt/components/VideoLayouts/RoleProminence.d.ts +1 -1
  27. package/dist/Prebuilt/components/VideoLayouts/ScreenshareLayout.d.ts +1 -1
  28. package/dist/Prebuilt/components/VideoLayouts/interface.d.ts +1 -0
  29. package/dist/Prebuilt/components/hooks/useAutoStartStreaming.d.ts +1 -0
  30. package/dist/Prebuilt/components/hooks/useRedirectToLeave.d.ts +3 -0
  31. package/dist/Prebuilt/components/hooks/useTileLayout.d.ts +2 -1
  32. package/dist/Prebuilt/components/hooks/useVideoTileLayout.d.ts +2 -0
  33. package/dist/Prebuilt/layouts/SidePane.d.ts +4 -1
  34. package/dist/Prebuilt/layouts/VideoStreamingSection.d.ts +2 -1
  35. package/dist/{VirtualBackground-AYDHYLIZ.js → VirtualBackground-37FXUPYO.js} +6 -6
  36. package/dist/VirtualBackground-37FXUPYO.js.map +7 -0
  37. package/dist/{chunk-GQD2AGWW.js → chunk-KBVIZGYW.js} +12 -2
  38. package/dist/{chunk-GQD2AGWW.js.map → chunk-KBVIZGYW.js.map} +2 -2
  39. package/dist/{chunk-RXTHJUMZ.js → chunk-WVGGQZK4.js} +986 -436
  40. package/dist/chunk-WVGGQZK4.js.map +7 -0
  41. package/dist/{chunk-E2M2ZSOL.js → chunk-ZKE2N5LH.js} +2 -2
  42. package/dist/{conference-V2XZGTKU.js → conference-FJJQ4TXX.js} +1136 -1301
  43. package/dist/conference-FJJQ4TXX.js.map +7 -0
  44. package/dist/index.cjs.js +3565 -3092
  45. package/dist/index.cjs.js.map +4 -4
  46. package/dist/index.js +2 -2
  47. package/dist/meta.cjs.json +773 -525
  48. package/dist/meta.esbuild.json +833 -579
  49. package/package.json +8 -7
  50. package/src/Prebuilt/App.tsx +10 -21
  51. package/src/Prebuilt/AppContext.tsx +1 -1
  52. package/src/Prebuilt/IconButton.jsx +10 -0
  53. package/src/Prebuilt/common/PeersSorter.ts +1 -1
  54. package/src/Prebuilt/common/constants.js +1 -2
  55. package/src/Prebuilt/common/utils.js +1 -1
  56. package/src/Prebuilt/components/AppData/AppData.jsx +8 -2
  57. package/src/Prebuilt/components/AppData/useUISettings.js +6 -6
  58. package/src/Prebuilt/components/AudioVideoToggle.jsx +8 -6
  59. package/src/Prebuilt/components/Chat/Chat.jsx +24 -11
  60. package/src/Prebuilt/components/Chat/ChatBody.jsx +20 -21
  61. package/src/Prebuilt/components/Chat/{ChatFooter.jsx → ChatFooter.tsx} +38 -13
  62. package/src/Prebuilt/components/Chat/useEmojiPickerStyles.js +5 -4
  63. package/src/Prebuilt/components/Connection/{ConnectionIndicator.jsx → ConnectionIndicator.tsx} +12 -4
  64. package/src/Prebuilt/components/Connection/{TileConnection.jsx → TileConnection.tsx} +20 -6
  65. package/src/Prebuilt/components/EmojiReaction.jsx +2 -6
  66. package/src/Prebuilt/components/Footer/{ChatToggle.jsx → ChatToggle.tsx} +4 -1
  67. package/src/Prebuilt/components/Footer/Footer.tsx +30 -5
  68. package/src/Prebuilt/components/Footer/ParticipantList.jsx +15 -49
  69. package/src/Prebuilt/components/Footer/{RoleAccordion.jsx → RoleAccordion.tsx} +33 -17
  70. package/src/Prebuilt/components/Footer/RoleOptions.tsx +155 -0
  71. package/src/Prebuilt/components/FullPageProgress.jsx +3 -3
  72. package/src/Prebuilt/components/HMSVideo/Controls.jsx +1 -0
  73. package/src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx +39 -17
  74. package/src/Prebuilt/components/HMSVideo/HMSVideo.jsx +2 -2
  75. package/src/Prebuilt/components/HMSVideo/VideoProgress.jsx +5 -6
  76. package/src/Prebuilt/components/HMSVideo/VolumeControl.jsx +1 -1
  77. package/src/Prebuilt/components/Header/HeaderComponents.jsx +8 -1
  78. package/src/Prebuilt/components/Header/{StreamActions.jsx → StreamActions.tsx} +23 -9
  79. package/src/Prebuilt/components/Header/common.jsx +5 -2
  80. package/src/Prebuilt/components/IconButtonWithOptions/IconButtonWithOptions.jsx +6 -1
  81. package/src/Prebuilt/components/InsetTile.tsx +15 -8
  82. package/src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx +21 -11
  83. package/src/Prebuilt/components/Leave/EndSessionContent.tsx +2 -5
  84. package/src/Prebuilt/components/Leave/LeaveCard.tsx +1 -3
  85. package/src/Prebuilt/components/Leave/LeaveRoom.tsx +28 -25
  86. package/src/Prebuilt/components/Leave/LeaveSessionContent.tsx +8 -2
  87. package/src/Prebuilt/components/Leave/MwebLeaveRoom.tsx +8 -8
  88. package/src/Prebuilt/components/MoreSettings/ChangeNameContent.jsx +4 -0
  89. package/src/Prebuilt/components/MoreSettings/MoreSettings.tsx +1 -1
  90. package/src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx +9 -23
  91. package/src/Prebuilt/components/MoreSettings/SplitComponents/{MwebOptions.jsx → MwebOptions.tsx} +89 -28
  92. package/src/Prebuilt/components/Notifications/Notifications.jsx +44 -28
  93. package/src/Prebuilt/components/Notifications/ReconnectNotifications.jsx +5 -11
  94. package/src/Prebuilt/components/Pagination.tsx +14 -12
  95. package/src/Prebuilt/components/Preview/{PreviewContainer.jsx → PreviewContainer.tsx} +11 -2
  96. package/src/Prebuilt/components/Preview/PreviewForm.tsx +6 -8
  97. package/src/Prebuilt/components/Preview/{PreviewJoin.jsx → PreviewJoin.tsx} +44 -21
  98. package/src/Prebuilt/components/{RoleChangeRequestModal.jsx → RoleChangeRequestModal.tsx} +36 -17
  99. package/src/Prebuilt/components/ScreenshareTile.jsx +6 -7
  100. package/src/Prebuilt/components/SecondaryTiles.tsx +12 -10
  101. package/src/Prebuilt/components/SidePaneTabs.tsx +120 -0
  102. package/src/Prebuilt/components/TileMenu/TileMenu.jsx +1 -1
  103. package/src/Prebuilt/components/TileMenu/TileMenuContent.jsx +14 -10
  104. package/src/Prebuilt/components/Toast/ToastConfig.jsx +5 -4
  105. package/src/Prebuilt/components/VideoLayouts/EqualProminence.tsx +13 -10
  106. package/src/Prebuilt/components/VideoLayouts/Grid.tsx +36 -34
  107. package/src/Prebuilt/components/VideoLayouts/GridLayout.tsx +33 -15
  108. package/src/Prebuilt/components/VideoLayouts/ProminenceLayout.tsx +45 -31
  109. package/src/Prebuilt/components/VideoLayouts/RoleProminence.tsx +12 -9
  110. package/src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx +25 -9
  111. package/src/Prebuilt/components/VideoLayouts/interface.ts +1 -0
  112. package/src/Prebuilt/components/VideoTile.jsx +45 -53
  113. package/src/Prebuilt/components/conference.jsx +71 -74
  114. package/src/Prebuilt/components/hooks/useAutoStartStreaming.tsx +57 -0
  115. package/src/Prebuilt/components/hooks/useMetadata.jsx +19 -28
  116. package/src/Prebuilt/components/hooks/useRedirectToLeave.tsx +34 -0
  117. package/src/Prebuilt/components/hooks/useRoleProminencePeers.tsx +1 -1
  118. package/src/Prebuilt/components/hooks/useTileLayout.tsx +24 -18
  119. package/src/Prebuilt/components/hooks/useVideoTileLayout.ts +4 -0
  120. package/src/Prebuilt/layouts/EmbedView.jsx +1 -11
  121. package/src/Prebuilt/layouts/HLSView.jsx +152 -82
  122. package/src/Prebuilt/layouts/SidePane.tsx +25 -11
  123. package/src/Prebuilt/layouts/VideoStreamingSection.tsx +11 -47
  124. package/src/Prebuilt/plugins/FlyingEmoji.jsx +14 -2
  125. package/src/Prebuilt/plugins/VirtualBackground/VirtualBackground.jsx +3 -3
  126. package/src/Prebuilt/provider/roomLayoutProvider/hooks/useFetchRoomLayout.ts +2 -2
  127. package/src/Prebuilt/services/FeatureFlags.jsx +0 -1
  128. package/src/VideoTile/StyledVideoTile.tsx +1 -0
  129. package/dist/HLSView-PY2FKWX3.js.map +0 -7
  130. package/dist/VirtualBackground-AYDHYLIZ.js.map +0 -7
  131. package/dist/chunk-RXTHJUMZ.js.map +0 -7
  132. package/dist/conference-V2XZGTKU.js.map +0 -7
  133. package/src/Prebuilt/components/AudioLevel/BeamSpeakerLabelsLogging.jsx +0 -16
  134. package/src/Prebuilt/components/Chat/ChatParticipantHeader.jsx +0 -73
  135. package/src/Prebuilt/components/VideoList.jsx +0 -73
  136. /package/dist/{chunk-E2M2ZSOL.js.map → chunk-ZKE2N5LH.js.map} +0 -0
@@ -842,7 +842,7 @@
842
842
  "format": "esm"
843
843
  },
844
844
  "src/VideoTile/StyledVideoTile.tsx": {
845
- "bytes": 2978,
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": 3319,
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": 4842,
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": 5789,
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": 692,
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": 527,
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": 2483,
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": 5011,
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": 2957,
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": 2302,
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": 5999,
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": 1670,
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": 1729,
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.jsx": {
3132
- "bytes": 8041,
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": 421,
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": 4818,
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.jsx",
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": 2998,
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": 5537,
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.jsx": {
3593
- "bytes": 3440,
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.jsx": {
3629
- "bytes": 1544,
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.jsx",
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": 2843,
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": 9500,
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": 4534,
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": 7931,
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.jsx",
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": 2730,
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.jsx",
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": 3612,
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.jsx": {
4554
- "bytes": 8479,
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.jsx",
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.jsx": {
4670
- "bytes": 1934,
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.jsx",
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": 3649,
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,6 +4958,83 @@
4876
4958
  ],
4877
4959
  "format": "esm"
4878
4960
  },
4961
+ "src/Prebuilt/common/hooks.js": {
4962
+ "bytes": 3236,
4963
+ "imports": [
4964
+ {
4965
+ "path": "react",
4966
+ "kind": "import-statement",
4967
+ "external": true
4968
+ },
4969
+ {
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
+ },
4879
5038
  "src/Prebuilt/components/Footer/EmojiCard.jsx": {
4880
5039
  "bytes": 1189,
4881
5040
  "imports": [
@@ -4903,7 +5062,7 @@
4903
5062
  "format": "esm"
4904
5063
  },
4905
5064
  "src/Prebuilt/components/EmojiReaction.jsx": {
4906
- "bytes": 2847,
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": 2009,
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": 838,
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": 1638,
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": 6049,
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": 4668,
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": 2382,
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/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
5475
+ "path": "src/Prebuilt/components/hooks/useRedirectToLeave.tsx",
5374
5476
  "kind": "import-statement",
5375
- "original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
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": 8572,
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.jsx": {
6197
- "bytes": 8962,
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.jsx",
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": ".././ActionTile"
6328
+ "original": "../ActionTile"
6258
6329
  },
6259
6330
  {
6260
6331
  "path": "src/Prebuilt/components/MoreSettings/ChangeNameModal.jsx",
6261
6332
  "kind": "import-statement",
6262
- "original": ".././ChangeNameModal"
6333
+ "original": "../ChangeNameModal"
6263
6334
  },
6264
6335
  {
6265
6336
  "path": "src/Prebuilt/components/MoreSettings/MuteAllModal.jsx",
6266
6337
  "kind": "import-statement",
6267
- "original": ".././MuteAllModal"
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.jsx",
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.jsx": {
6701
- "bytes": 953,
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/Chat/ChatParticipantHeader.jsx": {
6747
- "bytes": 2331,
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.ts",
6846
+ "path": "src/Dropdown/index.tsx",
6766
6847
  "kind": "import-statement",
6767
- "original": "../../.."
6848
+ "original": "../../../Dropdown"
6768
6849
  },
6769
6850
  {
6770
- "path": "src/Prebuilt/components/AppData/useSidepane.js",
6851
+ "path": "src/Layout/index.tsx",
6771
6852
  "kind": "import-statement",
6772
- "original": "../AppData/useSidepane"
6853
+ "original": "../../../Layout"
6773
6854
  },
6774
6855
  {
6775
- "path": "src/Prebuilt/common/constants.js",
6856
+ "path": "src/Text/index.tsx",
6776
6857
  "kind": "import-statement",
6777
- "original": "../../common/constants"
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.jsx": {
6793
- "bytes": 2337,
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": 11504,
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/provider/roomLayoutProvider/index.tsx",
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.jsx",
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": 2569,
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.jsx",
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": 3935,
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": 1768,
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": 1138,
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": 4186,
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": 2227,
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": 1843,
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": 1132,
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": 1053,
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": 1817,
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": 3535,
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": 1635,
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": 2744,
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": 3177,
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": 4073,
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": 12598,
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/components/Toast/ToastManager.js",
8093
+ "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
7963
8094
  "kind": "import-statement",
7964
- "original": "../Toast/ToastManager"
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": 991,
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.jsx": {
8027
- "bytes": 5084,
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": 5986,
8245
+ "bytes": 6444,
8110
8246
  "imports": [
8111
8247
  {
8112
8248
  "path": "react",
@@ -8136,57 +8272,123 @@
8136
8272
  {
8137
8273
  "path": "src/Layout/index.tsx",
8138
8274
  "kind": "import-statement",
8139
- "original": "../../../Layout"
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",
8335
+ "kind": "import-statement",
8336
+ "external": true
8140
8337
  },
8141
8338
  {
8142
- "path": "src/Text/index.tsx",
8339
+ "path": "@100mslive/types-prebuilt",
8143
8340
  "kind": "import-statement",
8144
- "original": "../../../Text"
8341
+ "external": true
8145
8342
  },
8146
8343
  {
8147
- "path": "src/Theme/index.tsx",
8344
+ "path": "@100mslive/react-sdk",
8148
8345
  "kind": "import-statement",
8149
- "original": "../../../Theme"
8346
+ "external": true
8150
8347
  },
8151
8348
  {
8152
- "path": "src/Prebuilt/components/Chat/ChatBody.jsx",
8349
+ "path": "@100mslive/react-icons",
8153
8350
  "kind": "import-statement",
8154
- "original": "./ChatBody"
8351
+ "external": true
8155
8352
  },
8156
8353
  {
8157
- "path": "src/Prebuilt/components/Chat/ChatFooter.jsx",
8354
+ "path": "src/Prebuilt/components/Chat/Chat.jsx",
8158
8355
  "kind": "import-statement",
8159
- "original": "./ChatFooter"
8356
+ "original": "./Chat/Chat"
8160
8357
  },
8161
8358
  {
8162
- "path": "src/Prebuilt/components/Chat/ChatParticipantHeader.jsx",
8359
+ "path": "src/Prebuilt/components/Footer/ParticipantList.jsx",
8163
8360
  "kind": "import-statement",
8164
- "original": "./ChatParticipantHeader"
8361
+ "original": "./Footer/ParticipantList"
8165
8362
  },
8166
8363
  {
8167
- "path": "src/Prebuilt/components/AppData/useUISettings.js",
8364
+ "path": "src/index.ts",
8168
8365
  "kind": "import-statement",
8169
- "original": "../AppData/useUISettings"
8366
+ "original": "../.."
8170
8367
  },
8171
8368
  {
8172
- "path": "src/Prebuilt/components/hooks/useSetPinnedMessage.js",
8369
+ "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
8173
8370
  "kind": "import-statement",
8174
- "original": "../hooks/useSetPinnedMessage"
8371
+ "original": "../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
8175
8372
  },
8176
8373
  {
8177
- "path": "src/Prebuilt/components/Chat/useUnreadCount.js",
8374
+ "path": "src/Prebuilt/components/AppData/useSidepane.js",
8178
8375
  "kind": "import-statement",
8179
- "original": "./useUnreadCount"
8376
+ "original": "./AppData/useSidepane"
8180
8377
  },
8181
8378
  {
8182
8379
  "path": "src/Prebuilt/common/constants.js",
8183
8380
  "kind": "import-statement",
8184
- "original": "../../common/constants"
8381
+ "original": "../common/constants"
8185
8382
  },
8186
8383
  {
8187
8384
  "path": "<define:process.env>",
8188
8385
  "kind": "import-statement",
8189
8386
  "external": true
8387
+ },
8388
+ {
8389
+ "path": "<runtime>",
8390
+ "kind": "import-statement",
8391
+ "external": true
8190
8392
  }
8191
8393
  ],
8192
8394
  "format": "esm"
@@ -8323,7 +8525,7 @@
8323
8525
  "format": "esm"
8324
8526
  },
8325
8527
  "src/Prebuilt/layouts/SidePane.tsx": {
8326
- "bytes": 3119,
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/Chat/Chat.jsx",
8551
+ "path": "src/Prebuilt/components/SidePaneTabs.tsx",
8350
8552
  "kind": "import-statement",
8351
- "original": "../components/Chat/Chat"
8553
+ "original": "../components/SidePaneTabs"
8352
8554
  },
8353
8555
  {
8354
- "path": "src/Prebuilt/components/Footer/ParticipantList.jsx",
8556
+ "path": "src/Prebuilt/components/Streaming/StreamingLanding.jsx",
8355
8557
  "kind": "import-statement",
8356
- "original": "../components/Footer/ParticipantList"
8558
+ "original": "../components/Streaming/StreamingLanding"
8357
8559
  },
8358
8560
  {
8359
- "path": "src/Prebuilt/components/Streaming/StreamingLanding.jsx",
8561
+ "path": "../components/VideoLayouts/GridLayout",
8360
8562
  "kind": "import-statement",
8361
- "original": "../components/Streaming/StreamingLanding"
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": 439,
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": 372,
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": 2389,
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": 3487,
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": 11569,
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": 4131,
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.jsx": {
8932
- "bytes": 3283,
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.jsx",
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": 6340,
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.jsx",
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": 12316,
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.jsx",
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",
@@ -9460,7 +9667,7 @@
9460
9667
  "imports": [],
9461
9668
  "exports": [],
9462
9669
  "inputs": {},
9463
- "bytes": 975805
9670
+ "bytes": 1009108
9464
9671
  },
9465
9672
  "dist/index.cjs.js": {
9466
9673
  "imports": [
@@ -9759,23 +9966,13 @@
9759
9966
  "kind": "require-call",
9760
9967
  "external": true
9761
9968
  },
9762
- {
9763
- "path": "@100mslive/react-sdk",
9764
- "kind": "require-call",
9765
- "external": true
9766
- },
9767
9969
  {
9768
9970
  "path": "react",
9769
9971
  "kind": "require-call",
9770
9972
  "external": true
9771
9973
  },
9772
9974
  {
9773
- "path": "@100mslive/react-sdk",
9774
- "kind": "require-call",
9775
- "external": true
9776
- },
9777
- {
9778
- "path": "react",
9975
+ "path": "@100mslive/react-icons",
9779
9976
  "kind": "require-call",
9780
9977
  "external": true
9781
9978
  },
@@ -9785,7 +9982,7 @@
9785
9982
  "external": true
9786
9983
  },
9787
9984
  {
9788
- "path": "@100mslive/react-icons",
9985
+ "path": "@100mslive/react-sdk",
9789
9986
  "kind": "require-call",
9790
9987
  "external": true
9791
9988
  },
@@ -9795,7 +9992,7 @@
9795
9992
  "external": true
9796
9993
  },
9797
9994
  {
9798
- "path": "@100mslive/react-sdk",
9995
+ "path": "@100mslive/react-icons",
9799
9996
  "kind": "require-call",
9800
9997
  "external": true
9801
9998
  },
@@ -9805,12 +10002,12 @@
9805
10002
  "external": true
9806
10003
  },
9807
10004
  {
9808
- "path": "@100mslive/react-icons",
10005
+ "path": "react",
9809
10006
  "kind": "require-call",
9810
10007
  "external": true
9811
10008
  },
9812
10009
  {
9813
- "path": "react",
10010
+ "path": "@100mslive/react-sdk",
9814
10011
  "kind": "require-call",
9815
10012
  "external": true
9816
10013
  },
@@ -9959,6 +10156,21 @@
9959
10156
  "kind": "require-call",
9960
10157
  "external": true
9961
10158
  },
10159
+ {
10160
+ "path": "worker-timers",
10161
+ "kind": "require-call",
10162
+ "external": true
10163
+ },
10164
+ {
10165
+ "path": "react",
10166
+ "kind": "require-call",
10167
+ "external": true
10168
+ },
10169
+ {
10170
+ "path": "react-router-dom",
10171
+ "kind": "require-call",
10172
+ "external": true
10173
+ },
9962
10174
  {
9963
10175
  "path": "react",
9964
10176
  "kind": "require-call",
@@ -10279,6 +10491,11 @@
10279
10491
  "kind": "require-call",
10280
10492
  "external": true
10281
10493
  },
10494
+ {
10495
+ "path": "react-use",
10496
+ "kind": "require-call",
10497
+ "external": true
10498
+ },
10282
10499
  {
10283
10500
  "path": "@100mslive/react-sdk",
10284
10501
  "kind": "require-call",
@@ -10319,11 +10536,6 @@
10319
10536
  "kind": "require-call",
10320
10537
  "external": true
10321
10538
  },
10322
- {
10323
- "path": "react-use",
10324
- "kind": "require-call",
10325
- "external": true
10326
- },
10327
10539
  {
10328
10540
  "path": "@100mslive/react-sdk",
10329
10541
  "kind": "require-call",
@@ -10399,6 +10611,11 @@
10399
10611
  "kind": "require-call",
10400
10612
  "external": true
10401
10613
  },
10614
+ {
10615
+ "path": "react-use",
10616
+ "kind": "require-call",
10617
+ "external": true
10618
+ },
10402
10619
  {
10403
10620
  "path": "@100mslive/react-sdk",
10404
10621
  "kind": "require-call",
@@ -10470,52 +10687,57 @@
10470
10687
  "external": true
10471
10688
  },
10472
10689
  {
10473
- "path": "react",
10690
+ "path": "@100mslive/types-prebuilt/elements/join_form",
10474
10691
  "kind": "require-call",
10475
10692
  "external": true
10476
10693
  },
10477
10694
  {
10478
- "path": "react-use",
10695
+ "path": "@100mslive/react-sdk",
10479
10696
  "kind": "require-call",
10480
10697
  "external": true
10481
10698
  },
10482
10699
  {
10483
- "path": "@emoji-mart/data/sets/14/apple.json",
10700
+ "path": "react",
10484
10701
  "kind": "require-call",
10485
10702
  "external": true
10486
10703
  },
10487
10704
  {
10488
- "path": "emoji-mart",
10705
+ "path": "@100mslive/react-sdk",
10489
10706
  "kind": "require-call",
10490
10707
  "external": true
10491
10708
  },
10492
10709
  {
10493
- "path": "@100mslive/react-sdk",
10710
+ "path": "react",
10494
10711
  "kind": "require-call",
10495
10712
  "external": true
10496
10713
  },
10497
10714
  {
10498
- "path": "@100mslive/react-icons",
10715
+ "path": "react",
10499
10716
  "kind": "require-call",
10500
10717
  "external": true
10501
10718
  },
10502
10719
  {
10503
- "path": "worker-timers",
10720
+ "path": "react-use",
10504
10721
  "kind": "require-call",
10505
10722
  "external": true
10506
10723
  },
10507
10724
  {
10508
- "path": "react",
10725
+ "path": "@emoji-mart/data/sets/14/apple.json",
10509
10726
  "kind": "require-call",
10510
10727
  "external": true
10511
10728
  },
10512
10729
  {
10513
- "path": "@100mslive/react-icons",
10730
+ "path": "emoji-mart",
10514
10731
  "kind": "require-call",
10515
10732
  "external": true
10516
10733
  },
10517
10734
  {
10518
- "path": "react",
10735
+ "path": "@100mslive/react-sdk",
10736
+ "kind": "require-call",
10737
+ "external": true
10738
+ },
10739
+ {
10740
+ "path": "@100mslive/react-icons",
10519
10741
  "kind": "require-call",
10520
10742
  "external": true
10521
10743
  },
@@ -10535,7 +10757,7 @@
10535
10757
  "external": true
10536
10758
  },
10537
10759
  {
10538
- "path": "@100mslive/react-sdk",
10760
+ "path": "react",
10539
10761
  "kind": "require-call",
10540
10762
  "external": true
10541
10763
  },
@@ -10565,27 +10787,22 @@
10565
10787
  "external": true
10566
10788
  },
10567
10789
  {
10568
- "path": "react-router-dom",
10569
- "kind": "require-call",
10570
- "external": true
10571
- },
10572
- {
10573
- "path": "react-use",
10790
+ "path": "@100mslive/react-sdk",
10574
10791
  "kind": "require-call",
10575
10792
  "external": true
10576
10793
  },
10577
10794
  {
10578
- "path": "@100mslive/react-sdk",
10795
+ "path": "@100mslive/react-icons",
10579
10796
  "kind": "require-call",
10580
10797
  "external": true
10581
10798
  },
10582
10799
  {
10583
- "path": "@100mslive/react-sdk",
10800
+ "path": "react",
10584
10801
  "kind": "require-call",
10585
10802
  "external": true
10586
10803
  },
10587
10804
  {
10588
- "path": "react",
10805
+ "path": "react-use",
10589
10806
  "kind": "require-call",
10590
10807
  "external": true
10591
10808
  },
@@ -10595,7 +10812,7 @@
10595
10812
  "external": true
10596
10813
  },
10597
10814
  {
10598
- "path": "@100mslive/react-icons",
10815
+ "path": "@100mslive/react-sdk",
10599
10816
  "kind": "require-call",
10600
10817
  "external": true
10601
10818
  },
@@ -10605,17 +10822,17 @@
10605
10822
  "external": true
10606
10823
  },
10607
10824
  {
10608
- "path": "react",
10825
+ "path": "@100mslive/react-sdk",
10609
10826
  "kind": "require-call",
10610
10827
  "external": true
10611
10828
  },
10612
10829
  {
10613
- "path": "@100mslive/types-prebuilt/elements/join_form",
10830
+ "path": "@100mslive/react-icons",
10614
10831
  "kind": "require-call",
10615
10832
  "external": true
10616
10833
  },
10617
10834
  {
10618
- "path": "@100mslive/react-sdk",
10835
+ "path": "react",
10619
10836
  "kind": "require-call",
10620
10837
  "external": true
10621
10838
  },
@@ -10959,6 +11176,11 @@
10959
11176
  "kind": "require-call",
10960
11177
  "external": true
10961
11178
  },
11179
+ {
11180
+ "path": "@100mslive/types-prebuilt/elements/chat",
11181
+ "kind": "require-call",
11182
+ "external": true
11183
+ },
10962
11184
  {
10963
11185
  "path": "react",
10964
11186
  "kind": "require-call",
@@ -10974,6 +11196,11 @@
10974
11196
  "kind": "require-call",
10975
11197
  "external": true
10976
11198
  },
11199
+ {
11200
+ "path": "react",
11201
+ "kind": "require-call",
11202
+ "external": true
11203
+ },
10977
11204
  {
10978
11205
  "path": "react-draggable",
10979
11206
  "kind": "require-call",
@@ -11014,11 +11241,6 @@
11014
11241
  "kind": "require-call",
11015
11242
  "external": true
11016
11243
  },
11017
- {
11018
- "path": "react",
11019
- "kind": "require-call",
11020
- "external": true
11021
- },
11022
11244
  {
11023
11245
  "path": "react-use",
11024
11246
  "kind": "require-call",
@@ -11119,6 +11341,11 @@
11119
11341
  "kind": "require-call",
11120
11342
  "external": true
11121
11343
  },
11344
+ {
11345
+ "path": "react-use",
11346
+ "kind": "require-call",
11347
+ "external": true
11348
+ },
11122
11349
  {
11123
11350
  "path": "@100mslive/react-sdk",
11124
11351
  "kind": "require-call",
@@ -11309,6 +11536,21 @@
11309
11536
  "kind": "require-call",
11310
11537
  "external": true
11311
11538
  },
11539
+ {
11540
+ "path": "@100mslive/react-sdk",
11541
+ "kind": "require-call",
11542
+ "external": true
11543
+ },
11544
+ {
11545
+ "path": "@100mslive/react-icons",
11546
+ "kind": "require-call",
11547
+ "external": true
11548
+ },
11549
+ {
11550
+ "path": "react",
11551
+ "kind": "require-call",
11552
+ "external": true
11553
+ },
11312
11554
  {
11313
11555
  "path": "react-use",
11314
11556
  "kind": "require-call",
@@ -11494,7 +11736,7 @@
11494
11736
  "entryPoint": "src/index.ts",
11495
11737
  "inputs": {
11496
11738
  "<define:process.env>": {
11497
- "bytesInOutput": 18481
11739
+ "bytesInOutput": 18522
11498
11740
  },
11499
11741
  "src/Theme/base.config.ts": {
11500
11742
  "bytesInOutput": 6104
@@ -11608,7 +11850,7 @@
11608
11850
  "bytesInOutput": 129
11609
11851
  },
11610
11852
  "src/VideoTile/StyledVideoTile.tsx": {
11611
- "bytesInOutput": 3373
11853
+ "bytesInOutput": 3399
11612
11854
  },
11613
11855
  "src/VideoTile/index.tsx": {
11614
11856
  "bytesInOutput": 146
@@ -11746,22 +11988,16 @@
11746
11988
  "bytesInOutput": 1062
11747
11989
  },
11748
11990
  "src/Prebuilt/common/constants.js": {
11749
- "bytesInOutput": 3781
11991
+ "bytesInOutput": 3765
11750
11992
  },
11751
11993
  "src/Prebuilt/components/AppData/useSidepane.js": {
11752
11994
  "bytesInOutput": 1640
11753
11995
  },
11754
11996
  "src/Prebuilt/components/AppData/useUISettings.js": {
11755
- "bytesInOutput": 5272
11997
+ "bytesInOutput": 5393
11756
11998
  },
11757
11999
  "src/Prebuilt/components/AppData/AppData.jsx": {
11758
- "bytesInOutput": 6533
11759
- },
11760
- "src/Prebuilt/services/FeatureFlags.jsx": {
11761
- "bytesInOutput": 1837
11762
- },
11763
- "src/Prebuilt/components/AudioLevel/BeamSpeakerLabelsLogging.jsx": {
11764
- "bytesInOutput": 706
12000
+ "bytesInOutput": 6682
11765
12001
  },
11766
12002
  "src/Prebuilt/AppContext.tsx": {
11767
12003
  "bytesInOutput": 745
@@ -11770,13 +12006,16 @@
11770
12006
  "bytesInOutput": 9342
11771
12007
  },
11772
12008
  "src/Prebuilt/components/AuthToken.jsx": {
11773
- "bytesInOutput": 3894
12009
+ "bytesInOutput": 3891
11774
12010
  },
11775
12011
  "src/Prebuilt/components/ErrorBoundary.jsx": {
11776
12012
  "bytesInOutput": 4158
11777
12013
  },
11778
12014
  "src/Prebuilt/components/FullPageProgress.jsx": {
11779
- "bytesInOutput": 858
12015
+ "bytesInOutput": 875
12016
+ },
12017
+ "src/Prebuilt/services/FeatureFlags.jsx": {
12018
+ "bytesInOutput": 1697
11780
12019
  },
11781
12020
  "src/Prebuilt/components/init/Init.jsx": {
11782
12021
  "bytesInOutput": 939
@@ -11788,13 +12027,13 @@
11788
12027
  "bytesInOutput": 1429
11789
12028
  },
11790
12029
  "src/Prebuilt/provider/roomLayoutProvider/hooks/useFetchRoomLayout.ts": {
11791
- "bytesInOutput": 2734
12030
+ "bytesInOutput": 2740
11792
12031
  },
11793
12032
  "src/Prebuilt/provider/roomLayoutProvider/index.tsx": {
11794
12033
  "bytesInOutput": 1371
11795
12034
  },
11796
12035
  "src/Prebuilt/components/Toast/ToastConfig.jsx": {
11797
- "bytesInOutput": 7268
12036
+ "bytesInOutput": 7448
11798
12037
  },
11799
12038
  "src/Prebuilt/components/Toast/ToastManager.js": {
11800
12039
  "bytesInOutput": 1356
@@ -11809,7 +12048,7 @@
11809
12048
  "bytesInOutput": 1771
11810
12049
  },
11811
12050
  "src/Prebuilt/common/utils.js": {
11812
- "bytesInOutput": 1232
12051
+ "bytesInOutput": 1226
11813
12052
  },
11814
12053
  "src/Prebuilt/components/Notifications/PeerNotifications.jsx": {
11815
12054
  "bytesInOutput": 2278
@@ -11824,7 +12063,7 @@
11824
12063
  "bytesInOutput": 4937
11825
12064
  },
11826
12065
  "src/Prebuilt/components/Notifications/ReconnectNotifications.jsx": {
11827
- "bytesInOutput": 3192
12066
+ "bytesInOutput": 2973
11828
12067
  },
11829
12068
  "src/Prebuilt/components/Notifications/TrackBulkUnmuteModal.jsx": {
11830
12069
  "bytesInOutput": 2280
@@ -11835,14 +12074,26 @@
11835
12074
  "src/Prebuilt/components/Notifications/TrackUnmuteModal.jsx": {
11836
12075
  "bytesInOutput": 2266
11837
12076
  },
12077
+ "src/Prebuilt/components/PIP/pipUtils.js": {
12078
+ "bytesInOutput": 4391
12079
+ },
12080
+ "src/Prebuilt/components/PIP/PIPManager.js": {
12081
+ "bytesInOutput": 10581
12082
+ },
12083
+ "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts": {
12084
+ "bytesInOutput": 1498
12085
+ },
12086
+ "src/Prebuilt/components/hooks/useRedirectToLeave.tsx": {
12087
+ "bytesInOutput": 1408
12088
+ },
11838
12089
  "src/Prebuilt/components/Notifications/Notifications.jsx": {
11839
- "bytesInOutput": 6488
12090
+ "bytesInOutput": 7143
11840
12091
  },
11841
12092
  "src/Prebuilt/components/Notifications/index.jsx": {
11842
12093
  "bytesInOutput": 173
11843
12094
  },
11844
12095
  "src/Prebuilt/components/Header/HeaderComponents.jsx": {
11845
- "bytesInOutput": 2339
12096
+ "bytesInOutput": 2467
11846
12097
  },
11847
12098
  "src/Sheet/Sheet.tsx": {
11848
12099
  "bytesInOutput": 3505
@@ -11851,7 +12102,7 @@
11851
12102
  "bytesInOutput": 128
11852
12103
  },
11853
12104
  "src/Prebuilt/components/hooks/useMetadata.jsx": {
11854
- "bytesInOutput": 2361
12105
+ "bytesInOutput": 2087
11855
12106
  },
11856
12107
  "src/Prebuilt/plugins/whiteboard/useWhiteboardMetadata.js": {
11857
12108
  "bytesInOutput": 2178
@@ -11865,14 +12116,14 @@
11865
12116
  "src/Prebuilt/components/Header/AdditionalRoomState.jsx": {
11866
12117
  "bytesInOutput": 9447
11867
12118
  },
11868
- "src/Prebuilt/components/Header/StreamActions.jsx": {
11869
- "bytesInOutput": 10698
12119
+ "src/Prebuilt/components/Header/StreamActions.tsx": {
12120
+ "bytesInOutput": 10846
11870
12121
  },
11871
12122
  "src/Prebuilt/IconButton.jsx": {
11872
- "bytesInOutput": 583
12123
+ "bytesInOutput": 845
11873
12124
  },
11874
12125
  "src/Prebuilt/components/Header/common.jsx": {
11875
- "bytesInOutput": 6272
12126
+ "bytesInOutput": 6367
11876
12127
  },
11877
12128
  "src/Prebuilt/components/Header/Header.tsx": {
11878
12129
  "bytesInOutput": 2119
@@ -11880,17 +12131,14 @@
11880
12131
  "src/Prebuilt/components/Header/index.tsx": {
11881
12132
  "bytesInOutput": 152
11882
12133
  },
11883
- "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts": {
11884
- "bytesInOutput": 1498
11885
- },
11886
12134
  "src/Prebuilt/components/PostLeave.jsx": {
11887
12135
  "bytesInOutput": 3484
11888
12136
  },
11889
12137
  "src/Prebuilt/components/IconButtonWithOptions/IconButtonWithOptions.jsx": {
11890
- "bytesInOutput": 3679
12138
+ "bytesInOutput": 3797
11891
12139
  },
11892
12140
  "src/Prebuilt/components/AudioVideoToggle.jsx": {
11893
- "bytesInOutput": 6679
12141
+ "bytesInOutput": 6745
11894
12142
  },
11895
12143
  "src/Prebuilt/components/Chip.jsx": {
11896
12144
  "bytesInOutput": 916
@@ -11898,11 +12146,11 @@
11898
12146
  "src/Prebuilt/components/Connection/connectionQualityUtils.js": {
11899
12147
  "bytesInOutput": 1059
11900
12148
  },
11901
- "src/Prebuilt/components/Connection/ConnectionIndicator.jsx": {
11902
- "bytesInOutput": 4409
12149
+ "src/Prebuilt/components/Connection/ConnectionIndicator.tsx": {
12150
+ "bytesInOutput": 4464
11903
12151
  },
11904
- "src/Prebuilt/components/Connection/TileConnection.jsx": {
11905
- "bytesInOutput": 2084
12152
+ "src/Prebuilt/components/Connection/TileConnection.tsx": {
12153
+ "bytesInOutput": 2097
11906
12154
  },
11907
12155
  "src/Prebuilt/primitives/DropdownTrigger.jsx": {
11908
12156
  "bytesInOutput": 1770
@@ -11929,28 +12177,28 @@
11929
12177
  "bytesInOutput": 10612
11930
12178
  },
11931
12179
  "src/Prebuilt/components/MoreSettings/ChangeNameContent.jsx": {
11932
- "bytesInOutput": 3977
12180
+ "bytesInOutput": 4077
11933
12181
  },
11934
12182
  "src/Prebuilt/components/MoreSettings/ChangeNameModal.jsx": {
11935
12183
  "bytesInOutput": 2747
11936
12184
  },
11937
12185
  "src/Prebuilt/components/TileMenu/TileMenuContent.jsx": {
11938
- "bytesInOutput": 12307
12186
+ "bytesInOutput": 12712
11939
12187
  },
11940
12188
  "src/Prebuilt/components/hooks/useDropdownList.jsx": {
11941
12189
  "bytesInOutput": 885
11942
12190
  },
11943
12191
  "src/Prebuilt/components/TileMenu/TileMenu.jsx": {
11944
- "bytesInOutput": 5360
12192
+ "bytesInOutput": 5393
11945
12193
  },
11946
12194
  "src/Prebuilt/components/peerTileUtils.jsx": {
11947
12195
  "bytesInOutput": 1299
11948
12196
  },
11949
12197
  "src/Prebuilt/components/VideoTile.jsx": {
11950
- "bytesInOutput": 9542
12198
+ "bytesInOutput": 9269
11951
12199
  },
11952
12200
  "src/Prebuilt/components/Preview/PreviewForm.tsx": {
11953
- "bytesInOutput": 3383
12201
+ "bytesInOutput": 3256
11954
12202
  },
11955
12203
  "src/Prebuilt/components/MoreSettings/ActionTile.jsx": {
11956
12204
  "bytesInOutput": 1881
@@ -11959,13 +12207,13 @@
11959
12207
  "bytesInOutput": 2273
11960
12208
  },
11961
12209
  "src/Prebuilt/plugins/VirtualBackground/VirtualBackground.jsx": {
11962
- "bytesInOutput": 5077
12210
+ "bytesInOutput": 5054
11963
12211
  },
11964
- "src/Prebuilt/components/Preview/PreviewJoin.jsx": {
11965
- "bytesInOutput": 10806
12212
+ "src/Prebuilt/components/Preview/PreviewJoin.tsx": {
12213
+ "bytesInOutput": 11030
11966
12214
  },
11967
- "src/Prebuilt/components/Preview/PreviewContainer.jsx": {
11968
- "bytesInOutput": 2394
12215
+ "src/Prebuilt/components/Preview/PreviewContainer.tsx": {
12216
+ "bytesInOutput": 2515
11969
12217
  },
11970
12218
  "src/Prebuilt/components/Toast/Toast.jsx": {
11971
12219
  "bytesInOutput": 773
@@ -11974,43 +12222,43 @@
11974
12222
  "bytesInOutput": 1404
11975
12223
  },
11976
12224
  "src/Prebuilt/plugins/FlyingEmoji.jsx": {
11977
- "bytesInOutput": 4182
12225
+ "bytesInOutput": 4317
11978
12226
  },
11979
12227
  "src/Prebuilt/plugins/RemoteStopScreenshare.jsx": {
11980
12228
  "bytesInOutput": 818
11981
12229
  },
12230
+ "src/Prebuilt/common/hooks.js": {
12231
+ "bytesInOutput": 2575
12232
+ },
12233
+ "src/Prebuilt/components/hooks/useAutoStartStreaming.tsx": {
12234
+ "bytesInOutput": 2080
12235
+ },
11982
12236
  "src/Prebuilt/components/Footer/EmojiCard.jsx": {
11983
12237
  "bytesInOutput": 1315
11984
12238
  },
11985
12239
  "src/Prebuilt/components/EmojiReaction.jsx": {
11986
- "bytesInOutput": 3032
11987
- },
11988
- "src/Prebuilt/components/PIP/pipUtils.js": {
11989
- "bytesInOutput": 4391
11990
- },
11991
- "src/Prebuilt/components/PIP/PIPManager.js": {
11992
- "bytesInOutput": 10581
12240
+ "bytesInOutput": 2931
11993
12241
  },
11994
12242
  "src/Prebuilt/components/Leave/EndSessionContent.tsx": {
11995
- "bytesInOutput": 2572
12243
+ "bytesInOutput": 2547
11996
12244
  },
11997
12245
  "src/Prebuilt/components/Leave/LeaveAtoms.tsx": {
11998
12246
  "bytesInOutput": 766
11999
12247
  },
12000
12248
  "src/Prebuilt/components/Leave/LeaveCard.tsx": {
12001
- "bytesInOutput": 987
12249
+ "bytesInOutput": 958
12002
12250
  },
12003
12251
  "src/Prebuilt/components/Leave/LeaveSessionContent.tsx": {
12004
- "bytesInOutput": 2187
12252
+ "bytesInOutput": 2305
12005
12253
  },
12006
12254
  "src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx": {
12007
- "bytesInOutput": 6744
12255
+ "bytesInOutput": 7169
12008
12256
  },
12009
12257
  "src/Prebuilt/components/Leave/MwebLeaveRoom.tsx": {
12010
- "bytesInOutput": 5322
12258
+ "bytesInOutput": 5450
12011
12259
  },
12012
12260
  "src/Prebuilt/components/Leave/LeaveRoom.tsx": {
12013
- "bytesInOutput": 2546
12261
+ "bytesInOutput": 2523
12014
12262
  },
12015
12263
  "src/Prebuilt/components/PIP/SetupMediaSession.js": {
12016
12264
  "bytesInOutput": 2932
@@ -12021,9 +12269,6 @@
12021
12269
  "src/Prebuilt/components/PIP/index.jsx": {
12022
12270
  "bytesInOutput": 369
12023
12271
  },
12024
- "src/Prebuilt/common/hooks.js": {
12025
- "bytesInOutput": 2575
12026
- },
12027
12272
  "src/Prebuilt/components/RoleChangeModal.jsx": {
12028
12273
  "bytesInOutput": 7598
12029
12274
  },
@@ -12037,7 +12282,7 @@
12037
12282
  "bytesInOutput": 12511
12038
12283
  },
12039
12284
  "src/Prebuilt/components/Settings/StartRecording.jsx": {
12040
- "bytesInOutput": 5163
12285
+ "bytesInOutput": 5184
12041
12286
  },
12042
12287
  "src/Prebuilt/components/StatsForNerds.jsx": {
12043
12288
  "bytesInOutput": 11523
@@ -12058,13 +12303,13 @@
12058
12303
  "bytesInOutput": 2873
12059
12304
  },
12060
12305
  "src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx": {
12061
- "bytesInOutput": 9068
12306
+ "bytesInOutput": 8198
12062
12307
  },
12063
- "src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.jsx": {
12064
- "bytesInOutput": 9956
12308
+ "src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx": {
12309
+ "bytesInOutput": 11425
12065
12310
  },
12066
12311
  "src/Prebuilt/components/MoreSettings/MoreSettings.tsx": {
12067
- "bytesInOutput": 745
12312
+ "bytesInOutput": 733
12068
12313
  },
12069
12314
  "src/Prebuilt/components/RaiseHand.jsx": {
12070
12315
  "bytesInOutput": 1167
@@ -12099,71 +12344,71 @@
12099
12344
  "src/Prebuilt/components/ScreenShareToggle.jsx": {
12100
12345
  "bytesInOutput": 2035
12101
12346
  },
12102
- "src/Prebuilt/components/Footer/ChatToggle.jsx": {
12347
+ "src/Prebuilt/components/Footer/ChatToggle.tsx": {
12103
12348
  "bytesInOutput": 1304
12104
12349
  },
12105
- "src/Prebuilt/components/Chat/ChatParticipantHeader.jsx": {
12106
- "bytesInOutput": 3115
12350
+ "src/Prebuilt/components/Footer/RoleOptions.tsx": {
12351
+ "bytesInOutput": 6833
12107
12352
  },
12108
- "src/Prebuilt/components/Footer/RoleAccordion.jsx": {
12109
- "bytesInOutput": 3060
12353
+ "src/Prebuilt/components/Footer/RoleAccordion.tsx": {
12354
+ "bytesInOutput": 3518
12110
12355
  },
12111
12356
  "src/Prebuilt/components/Footer/ParticipantList.jsx": {
12112
- "bytesInOutput": 14678
12357
+ "bytesInOutput": 13320
12113
12358
  },
12114
12359
  "src/Prebuilt/components/Footer/Footer.tsx": {
12115
- "bytesInOutput": 3040
12360
+ "bytesInOutput": 4375
12116
12361
  },
12117
12362
  "src/Prebuilt/components/Notifications/HLSFailureModal.jsx": {
12118
12363
  "bytesInOutput": 2795
12119
12364
  },
12365
+ "src/Prebuilt/components/hooks/useVideoTileLayout.ts": {
12366
+ "bytesInOutput": 706
12367
+ },
12120
12368
  "src/Prebuilt/components/InsetTile.tsx": {
12121
- "bytesInOutput": 4710
12369
+ "bytesInOutput": 5117
12122
12370
  },
12123
12371
  "src/Prebuilt/components/Pagination.tsx": {
12124
- "bytesInOutput": 2095
12125
- },
12126
- "src/Prebuilt/components/hooks/useVideoTileLayout.ts": {
12127
- "bytesInOutput": 638
12372
+ "bytesInOutput": 2118
12128
12373
  },
12129
12374
  "src/Prebuilt/components/VideoLayouts/Grid.tsx": {
12130
- "bytesInOutput": 1499
12375
+ "bytesInOutput": 1620
12131
12376
  },
12132
12377
  "src/Prebuilt/components/hooks/useTileLayout.tsx": {
12133
- "bytesInOutput": 4261
12378
+ "bytesInOutput": 4481
12134
12379
  },
12135
12380
  "src/Prebuilt/components/VideoLayouts/EqualProminence.tsx": {
12136
- "bytesInOutput": 2365
12381
+ "bytesInOutput": 2420
12137
12382
  },
12138
12383
  "src/Prebuilt/components/VideoLayouts/ProminenceLayout.tsx": {
12139
- "bytesInOutput": 2178
12384
+ "bytesInOutput": 2590
12140
12385
  },
12141
12386
  "src/Prebuilt/components/SecondaryTiles.tsx": {
12142
- "bytesInOutput": 1441
12387
+ "bytesInOutput": 1480
12143
12388
  },
12144
12389
  "src/Prebuilt/components/hooks/useRoleProminencePeers.tsx": {
12145
- "bytesInOutput": 1263
12390
+ "bytesInOutput": 1302
12146
12391
  },
12147
12392
  "src/Prebuilt/components/VideoLayouts/RoleProminence.tsx": {
12148
- "bytesInOutput": 2128
12393
+ "bytesInOutput": 2169
12149
12394
  },
12150
12395
  "src/Prebuilt/components/ScreenshareDisplay.jsx": {
12151
12396
  "bytesInOutput": 1707
12152
12397
  },
12153
12398
  "src/Prebuilt/components/ScreenshareTile.jsx": {
12154
- "bytesInOutput": 4585
12399
+ "bytesInOutput": 4551
12155
12400
  },
12156
12401
  "src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx": {
12157
- "bytesInOutput": 1863
12402
+ "bytesInOutput": 2453
12158
12403
  },
12159
12404
  "src/Prebuilt/common/PeersSorter.ts": {
12160
- "bytesInOutput": 3205
12405
+ "bytesInOutput": 3228
12161
12406
  },
12162
12407
  "src/Prebuilt/components/VideoLayouts/GridLayout.tsx": {
12163
- "bytesInOutput": 3323
12408
+ "bytesInOutput": 3980
12164
12409
  },
12165
12410
  "src/Prebuilt/layouts/EmbedView.jsx": {
12166
- "bytesInOutput": 4705
12411
+ "bytesInOutput": 3948
12167
12412
  },
12168
12413
  "src/Prebuilt/layouts/PDFView.jsx": {
12169
12414
  "bytesInOutput": 3901
@@ -12175,22 +12420,25 @@
12175
12420
  "bytesInOutput": 1519
12176
12421
  },
12177
12422
  "src/Prebuilt/components/Chat/ChatBody.jsx": {
12178
- "bytesInOutput": 15778
12423
+ "bytesInOutput": 15309
12179
12424
  },
12180
12425
  "src/Prebuilt/components/AppData/useChatState.js": {
12181
12426
  "bytesInOutput": 914
12182
12427
  },
12183
12428
  "src/Prebuilt/components/Chat/useEmojiPickerStyles.js": {
12184
- "bytesInOutput": 1383
12429
+ "bytesInOutput": 1414
12185
12430
  },
12186
- "src/Prebuilt/components/Chat/ChatFooter.jsx": {
12187
- "bytesInOutput": 6193
12431
+ "src/Prebuilt/components/Chat/ChatFooter.tsx": {
12432
+ "bytesInOutput": 6792
12188
12433
  },
12189
12434
  "src/Prebuilt/components/Chat/useUnreadCount.js": {
12190
12435
  "bytesInOutput": 637
12191
12436
  },
12192
12437
  "src/Prebuilt/components/Chat/Chat.jsx": {
12193
- "bytesInOutput": 7565
12438
+ "bytesInOutput": 8300
12439
+ },
12440
+ "src/Prebuilt/components/SidePaneTabs.tsx": {
12441
+ "bytesInOutput": 5074
12194
12442
  },
12195
12443
  "src/Prebuilt/images/rtmp.png": {
12196
12444
  "bytesInOutput": 7396
@@ -12202,7 +12450,7 @@
12202
12450
  "bytesInOutput": 3687
12203
12451
  },
12204
12452
  "src/Prebuilt/layouts/SidePane.tsx": {
12205
- "bytesInOutput": 3521
12453
+ "bytesInOutput": 4143
12206
12454
  },
12207
12455
  "src/Prebuilt/layouts/WaitingView.jsx": {
12208
12456
  "bytesInOutput": 1943
@@ -12211,10 +12459,10 @@
12211
12459
  "bytesInOutput": 4195
12212
12460
  },
12213
12461
  "src/Prebuilt/components/HMSVideo/Controls.jsx": {
12214
- "bytesInOutput": 628
12462
+ "bytesInOutput": 656
12215
12463
  },
12216
12464
  "src/Prebuilt/components/HMSVideo/HMSVideo.jsx": {
12217
- "bytesInOutput": 642
12465
+ "bytesInOutput": 757
12218
12466
  },
12219
12467
  "src/Prebuilt/components/HMSVideo/PlayButton.jsx": {
12220
12468
  "bytesInOutput": 860
@@ -12223,7 +12471,7 @@
12223
12471
  "bytesInOutput": 846
12224
12472
  },
12225
12473
  "src/Prebuilt/components/HMSVideo/VideoProgress.jsx": {
12226
- "bytesInOutput": 3227
12474
+ "bytesInOutput": 3186
12227
12475
  },
12228
12476
  "src/Prebuilt/components/HMSVideo/VideoTime.jsx": {
12229
12477
  "bytesInOutput": 1275
@@ -12241,22 +12489,22 @@
12241
12489
  "bytesInOutput": 1233
12242
12490
  },
12243
12491
  "src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx": {
12244
- "bytesInOutput": 4075
12492
+ "bytesInOutput": 4598
12245
12493
  },
12246
12494
  "src/Prebuilt/layouts/HLSView.jsx": {
12247
- "bytesInOutput": 13951
12495
+ "bytesInOutput": 17356
12248
12496
  },
12249
12497
  "src/Prebuilt/layouts/VideoStreamingSection.tsx": {
12250
- "bytesInOutput": 3945
12498
+ "bytesInOutput": 3048
12251
12499
  },
12252
- "src/Prebuilt/components/RoleChangeRequestModal.jsx": {
12253
- "bytesInOutput": 4445
12500
+ "src/Prebuilt/components/RoleChangeRequestModal.tsx": {
12501
+ "bytesInOutput": 4797
12254
12502
  },
12255
12503
  "src/Prebuilt/components/conference.jsx": {
12256
- "bytesInOutput": 7557
12504
+ "bytesInOutput": 7909
12257
12505
  },
12258
12506
  "src/Prebuilt/App.tsx": {
12259
- "bytesInOutput": 13592
12507
+ "bytesInOutput": 13029
12260
12508
  },
12261
12509
  "src/Prebuilt/index.ts": {
12262
12510
  "bytesInOutput": 131
@@ -12268,7 +12516,7 @@
12268
12516
  "bytesInOutput": 2758
12269
12517
  }
12270
12518
  },
12271
- "bytes": 821059
12519
+ "bytes": 842968
12272
12520
  }
12273
12521
  }
12274
12522
  }