@100mslive/roomkit-react 0.1.6-alpha.0 → 0.1.6-alpha.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (130) hide show
  1. package/dist/{HLSView-PY2FKWX3.js → HLSView-HNVYG5VE.js} +208 -118
  2. package/dist/HLSView-HNVYG5VE.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 +4 -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/VideoLayouts/EqualProminence.d.ts +1 -1
  22. package/dist/Prebuilt/components/VideoLayouts/Grid.d.ts +1 -0
  23. package/dist/Prebuilt/components/VideoLayouts/GridLayout.d.ts +5 -3
  24. package/dist/Prebuilt/components/VideoLayouts/ProminenceLayout.d.ts +6 -3
  25. package/dist/Prebuilt/components/VideoLayouts/RoleProminence.d.ts +1 -1
  26. package/dist/Prebuilt/components/VideoLayouts/ScreenshareLayout.d.ts +1 -1
  27. package/dist/Prebuilt/components/VideoLayouts/interface.d.ts +1 -0
  28. package/dist/Prebuilt/components/hooks/useAutoStartStreaming.d.ts +1 -0
  29. package/dist/Prebuilt/components/hooks/useRedirectToLeave.d.ts +3 -0
  30. package/dist/Prebuilt/components/hooks/useTileLayout.d.ts +2 -1
  31. package/dist/Prebuilt/components/hooks/useVideoTileLayout.d.ts +2 -0
  32. package/dist/Prebuilt/layouts/SidePane.d.ts +4 -1
  33. package/dist/Prebuilt/layouts/VideoStreamingSection.d.ts +2 -1
  34. package/dist/{VirtualBackground-AYDHYLIZ.js → VirtualBackground-UM2FOUHQ.js} +3 -3
  35. package/dist/{chunk-E2M2ZSOL.js → chunk-364HP22I.js} +2 -2
  36. package/dist/{chunk-RXTHJUMZ.js → chunk-LYSAET4G.js} +946 -390
  37. package/dist/chunk-LYSAET4G.js.map +7 -0
  38. package/dist/{chunk-GQD2AGWW.js → chunk-POE7H4IE.js} +12 -2
  39. package/dist/{chunk-GQD2AGWW.js.map → chunk-POE7H4IE.js.map} +2 -2
  40. package/dist/{conference-V2XZGTKU.js → conference-UWLJHMB2.js} +1116 -1316
  41. package/dist/conference-UWLJHMB2.js.map +7 -0
  42. package/dist/index.cjs.js +6080 -5631
  43. package/dist/index.cjs.js.map +4 -4
  44. package/dist/index.js +2 -2
  45. package/dist/meta.cjs.json +741 -493
  46. package/dist/meta.esbuild.json +782 -529
  47. package/package.json +8 -7
  48. package/src/Prebuilt/App.tsx +10 -21
  49. package/src/Prebuilt/AppContext.tsx +1 -1
  50. package/src/Prebuilt/IconButton.jsx +10 -0
  51. package/src/Prebuilt/common/PeersSorter.ts +1 -1
  52. package/src/Prebuilt/common/constants.js +1 -2
  53. package/src/Prebuilt/common/utils.js +1 -1
  54. package/src/Prebuilt/components/AppData/AppData.jsx +8 -2
  55. package/src/Prebuilt/components/AppData/useUISettings.js +6 -6
  56. package/src/Prebuilt/components/AudioVideoToggle.jsx +8 -6
  57. package/src/Prebuilt/components/Chat/Chat.jsx +23 -6
  58. package/src/Prebuilt/components/Chat/ChatBody.jsx +20 -21
  59. package/src/Prebuilt/components/Chat/{ChatFooter.jsx → ChatFooter.tsx} +38 -13
  60. package/src/Prebuilt/components/Chat/ChatParticipantHeader.jsx +38 -27
  61. package/src/Prebuilt/components/Chat/useEmojiPickerStyles.js +5 -4
  62. package/src/Prebuilt/components/Connection/{ConnectionIndicator.jsx → ConnectionIndicator.tsx} +12 -4
  63. package/src/Prebuilt/components/Connection/{TileConnection.jsx → TileConnection.tsx} +20 -6
  64. package/src/Prebuilt/components/EmojiReaction.jsx +2 -6
  65. package/src/Prebuilt/components/Footer/{ChatToggle.jsx → ChatToggle.tsx} +13 -3
  66. package/src/Prebuilt/components/Footer/Footer.tsx +15 -6
  67. package/src/Prebuilt/components/Footer/ParticipantList.jsx +15 -47
  68. package/src/Prebuilt/components/Footer/{RoleAccordion.jsx → RoleAccordion.tsx} +33 -17
  69. package/src/Prebuilt/components/Footer/RoleOptions.tsx +155 -0
  70. package/src/Prebuilt/components/FullPageProgress.jsx +3 -3
  71. package/src/Prebuilt/components/HMSVideo/Controls.jsx +1 -0
  72. package/src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx +39 -17
  73. package/src/Prebuilt/components/HMSVideo/HMSVideo.jsx +2 -2
  74. package/src/Prebuilt/components/HMSVideo/VideoProgress.jsx +5 -6
  75. package/src/Prebuilt/components/HMSVideo/VolumeControl.jsx +1 -1
  76. package/src/Prebuilt/components/Header/{StreamActions.jsx → StreamActions.tsx} +23 -9
  77. package/src/Prebuilt/components/Header/common.jsx +5 -2
  78. package/src/Prebuilt/components/IconButtonWithOptions/IconButtonWithOptions.jsx +6 -1
  79. package/src/Prebuilt/components/InsetTile.tsx +14 -8
  80. package/src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx +21 -11
  81. package/src/Prebuilt/components/Leave/EndSessionContent.tsx +2 -5
  82. package/src/Prebuilt/components/Leave/LeaveCard.tsx +1 -3
  83. package/src/Prebuilt/components/Leave/LeaveRoom.tsx +28 -25
  84. package/src/Prebuilt/components/Leave/LeaveSessionContent.tsx +8 -2
  85. package/src/Prebuilt/components/Leave/MwebLeaveRoom.tsx +8 -8
  86. package/src/Prebuilt/components/MoreSettings/ChangeNameContent.jsx +4 -0
  87. package/src/Prebuilt/components/MoreSettings/MoreSettings.tsx +1 -1
  88. package/src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx +9 -23
  89. package/src/Prebuilt/components/MoreSettings/SplitComponents/{MwebOptions.jsx → MwebOptions.tsx} +88 -27
  90. package/src/Prebuilt/components/Notifications/Notifications.jsx +30 -21
  91. package/src/Prebuilt/components/Notifications/ReconnectNotifications.jsx +5 -11
  92. package/src/Prebuilt/components/Pagination.tsx +14 -12
  93. package/src/Prebuilt/components/Preview/{PreviewContainer.jsx → PreviewContainer.tsx} +11 -2
  94. package/src/Prebuilt/components/Preview/PreviewForm.tsx +6 -8
  95. package/src/Prebuilt/components/Preview/{PreviewJoin.jsx → PreviewJoin.tsx} +43 -19
  96. package/src/Prebuilt/components/{RoleChangeRequestModal.jsx → RoleChangeRequestModal.tsx} +32 -15
  97. package/src/Prebuilt/components/ScreenshareTile.jsx +6 -7
  98. package/src/Prebuilt/components/SecondaryTiles.tsx +12 -10
  99. package/src/Prebuilt/components/TileMenu/TileMenu.jsx +1 -1
  100. package/src/Prebuilt/components/TileMenu/TileMenuContent.jsx +14 -10
  101. package/src/Prebuilt/components/Toast/ToastConfig.jsx +5 -4
  102. package/src/Prebuilt/components/VideoLayouts/EqualProminence.tsx +13 -10
  103. package/src/Prebuilt/components/VideoLayouts/Grid.tsx +36 -34
  104. package/src/Prebuilt/components/VideoLayouts/GridLayout.tsx +33 -15
  105. package/src/Prebuilt/components/VideoLayouts/ProminenceLayout.tsx +45 -31
  106. package/src/Prebuilt/components/VideoLayouts/RoleProminence.tsx +12 -9
  107. package/src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx +25 -9
  108. package/src/Prebuilt/components/VideoLayouts/interface.ts +1 -0
  109. package/src/Prebuilt/components/VideoTile.jsx +45 -53
  110. package/src/Prebuilt/components/conference.jsx +71 -74
  111. package/src/Prebuilt/components/hooks/useAutoStartStreaming.tsx +57 -0
  112. package/src/Prebuilt/components/hooks/useMetadata.jsx +12 -3
  113. package/src/Prebuilt/components/hooks/useRedirectToLeave.tsx +34 -0
  114. package/src/Prebuilt/components/hooks/useRoleProminencePeers.tsx +1 -1
  115. package/src/Prebuilt/components/hooks/useTileLayout.tsx +24 -18
  116. package/src/Prebuilt/components/hooks/useVideoTileLayout.ts +4 -0
  117. package/src/Prebuilt/layouts/EmbedView.jsx +1 -11
  118. package/src/Prebuilt/layouts/HLSView.jsx +152 -82
  119. package/src/Prebuilt/layouts/SidePane.tsx +15 -3
  120. package/src/Prebuilt/layouts/VideoStreamingSection.tsx +11 -47
  121. package/src/Prebuilt/plugins/FlyingEmoji.jsx +14 -2
  122. package/src/Prebuilt/services/FeatureFlags.jsx +0 -1
  123. package/src/VideoTile/StyledVideoTile.tsx +1 -0
  124. package/dist/HLSView-PY2FKWX3.js.map +0 -7
  125. package/dist/chunk-RXTHJUMZ.js.map +0 -7
  126. package/dist/conference-V2XZGTKU.js.map +0 -7
  127. package/src/Prebuilt/components/AudioLevel/BeamSpeakerLabelsLogging.jsx +0 -16
  128. package/src/Prebuilt/components/VideoList.jsx +0 -73
  129. /package/dist/{VirtualBackground-AYDHYLIZ.js.map → VirtualBackground-UM2FOUHQ.js.map} +0 -0
  130. /package/dist/{chunk-E2M2ZSOL.js.map → chunk-364HP22I.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"
@@ -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": 6328,
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",
@@ -2959,7 +3047,7 @@
2959
3047
  "format": "esm"
2960
3048
  },
2961
3049
  "src/Prebuilt/components/hooks/useMetadata.jsx": {
2962
- "bytes": 1729,
3050
+ "bytes": 1951,
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
  },
@@ -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": 9176,
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,8 +4958,8 @@
4876
4958
  ],
4877
4959
  "format": "esm"
4878
4960
  },
4879
- "src/Prebuilt/components/Footer/EmojiCard.jsx": {
4880
- "bytes": 1189,
4961
+ "src/Prebuilt/common/hooks.js": {
4962
+ "bytes": 3236,
4881
4963
  "imports": [
4882
4964
  {
4883
4965
  "path": "react",
@@ -4885,7 +4967,84 @@
4885
4967
  "external": true
4886
4968
  },
4887
4969
  {
4888
- "path": "src/Layout/index.tsx",
4970
+ "path": "@100mslive/types-prebuilt/elements/join_form",
4971
+ "kind": "import-statement",
4972
+ "external": true
4973
+ },
4974
+ {
4975
+ "path": "@100mslive/react-sdk",
4976
+ "kind": "import-statement",
4977
+ "external": true
4978
+ },
4979
+ {
4980
+ "path": "src/Prebuilt/provider/roomLayoutProvider/index.tsx",
4981
+ "kind": "import-statement",
4982
+ "original": "../provider/roomLayoutProvider"
4983
+ },
4984
+ {
4985
+ "path": "src/Prebuilt/common/utils.js",
4986
+ "kind": "import-statement",
4987
+ "original": "./utils"
4988
+ },
4989
+ {
4990
+ "path": "<define:process.env>",
4991
+ "kind": "import-statement",
4992
+ "external": true
4993
+ }
4994
+ ],
4995
+ "format": "esm"
4996
+ },
4997
+ "src/Prebuilt/components/hooks/useAutoStartStreaming.tsx": {
4998
+ "bytes": 1849,
4999
+ "imports": [
5000
+ {
5001
+ "path": "react",
5002
+ "kind": "import-statement",
5003
+ "external": true
5004
+ },
5005
+ {
5006
+ "path": "@100mslive/react-sdk",
5007
+ "kind": "import-statement",
5008
+ "external": true
5009
+ },
5010
+ {
5011
+ "path": "src/Prebuilt/components/AppData/useUISettings.js",
5012
+ "kind": "import-statement",
5013
+ "original": "../AppData/useUISettings"
5014
+ },
5015
+ {
5016
+ "path": "src/Prebuilt/common/hooks.js",
5017
+ "kind": "import-statement",
5018
+ "original": "../../common/hooks"
5019
+ },
5020
+ {
5021
+ "path": "src/Prebuilt/common/constants.js",
5022
+ "kind": "import-statement",
5023
+ "original": "../../common/constants"
5024
+ },
5025
+ {
5026
+ "path": "<define:process.env>",
5027
+ "kind": "import-statement",
5028
+ "external": true
5029
+ },
5030
+ {
5031
+ "path": "<runtime>",
5032
+ "kind": "import-statement",
5033
+ "external": true
5034
+ }
5035
+ ],
5036
+ "format": "esm"
5037
+ },
5038
+ "src/Prebuilt/components/Footer/EmojiCard.jsx": {
5039
+ "bytes": 1189,
5040
+ "imports": [
5041
+ {
5042
+ "path": "react",
5043
+ "kind": "import-statement",
5044
+ "external": true
5045
+ },
5046
+ {
5047
+ "path": "src/Layout/index.tsx",
4889
5048
  "kind": "import-statement",
4890
5049
  "original": "../../../Layout"
4891
5050
  },
@@ -4903,7 +5062,7 @@
4903
5062
  "format": "esm"
4904
5063
  },
4905
5064
  "src/Prebuilt/components/EmojiReaction.jsx": {
4906
- "bytes": 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": 10869,
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": 1287,
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",
@@ -6744,7 +6820,7 @@
6744
6820
  "format": "esm"
6745
6821
  },
6746
6822
  "src/Prebuilt/components/Chat/ChatParticipantHeader.jsx": {
6747
- "bytes": 2331,
6823
+ "bytes": 2908,
6748
6824
  "imports": [
6749
6825
  {
6750
6826
  "path": "react",
@@ -6766,6 +6842,11 @@
6766
6842
  "kind": "import-statement",
6767
6843
  "original": "../../.."
6768
6844
  },
6845
+ {
6846
+ "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
6847
+ "kind": "import-statement",
6848
+ "original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
6849
+ },
6769
6850
  {
6770
6851
  "path": "src/Prebuilt/components/AppData/useSidepane.js",
6771
6852
  "kind": "import-statement",
@@ -6789,8 +6870,69 @@
6789
6870
  ],
6790
6871
  "format": "esm"
6791
6872
  },
6792
- "src/Prebuilt/components/Footer/RoleAccordion.jsx": {
6793
- "bytes": 2337,
6873
+ "src/Prebuilt/components/Footer/RoleOptions.tsx": {
6874
+ "bytes": 5408,
6875
+ "imports": [
6876
+ {
6877
+ "path": "react",
6878
+ "kind": "import-statement",
6879
+ "external": true
6880
+ },
6881
+ {
6882
+ "path": "@100mslive/types-prebuilt",
6883
+ "kind": "import-statement",
6884
+ "external": true
6885
+ },
6886
+ {
6887
+ "path": "@100mslive/react-sdk",
6888
+ "kind": "import-statement",
6889
+ "external": true
6890
+ },
6891
+ {
6892
+ "path": "@100mslive/react-icons",
6893
+ "kind": "import-statement",
6894
+ "external": true
6895
+ },
6896
+ {
6897
+ "path": "src/Dropdown/index.tsx",
6898
+ "kind": "import-statement",
6899
+ "original": "../../../Dropdown"
6900
+ },
6901
+ {
6902
+ "path": "src/Layout/index.tsx",
6903
+ "kind": "import-statement",
6904
+ "original": "../../../Layout"
6905
+ },
6906
+ {
6907
+ "path": "src/Text/index.tsx",
6908
+ "kind": "import-statement",
6909
+ "original": "../../../Text"
6910
+ },
6911
+ {
6912
+ "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
6913
+ "kind": "import-statement",
6914
+ "original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
6915
+ },
6916
+ {
6917
+ "path": "src/Prebuilt/common/utils.js",
6918
+ "kind": "import-statement",
6919
+ "original": "../../common/utils"
6920
+ },
6921
+ {
6922
+ "path": "<define:process.env>",
6923
+ "kind": "import-statement",
6924
+ "external": true
6925
+ },
6926
+ {
6927
+ "path": "<runtime>",
6928
+ "kind": "import-statement",
6929
+ "external": true
6930
+ }
6931
+ ],
6932
+ "format": "esm"
6933
+ },
6934
+ "src/Prebuilt/components/Footer/RoleAccordion.tsx": {
6935
+ "bytes": 3113,
6794
6936
  "imports": [
6795
6937
  {
6796
6938
  "path": "react",
@@ -6807,6 +6949,11 @@
6807
6949
  "kind": "import-statement",
6808
6950
  "external": true
6809
6951
  },
6952
+ {
6953
+ "path": "@100mslive/react-sdk",
6954
+ "kind": "import-statement",
6955
+ "external": true
6956
+ },
6810
6957
  {
6811
6958
  "path": "src/Accordion/index.ts",
6812
6959
  "kind": "import-statement",
@@ -6817,11 +6964,21 @@
6817
6964
  "kind": "import-statement",
6818
6965
  "original": "../../../Layout"
6819
6966
  },
6967
+ {
6968
+ "path": "src/Text/index.tsx",
6969
+ "kind": "import-statement",
6970
+ "original": "../../../Text"
6971
+ },
6820
6972
  {
6821
6973
  "path": "src/Prebuilt/components/Footer/ParticipantList.jsx",
6822
6974
  "kind": "import-statement",
6823
6975
  "original": "./ParticipantList"
6824
6976
  },
6977
+ {
6978
+ "path": "src/Prebuilt/components/Footer/RoleOptions.tsx",
6979
+ "kind": "import-statement",
6980
+ "original": "./RoleOptions"
6981
+ },
6825
6982
  {
6826
6983
  "path": "src/Prebuilt/common/utils.js",
6827
6984
  "kind": "import-statement",
@@ -6836,7 +6993,7 @@
6836
6993
  "format": "esm"
6837
6994
  },
6838
6995
  "src/Prebuilt/components/Footer/ParticipantList.jsx": {
6839
- "bytes": 11504,
6996
+ "bytes": 10592,
6840
6997
  "imports": [
6841
6998
  {
6842
6999
  "path": "react",
@@ -6868,36 +7025,31 @@
6868
7025
  "kind": "import-statement",
6869
7026
  "original": "../../IconButton"
6870
7027
  },
6871
- {
6872
- "path": "src/Prebuilt/provider/roomLayoutProvider/index.tsx",
6873
- "kind": "import-statement",
6874
- "original": "../../provider/roomLayoutProvider"
6875
- },
6876
7028
  {
6877
7029
  "path": "src/Prebuilt/components/Chat/ChatParticipantHeader.jsx",
6878
7030
  "kind": "import-statement",
6879
7031
  "original": "../Chat/ChatParticipantHeader"
6880
7032
  },
6881
7033
  {
6882
- "path": "src/Prebuilt/components/Connection/ConnectionIndicator.jsx",
7034
+ "path": "src/Prebuilt/components/Connection/ConnectionIndicator.tsx",
6883
7035
  "kind": "import-statement",
6884
7036
  "original": "../Connection/ConnectionIndicator"
6885
7037
  },
6886
- {
6887
- "path": "src/Prebuilt/components/RoleChangeModal.jsx",
6888
- "kind": "import-statement",
6889
- "original": "../RoleChangeModal"
6890
- },
6891
7038
  {
6892
7039
  "path": "src/Prebuilt/components/Toast/ToastManager.js",
6893
7040
  "kind": "import-statement",
6894
7041
  "original": "../Toast/ToastManager"
6895
7042
  },
6896
7043
  {
6897
- "path": "src/Prebuilt/components/Footer/RoleAccordion.jsx",
7044
+ "path": "src/Prebuilt/components/Footer/RoleAccordion.tsx",
6898
7045
  "kind": "import-statement",
6899
7046
  "original": "./RoleAccordion"
6900
7047
  },
7048
+ {
7049
+ "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
7050
+ "kind": "import-statement",
7051
+ "original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
7052
+ },
6901
7053
  {
6902
7054
  "path": "src/Prebuilt/components/AppData/useSidepane.js",
6903
7055
  "kind": "import-statement",
@@ -6932,7 +7084,7 @@
6932
7084
  "format": "esm"
6933
7085
  },
6934
7086
  "src/Prebuilt/components/Footer/Footer.tsx": {
6935
- "bytes": 2569,
7087
+ "bytes": 3349,
6936
7088
  "imports": [
6937
7089
  {
6938
7090
  "path": "react",
@@ -6949,6 +7101,16 @@
6949
7101
  "kind": "import-statement",
6950
7102
  "external": true
6951
7103
  },
7104
+ {
7105
+ "path": "@100mslive/types-prebuilt/elements/chat",
7106
+ "kind": "import-statement",
7107
+ "external": true
7108
+ },
7109
+ {
7110
+ "path": "@100mslive/react-sdk",
7111
+ "kind": "import-statement",
7112
+ "external": true
7113
+ },
6952
7114
  {
6953
7115
  "path": "src/index.ts",
6954
7116
  "kind": "import-statement",
@@ -6985,7 +7147,7 @@
6985
7147
  "original": "../ScreenShareToggle"
6986
7148
  },
6987
7149
  {
6988
- "path": "src/Prebuilt/components/Footer/ChatToggle.jsx",
7150
+ "path": "src/Prebuilt/components/Footer/ChatToggle.tsx",
6989
7151
  "kind": "import-statement",
6990
7152
  "original": "./ChatToggle"
6991
7153
  },
@@ -6998,6 +7160,11 @@
6998
7160
  "path": "<define:process.env>",
6999
7161
  "kind": "import-statement",
7000
7162
  "external": true
7163
+ },
7164
+ {
7165
+ "path": "src/Prebuilt/plugins/VirtualBackground/VirtualBackground.jsx",
7166
+ "kind": "dynamic-import",
7167
+ "original": "../../plugins/VirtualBackground/VirtualBackground"
7001
7168
  }
7002
7169
  ],
7003
7170
  "format": "esm"
@@ -7058,8 +7225,24 @@
7058
7225
  ],
7059
7226
  "format": "esm"
7060
7227
  },
7228
+ "src/Prebuilt/components/hooks/useVideoTileLayout.ts": {
7229
+ "bytes": 707,
7230
+ "imports": [
7231
+ {
7232
+ "path": "react",
7233
+ "kind": "import-statement",
7234
+ "external": true
7235
+ },
7236
+ {
7237
+ "path": "<define:process.env>",
7238
+ "kind": "import-statement",
7239
+ "external": true
7240
+ }
7241
+ ],
7242
+ "format": "esm"
7243
+ },
7061
7244
  "src/Prebuilt/components/InsetTile.tsx": {
7062
- "bytes": 3935,
7245
+ "bytes": 4209,
7063
7246
  "imports": [
7064
7247
  {
7065
7248
  "path": "react",
@@ -7121,6 +7304,11 @@
7121
7304
  "kind": "import-statement",
7122
7305
  "original": "./AppData/useUISettings"
7123
7306
  },
7307
+ {
7308
+ "path": "src/Prebuilt/components/hooks/useVideoTileLayout.ts",
7309
+ "kind": "import-statement",
7310
+ "original": "./hooks/useVideoTileLayout"
7311
+ },
7124
7312
  {
7125
7313
  "path": "src/Prebuilt/common/constants.js",
7126
7314
  "kind": "import-statement",
@@ -7140,7 +7328,7 @@
7140
7328
  "format": "esm"
7141
7329
  },
7142
7330
  "src/Prebuilt/components/Pagination.tsx": {
7143
- "bytes": 1768,
7331
+ "bytes": 1833,
7144
7332
  "imports": [
7145
7333
  {
7146
7334
  "path": "react",
@@ -7148,31 +7336,15 @@
7148
7336
  "external": true
7149
7337
  },
7150
7338
  {
7151
- "path": "@100mslive/react-icons",
7152
- "kind": "import-statement",
7153
- "external": true
7154
- },
7155
- {
7156
- "path": "src/Pagination/index.tsx",
7157
- "kind": "import-statement",
7158
- "original": "../../Pagination"
7159
- },
7160
- {
7161
- "path": "<define:process.env>",
7162
- "kind": "import-statement",
7163
- "external": true
7164
- }
7165
- ],
7166
- "format": "esm"
7167
- },
7168
- "src/Prebuilt/components/hooks/useVideoTileLayout.ts": {
7169
- "bytes": 581,
7170
- "imports": [
7171
- {
7172
- "path": "react",
7339
+ "path": "@100mslive/react-icons",
7173
7340
  "kind": "import-statement",
7174
7341
  "external": true
7175
7342
  },
7343
+ {
7344
+ "path": "src/Pagination/index.tsx",
7345
+ "kind": "import-statement",
7346
+ "original": "../../Pagination"
7347
+ },
7176
7348
  {
7177
7349
  "path": "<define:process.env>",
7178
7350
  "kind": "import-statement",
@@ -7182,7 +7354,7 @@
7182
7354
  "format": "esm"
7183
7355
  },
7184
7356
  "src/Prebuilt/components/VideoLayouts/Grid.tsx": {
7185
- "bytes": 1138,
7357
+ "bytes": 1272,
7186
7358
  "imports": [
7187
7359
  {
7188
7360
  "path": "react",
@@ -7223,7 +7395,7 @@
7223
7395
  "format": "esm"
7224
7396
  },
7225
7397
  "src/Prebuilt/components/hooks/useTileLayout.tsx": {
7226
- "bytes": 4186,
7398
+ "bytes": 4413,
7227
7399
  "imports": [
7228
7400
  {
7229
7401
  "path": "react",
@@ -7254,7 +7426,7 @@
7254
7426
  "format": "esm"
7255
7427
  },
7256
7428
  "src/Prebuilt/components/VideoLayouts/EqualProminence.tsx": {
7257
- "bytes": 2227,
7429
+ "bytes": 2328,
7258
7430
  "imports": [
7259
7431
  {
7260
7432
  "path": "react",
@@ -7325,7 +7497,7 @@
7325
7497
  "format": "esm"
7326
7498
  },
7327
7499
  "src/Prebuilt/components/VideoLayouts/ProminenceLayout.tsx": {
7328
- "bytes": 1843,
7500
+ "bytes": 2085,
7329
7501
  "imports": [
7330
7502
  {
7331
7503
  "path": "react",
@@ -7371,7 +7543,7 @@
7371
7543
  "format": "esm"
7372
7544
  },
7373
7545
  "src/Prebuilt/components/SecondaryTiles.tsx": {
7374
- "bytes": 1132,
7546
+ "bytes": 1217,
7375
7547
  "imports": [
7376
7548
  {
7377
7549
  "path": "react",
@@ -7417,7 +7589,7 @@
7417
7589
  "format": "esm"
7418
7590
  },
7419
7591
  "src/Prebuilt/components/hooks/useRoleProminencePeers.tsx": {
7420
- "bytes": 1053,
7592
+ "bytes": 1092,
7421
7593
  "imports": [
7422
7594
  {
7423
7595
  "path": "react",
@@ -7443,7 +7615,7 @@
7443
7615
  "format": "esm"
7444
7616
  },
7445
7617
  "src/Prebuilt/components/VideoLayouts/RoleProminence.tsx": {
7446
- "bytes": 1817,
7618
+ "bytes": 1904,
7447
7619
  "imports": [
7448
7620
  {
7449
7621
  "path": "react",
@@ -7550,7 +7722,7 @@
7550
7722
  "format": "esm"
7551
7723
  },
7552
7724
  "src/Prebuilt/components/ScreenshareTile.jsx": {
7553
- "bytes": 3535,
7725
+ "bytes": 3494,
7554
7726
  "imports": [
7555
7727
  {
7556
7728
  "path": "react",
@@ -7626,18 +7798,28 @@
7626
7798
  "format": "esm"
7627
7799
  },
7628
7800
  "src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx": {
7629
- "bytes": 1635,
7801
+ "bytes": 2131,
7630
7802
  "imports": [
7631
7803
  {
7632
7804
  "path": "react",
7633
7805
  "kind": "import-statement",
7634
7806
  "external": true
7635
7807
  },
7808
+ {
7809
+ "path": "react-use",
7810
+ "kind": "import-statement",
7811
+ "external": true
7812
+ },
7636
7813
  {
7637
7814
  "path": "@100mslive/react-sdk",
7638
7815
  "kind": "import-statement",
7639
7816
  "external": true
7640
7817
  },
7818
+ {
7819
+ "path": "src/Theme/index.tsx",
7820
+ "kind": "import-statement",
7821
+ "original": "../../../Theme"
7822
+ },
7641
7823
  {
7642
7824
  "path": "src/Prebuilt/components/Pagination.tsx",
7643
7825
  "kind": "import-statement",
@@ -7682,7 +7864,7 @@
7682
7864
  "format": "esm"
7683
7865
  },
7684
7866
  "src/Prebuilt/common/PeersSorter.ts": {
7685
- "bytes": 2744,
7867
+ "bytes": 2767,
7686
7868
  "imports": [
7687
7869
  {
7688
7870
  "path": "@100mslive/react-sdk",
@@ -7698,7 +7880,7 @@
7698
7880
  "format": "esm"
7699
7881
  },
7700
7882
  "src/Prebuilt/components/VideoLayouts/GridLayout.tsx": {
7701
- "bytes": 3177,
7883
+ "bytes": 3819,
7702
7884
  "imports": [
7703
7885
  {
7704
7886
  "path": "react",
@@ -7754,7 +7936,7 @@
7754
7936
  "format": "esm"
7755
7937
  },
7756
7938
  "src/Prebuilt/layouts/EmbedView.jsx": {
7757
- "bytes": 4073,
7939
+ "bytes": 3505,
7758
7940
  "imports": [
7759
7941
  {
7760
7942
  "path": "react",
@@ -7886,7 +8068,7 @@
7886
8068
  "format": "esm"
7887
8069
  },
7888
8070
  "src/Prebuilt/components/Chat/ChatBody.jsx": {
7889
- "bytes": 12598,
8071
+ "bytes": 12870,
7890
8072
  "imports": [
7891
8073
  {
7892
8074
  "path": "react",
@@ -7959,9 +8141,9 @@
7959
8141
  "original": "../../images/empty-chat.svg"
7960
8142
  },
7961
8143
  {
7962
- "path": "src/Prebuilt/components/Toast/ToastManager.js",
8144
+ "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
7963
8145
  "kind": "import-statement",
7964
- "original": "../Toast/ToastManager"
8146
+ "original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
7965
8147
  },
7966
8148
  {
7967
8149
  "path": "src/Prebuilt/components/hooks/useSetPinnedMessage.js",
@@ -8008,7 +8190,7 @@
8008
8190
  "format": "esm"
8009
8191
  },
8010
8192
  "src/Prebuilt/components/Chat/useEmojiPickerStyles.js": {
8011
- "bytes": 991,
8193
+ "bytes": 1022,
8012
8194
  "imports": [
8013
8195
  {
8014
8196
  "path": "react",
@@ -8023,8 +8205,8 @@
8023
8205
  ],
8024
8206
  "format": "esm"
8025
8207
  },
8026
- "src/Prebuilt/components/Chat/ChatFooter.jsx": {
8027
- "bytes": 5084,
8208
+ "src/Prebuilt/components/Chat/ChatFooter.tsx": {
8209
+ "bytes": 5859,
8028
8210
  "imports": [
8029
8211
  {
8030
8212
  "path": "react",
@@ -8059,13 +8241,18 @@
8059
8241
  {
8060
8242
  "path": "src/index.ts",
8061
8243
  "kind": "import-statement",
8062
- "original": "../../../"
8244
+ "original": "../../.."
8063
8245
  },
8064
8246
  {
8065
8247
  "path": "src/Prebuilt/components/Toast/ToastManager.js",
8066
8248
  "kind": "import-statement",
8067
8249
  "original": "../Toast/ToastManager"
8068
8250
  },
8251
+ {
8252
+ "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
8253
+ "kind": "import-statement",
8254
+ "original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
8255
+ },
8069
8256
  {
8070
8257
  "path": "src/Prebuilt/components/AppData/useChatState.js",
8071
8258
  "kind": "import-statement",
@@ -8106,7 +8293,7 @@
8106
8293
  "format": "esm"
8107
8294
  },
8108
8295
  "src/Prebuilt/components/Chat/Chat.jsx": {
8109
- "bytes": 5986,
8296
+ "bytes": 6662,
8110
8297
  "imports": [
8111
8298
  {
8112
8299
  "path": "react",
@@ -8154,7 +8341,7 @@
8154
8341
  "original": "./ChatBody"
8155
8342
  },
8156
8343
  {
8157
- "path": "src/Prebuilt/components/Chat/ChatFooter.jsx",
8344
+ "path": "src/Prebuilt/components/Chat/ChatFooter.tsx",
8158
8345
  "kind": "import-statement",
8159
8346
  "original": "./ChatFooter"
8160
8347
  },
@@ -8163,6 +8350,11 @@
8163
8350
  "kind": "import-statement",
8164
8351
  "original": "./ChatParticipantHeader"
8165
8352
  },
8353
+ {
8354
+ "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
8355
+ "kind": "import-statement",
8356
+ "original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
8357
+ },
8166
8358
  {
8167
8359
  "path": "src/Prebuilt/components/AppData/useUISettings.js",
8168
8360
  "kind": "import-statement",
@@ -8323,7 +8515,7 @@
8323
8515
  "format": "esm"
8324
8516
  },
8325
8517
  "src/Prebuilt/layouts/SidePane.tsx": {
8326
- "bytes": 3119,
8518
+ "bytes": 3553,
8327
8519
  "imports": [
8328
8520
  {
8329
8521
  "path": "react",
@@ -8360,6 +8552,11 @@
8360
8552
  "kind": "import-statement",
8361
8553
  "original": "../components/Streaming/StreamingLanding"
8362
8554
  },
8555
+ {
8556
+ "path": "../components/VideoLayouts/GridLayout",
8557
+ "kind": "import-statement",
8558
+ "external": true
8559
+ },
8363
8560
  {
8364
8561
  "path": "src/Prebuilt/components/VideoTile.jsx",
8365
8562
  "kind": "import-statement",
@@ -8375,6 +8572,11 @@
8375
8572
  "kind": "import-statement",
8376
8573
  "original": "../../Theme"
8377
8574
  },
8575
+ {
8576
+ "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
8577
+ "kind": "import-statement",
8578
+ "original": "../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
8579
+ },
8378
8580
  {
8379
8581
  "path": "src/Prebuilt/common/constants.js",
8380
8582
  "kind": "import-statement",
@@ -8384,6 +8586,11 @@
8384
8586
  "path": "<define:process.env>",
8385
8587
  "kind": "import-statement",
8386
8588
  "external": true
8589
+ },
8590
+ {
8591
+ "path": "<runtime>",
8592
+ "kind": "import-statement",
8593
+ "external": true
8387
8594
  }
8388
8595
  ],
8389
8596
  "format": "esm"
@@ -8456,7 +8663,7 @@
8456
8663
  "format": "esm"
8457
8664
  },
8458
8665
  "src/Prebuilt/components/HMSVideo/Controls.jsx": {
8459
- "bytes": 439,
8666
+ "bytes": 463,
8460
8667
  "imports": [
8461
8668
  {
8462
8669
  "path": "src/index.ts",
@@ -8472,7 +8679,7 @@
8472
8679
  "format": "esm"
8473
8680
  },
8474
8681
  "src/Prebuilt/components/HMSVideo/HMSVideo.jsx": {
8475
- "bytes": 372,
8682
+ "bytes": 415,
8476
8683
  "imports": [
8477
8684
  {
8478
8685
  "path": "react",
@@ -8488,6 +8695,11 @@
8488
8695
  "path": "<define:process.env>",
8489
8696
  "kind": "import-statement",
8490
8697
  "external": true
8698
+ },
8699
+ {
8700
+ "path": "<runtime>",
8701
+ "kind": "import-statement",
8702
+ "external": true
8491
8703
  }
8492
8704
  ],
8493
8705
  "format": "esm"
@@ -8530,7 +8742,7 @@
8530
8742
  "format": "esm"
8531
8743
  },
8532
8744
  "src/Prebuilt/components/HMSVideo/VideoProgress.jsx": {
8533
- "bytes": 2389,
8745
+ "bytes": 2352,
8534
8746
  "imports": [
8535
8747
  {
8536
8748
  "path": "react",
@@ -8701,7 +8913,7 @@
8701
8913
  "format": "esm"
8702
8914
  },
8703
8915
  "src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx": {
8704
- "bytes": 3487,
8916
+ "bytes": 4183,
8705
8917
  "imports": [
8706
8918
  {
8707
8919
  "path": "react",
@@ -8727,7 +8939,7 @@
8727
8939
  "format": "esm"
8728
8940
  },
8729
8941
  "src/Prebuilt/layouts/HLSView.jsx": {
8730
- "bytes": 11569,
8942
+ "bytes": 14271,
8731
8943
  "imports": [
8732
8944
  {
8733
8945
  "path": "react",
@@ -8838,18 +9050,13 @@
8838
9050
  "format": "esm"
8839
9051
  },
8840
9052
  "src/Prebuilt/layouts/VideoStreamingSection.tsx": {
8841
- "bytes": 4131,
9053
+ "bytes": 3145,
8842
9054
  "imports": [
8843
9055
  {
8844
9056
  "path": "react",
8845
9057
  "kind": "import-statement",
8846
9058
  "external": true
8847
9059
  },
8848
- {
8849
- "path": "@100mslive/hms-video",
8850
- "kind": "import-statement",
8851
- "external": true
8852
- },
8853
9060
  {
8854
9061
  "path": "@100mslive/types-prebuilt",
8855
9062
  "kind": "import-statement",
@@ -8900,11 +9107,6 @@
8900
9107
  "kind": "import-statement",
8901
9108
  "original": "../components/AppData/useUISettings"
8902
9109
  },
8903
- {
8904
- "path": "src/Prebuilt/common/hooks.js",
8905
- "kind": "import-statement",
8906
- "original": "../common/hooks"
8907
- },
8908
9110
  {
8909
9111
  "path": "src/Prebuilt/common/constants.js",
8910
9112
  "kind": "import-statement",
@@ -8928,8 +9130,8 @@
8928
9130
  ],
8929
9131
  "format": "esm"
8930
9132
  },
8931
- "src/Prebuilt/components/RoleChangeRequestModal.jsx": {
8932
- "bytes": 3283,
9133
+ "src/Prebuilt/components/RoleChangeRequestModal.tsx": {
9134
+ "bytes": 3605,
8933
9135
  "imports": [
8934
9136
  {
8935
9137
  "path": "react",
@@ -8942,19 +9144,14 @@
8942
9144
  "external": true
8943
9145
  },
8944
9146
  {
8945
- "path": "src/Prebuilt/components/Preview/PreviewJoin.jsx",
9147
+ "path": "src/Prebuilt/components/Preview/PreviewJoin.tsx",
8946
9148
  "kind": "import-statement",
8947
9149
  "original": "./Preview/PreviewJoin"
8948
9150
  },
8949
9151
  {
8950
9152
  "path": "src/index.ts",
8951
9153
  "kind": "import-statement",
8952
- "original": "../../"
8953
- },
8954
- {
8955
- "path": "src/Prebuilt/components/AppData/useUISettings.js",
8956
- "kind": "import-statement",
8957
- "original": "./AppData/useUISettings"
9154
+ "original": "../.."
8958
9155
  },
8959
9156
  {
8960
9157
  "path": "src/Prebuilt/components/hooks/useMetadata.jsx",
@@ -8980,7 +9177,7 @@
8980
9177
  "format": "esm"
8981
9178
  },
8982
9179
  "src/Prebuilt/components/conference.jsx": {
8983
- "bytes": 6340,
9180
+ "bytes": 6434,
8984
9181
  "imports": [
8985
9182
  {
8986
9183
  "path": "react",
@@ -9048,7 +9245,7 @@
9048
9245
  "original": "./Header"
9049
9246
  },
9050
9247
  {
9051
- "path": "src/Prebuilt/components/RoleChangeRequestModal.jsx",
9248
+ "path": "src/Prebuilt/components/RoleChangeRequestModal.tsx",
9052
9249
  "kind": "import-statement",
9053
9250
  "original": "./RoleChangeRequestModal"
9054
9251
  },
@@ -9076,7 +9273,7 @@
9076
9273
  "format": "esm"
9077
9274
  },
9078
9275
  "src/Prebuilt/App.tsx": {
9079
- "bytes": 12316,
9276
+ "bytes": 11824,
9080
9277
  "imports": [
9081
9278
  {
9082
9279
  "path": "react",
@@ -9108,11 +9305,6 @@
9108
9305
  "kind": "import-statement",
9109
9306
  "original": "./components/AppData/AppData"
9110
9307
  },
9111
- {
9112
- "path": "src/Prebuilt/components/AudioLevel/BeamSpeakerLabelsLogging.jsx",
9113
- "kind": "import-statement",
9114
- "original": "./components/AudioLevel/BeamSpeakerLabelsLogging"
9115
- },
9116
9308
  {
9117
9309
  "path": "src/Prebuilt/components/AuthToken.jsx",
9118
9310
  "kind": "import-statement",
@@ -9149,7 +9341,7 @@
9149
9341
  "original": "./components/PostLeave"
9150
9342
  },
9151
9343
  {
9152
- "path": "src/Prebuilt/components/Preview/PreviewContainer.jsx",
9344
+ "path": "src/Prebuilt/components/Preview/PreviewContainer.tsx",
9153
9345
  "kind": "import-statement",
9154
9346
  "original": "./components/Preview/PreviewContainer"
9155
9347
  },
@@ -9188,6 +9380,16 @@
9188
9380
  "kind": "import-statement",
9189
9381
  "original": "./plugins/RemoteStopScreenshare"
9190
9382
  },
9383
+ {
9384
+ "path": "src/Prebuilt/components/AppData/useUISettings.js",
9385
+ "kind": "import-statement",
9386
+ "original": "./components/AppData/useUISettings"
9387
+ },
9388
+ {
9389
+ "path": "src/Prebuilt/components/hooks/useAutoStartStreaming.tsx",
9390
+ "kind": "import-statement",
9391
+ "original": "./components/hooks/useAutoStartStreaming"
9392
+ },
9191
9393
  {
9192
9394
  "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
9193
9395
  "kind": "import-statement",
@@ -9460,7 +9662,7 @@
9460
9662
  "imports": [],
9461
9663
  "exports": [],
9462
9664
  "inputs": {},
9463
- "bytes": 975805
9665
+ "bytes": 1007154
9464
9666
  },
9465
9667
  "dist/index.cjs.js": {
9466
9668
  "imports": [
@@ -9759,23 +9961,13 @@
9759
9961
  "kind": "require-call",
9760
9962
  "external": true
9761
9963
  },
9762
- {
9763
- "path": "@100mslive/react-sdk",
9764
- "kind": "require-call",
9765
- "external": true
9766
- },
9767
9964
  {
9768
9965
  "path": "react",
9769
9966
  "kind": "require-call",
9770
9967
  "external": true
9771
9968
  },
9772
9969
  {
9773
- "path": "@100mslive/react-sdk",
9774
- "kind": "require-call",
9775
- "external": true
9776
- },
9777
- {
9778
- "path": "react",
9970
+ "path": "@100mslive/react-icons",
9779
9971
  "kind": "require-call",
9780
9972
  "external": true
9781
9973
  },
@@ -9785,7 +9977,7 @@
9785
9977
  "external": true
9786
9978
  },
9787
9979
  {
9788
- "path": "@100mslive/react-icons",
9980
+ "path": "@100mslive/react-sdk",
9789
9981
  "kind": "require-call",
9790
9982
  "external": true
9791
9983
  },
@@ -9795,7 +9987,7 @@
9795
9987
  "external": true
9796
9988
  },
9797
9989
  {
9798
- "path": "@100mslive/react-sdk",
9990
+ "path": "@100mslive/react-icons",
9799
9991
  "kind": "require-call",
9800
9992
  "external": true
9801
9993
  },
@@ -9805,12 +9997,12 @@
9805
9997
  "external": true
9806
9998
  },
9807
9999
  {
9808
- "path": "@100mslive/react-icons",
10000
+ "path": "react",
9809
10001
  "kind": "require-call",
9810
10002
  "external": true
9811
10003
  },
9812
10004
  {
9813
- "path": "react",
10005
+ "path": "@100mslive/react-sdk",
9814
10006
  "kind": "require-call",
9815
10007
  "external": true
9816
10008
  },
@@ -9959,6 +10151,21 @@
9959
10151
  "kind": "require-call",
9960
10152
  "external": true
9961
10153
  },
10154
+ {
10155
+ "path": "worker-timers",
10156
+ "kind": "require-call",
10157
+ "external": true
10158
+ },
10159
+ {
10160
+ "path": "react",
10161
+ "kind": "require-call",
10162
+ "external": true
10163
+ },
10164
+ {
10165
+ "path": "react-router-dom",
10166
+ "kind": "require-call",
10167
+ "external": true
10168
+ },
9962
10169
  {
9963
10170
  "path": "react",
9964
10171
  "kind": "require-call",
@@ -10279,6 +10486,11 @@
10279
10486
  "kind": "require-call",
10280
10487
  "external": true
10281
10488
  },
10489
+ {
10490
+ "path": "react-use",
10491
+ "kind": "require-call",
10492
+ "external": true
10493
+ },
10282
10494
  {
10283
10495
  "path": "@100mslive/react-sdk",
10284
10496
  "kind": "require-call",
@@ -10319,11 +10531,6 @@
10319
10531
  "kind": "require-call",
10320
10532
  "external": true
10321
10533
  },
10322
- {
10323
- "path": "react-use",
10324
- "kind": "require-call",
10325
- "external": true
10326
- },
10327
10534
  {
10328
10535
  "path": "@100mslive/react-sdk",
10329
10536
  "kind": "require-call",
@@ -10399,6 +10606,11 @@
10399
10606
  "kind": "require-call",
10400
10607
  "external": true
10401
10608
  },
10609
+ {
10610
+ "path": "react-use",
10611
+ "kind": "require-call",
10612
+ "external": true
10613
+ },
10402
10614
  {
10403
10615
  "path": "@100mslive/react-sdk",
10404
10616
  "kind": "require-call",
@@ -10470,52 +10682,57 @@
10470
10682
  "external": true
10471
10683
  },
10472
10684
  {
10473
- "path": "react",
10685
+ "path": "@100mslive/types-prebuilt/elements/join_form",
10474
10686
  "kind": "require-call",
10475
10687
  "external": true
10476
10688
  },
10477
10689
  {
10478
- "path": "react-use",
10690
+ "path": "@100mslive/react-sdk",
10479
10691
  "kind": "require-call",
10480
10692
  "external": true
10481
10693
  },
10482
10694
  {
10483
- "path": "@emoji-mart/data/sets/14/apple.json",
10695
+ "path": "react",
10484
10696
  "kind": "require-call",
10485
10697
  "external": true
10486
10698
  },
10487
10699
  {
10488
- "path": "emoji-mart",
10700
+ "path": "@100mslive/react-sdk",
10489
10701
  "kind": "require-call",
10490
10702
  "external": true
10491
10703
  },
10492
10704
  {
10493
- "path": "@100mslive/react-sdk",
10705
+ "path": "react",
10494
10706
  "kind": "require-call",
10495
10707
  "external": true
10496
10708
  },
10497
10709
  {
10498
- "path": "@100mslive/react-icons",
10710
+ "path": "react",
10499
10711
  "kind": "require-call",
10500
10712
  "external": true
10501
10713
  },
10502
10714
  {
10503
- "path": "worker-timers",
10715
+ "path": "react-use",
10504
10716
  "kind": "require-call",
10505
10717
  "external": true
10506
10718
  },
10507
10719
  {
10508
- "path": "react",
10720
+ "path": "@emoji-mart/data/sets/14/apple.json",
10509
10721
  "kind": "require-call",
10510
10722
  "external": true
10511
10723
  },
10512
10724
  {
10513
- "path": "@100mslive/react-icons",
10725
+ "path": "emoji-mart",
10514
10726
  "kind": "require-call",
10515
10727
  "external": true
10516
10728
  },
10517
10729
  {
10518
- "path": "react",
10730
+ "path": "@100mslive/react-sdk",
10731
+ "kind": "require-call",
10732
+ "external": true
10733
+ },
10734
+ {
10735
+ "path": "@100mslive/react-icons",
10519
10736
  "kind": "require-call",
10520
10737
  "external": true
10521
10738
  },
@@ -10535,7 +10752,7 @@
10535
10752
  "external": true
10536
10753
  },
10537
10754
  {
10538
- "path": "@100mslive/react-sdk",
10755
+ "path": "react",
10539
10756
  "kind": "require-call",
10540
10757
  "external": true
10541
10758
  },
@@ -10565,27 +10782,22 @@
10565
10782
  "external": true
10566
10783
  },
10567
10784
  {
10568
- "path": "react-router-dom",
10569
- "kind": "require-call",
10570
- "external": true
10571
- },
10572
- {
10573
- "path": "react-use",
10785
+ "path": "@100mslive/react-sdk",
10574
10786
  "kind": "require-call",
10575
10787
  "external": true
10576
10788
  },
10577
10789
  {
10578
- "path": "@100mslive/react-sdk",
10790
+ "path": "@100mslive/react-icons",
10579
10791
  "kind": "require-call",
10580
10792
  "external": true
10581
10793
  },
10582
10794
  {
10583
- "path": "@100mslive/react-sdk",
10795
+ "path": "react",
10584
10796
  "kind": "require-call",
10585
10797
  "external": true
10586
10798
  },
10587
10799
  {
10588
- "path": "react",
10800
+ "path": "react-use",
10589
10801
  "kind": "require-call",
10590
10802
  "external": true
10591
10803
  },
@@ -10595,7 +10807,7 @@
10595
10807
  "external": true
10596
10808
  },
10597
10809
  {
10598
- "path": "@100mslive/react-icons",
10810
+ "path": "@100mslive/react-sdk",
10599
10811
  "kind": "require-call",
10600
10812
  "external": true
10601
10813
  },
@@ -10605,17 +10817,17 @@
10605
10817
  "external": true
10606
10818
  },
10607
10819
  {
10608
- "path": "react",
10820
+ "path": "@100mslive/react-sdk",
10609
10821
  "kind": "require-call",
10610
10822
  "external": true
10611
10823
  },
10612
10824
  {
10613
- "path": "@100mslive/types-prebuilt/elements/join_form",
10825
+ "path": "@100mslive/react-icons",
10614
10826
  "kind": "require-call",
10615
10827
  "external": true
10616
10828
  },
10617
10829
  {
10618
- "path": "@100mslive/react-sdk",
10830
+ "path": "react",
10619
10831
  "kind": "require-call",
10620
10832
  "external": true
10621
10833
  },
@@ -10919,6 +11131,21 @@
10919
11131
  "kind": "require-call",
10920
11132
  "external": true
10921
11133
  },
11134
+ {
11135
+ "path": "@100mslive/react-sdk",
11136
+ "kind": "require-call",
11137
+ "external": true
11138
+ },
11139
+ {
11140
+ "path": "@100mslive/react-icons",
11141
+ "kind": "require-call",
11142
+ "external": true
11143
+ },
11144
+ {
11145
+ "path": "react",
11146
+ "kind": "require-call",
11147
+ "external": true
11148
+ },
10922
11149
  {
10923
11150
  "path": "react-use",
10924
11151
  "kind": "require-call",
@@ -10959,6 +11186,16 @@
10959
11186
  "kind": "require-call",
10960
11187
  "external": true
10961
11188
  },
11189
+ {
11190
+ "path": "@100mslive/types-prebuilt/elements/chat",
11191
+ "kind": "require-call",
11192
+ "external": true
11193
+ },
11194
+ {
11195
+ "path": "@100mslive/react-sdk",
11196
+ "kind": "require-call",
11197
+ "external": true
11198
+ },
10962
11199
  {
10963
11200
  "path": "react",
10964
11201
  "kind": "require-call",
@@ -10974,6 +11211,11 @@
10974
11211
  "kind": "require-call",
10975
11212
  "external": true
10976
11213
  },
11214
+ {
11215
+ "path": "react",
11216
+ "kind": "require-call",
11217
+ "external": true
11218
+ },
10977
11219
  {
10978
11220
  "path": "react-draggable",
10979
11221
  "kind": "require-call",
@@ -11014,11 +11256,6 @@
11014
11256
  "kind": "require-call",
11015
11257
  "external": true
11016
11258
  },
11017
- {
11018
- "path": "react",
11019
- "kind": "require-call",
11020
- "external": true
11021
- },
11022
11259
  {
11023
11260
  "path": "react-use",
11024
11261
  "kind": "require-call",
@@ -11119,6 +11356,11 @@
11119
11356
  "kind": "require-call",
11120
11357
  "external": true
11121
11358
  },
11359
+ {
11360
+ "path": "react-use",
11361
+ "kind": "require-call",
11362
+ "external": true
11363
+ },
11122
11364
  {
11123
11365
  "path": "@100mslive/react-sdk",
11124
11366
  "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": 18543
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
@@ -11794,7 +12033,7 @@
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,8 +12074,20 @@
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": 6767
11840
12091
  },
11841
12092
  "src/Prebuilt/components/Notifications/index.jsx": {
11842
12093
  "bytesInOutput": 173
@@ -11851,7 +12102,7 @@
11851
12102
  "bytesInOutput": 128
11852
12103
  },
11853
12104
  "src/Prebuilt/components/hooks/useMetadata.jsx": {
11854
- "bytesInOutput": 2361
12105
+ "bytesInOutput": 2545
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
@@ -11961,11 +12209,11 @@
11961
12209
  "src/Prebuilt/plugins/VirtualBackground/VirtualBackground.jsx": {
11962
12210
  "bytesInOutput": 5077
11963
12211
  },
11964
- "src/Prebuilt/components/Preview/PreviewJoin.jsx": {
11965
- "bytesInOutput": 10806
12212
+ "src/Prebuilt/components/Preview/PreviewJoin.tsx": {
12213
+ "bytesInOutput": 11163
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": 11413
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,74 @@
12099
12344
  "src/Prebuilt/components/ScreenShareToggle.jsx": {
12100
12345
  "bytesInOutput": 2035
12101
12346
  },
12102
- "src/Prebuilt/components/Footer/ChatToggle.jsx": {
12103
- "bytesInOutput": 1304
12347
+ "src/Prebuilt/components/Footer/ChatToggle.tsx": {
12348
+ "bytesInOutput": 1483
12104
12349
  },
12105
12350
  "src/Prebuilt/components/Chat/ChatParticipantHeader.jsx": {
12106
- "bytesInOutput": 3115
12351
+ "bytesInOutput": 3625
12107
12352
  },
12108
- "src/Prebuilt/components/Footer/RoleAccordion.jsx": {
12109
- "bytesInOutput": 3060
12353
+ "src/Prebuilt/components/Footer/RoleOptions.tsx": {
12354
+ "bytesInOutput": 6833
12355
+ },
12356
+ "src/Prebuilt/components/Footer/RoleAccordion.tsx": {
12357
+ "bytesInOutput": 3518
12110
12358
  },
12111
12359
  "src/Prebuilt/components/Footer/ParticipantList.jsx": {
12112
- "bytesInOutput": 14678
12360
+ "bytesInOutput": 13484
12113
12361
  },
12114
12362
  "src/Prebuilt/components/Footer/Footer.tsx": {
12115
- "bytesInOutput": 3040
12363
+ "bytesInOutput": 4257
12116
12364
  },
12117
12365
  "src/Prebuilt/components/Notifications/HLSFailureModal.jsx": {
12118
12366
  "bytesInOutput": 2795
12119
12367
  },
12368
+ "src/Prebuilt/components/hooks/useVideoTileLayout.ts": {
12369
+ "bytesInOutput": 706
12370
+ },
12120
12371
  "src/Prebuilt/components/InsetTile.tsx": {
12121
- "bytesInOutput": 4710
12372
+ "bytesInOutput": 5043
12122
12373
  },
12123
12374
  "src/Prebuilt/components/Pagination.tsx": {
12124
- "bytesInOutput": 2095
12125
- },
12126
- "src/Prebuilt/components/hooks/useVideoTileLayout.ts": {
12127
- "bytesInOutput": 638
12375
+ "bytesInOutput": 2118
12128
12376
  },
12129
12377
  "src/Prebuilt/components/VideoLayouts/Grid.tsx": {
12130
- "bytesInOutput": 1499
12378
+ "bytesInOutput": 1620
12131
12379
  },
12132
12380
  "src/Prebuilt/components/hooks/useTileLayout.tsx": {
12133
- "bytesInOutput": 4261
12381
+ "bytesInOutput": 4481
12134
12382
  },
12135
12383
  "src/Prebuilt/components/VideoLayouts/EqualProminence.tsx": {
12136
- "bytesInOutput": 2365
12384
+ "bytesInOutput": 2420
12137
12385
  },
12138
12386
  "src/Prebuilt/components/VideoLayouts/ProminenceLayout.tsx": {
12139
- "bytesInOutput": 2178
12387
+ "bytesInOutput": 2590
12140
12388
  },
12141
12389
  "src/Prebuilt/components/SecondaryTiles.tsx": {
12142
- "bytesInOutput": 1441
12390
+ "bytesInOutput": 1480
12143
12391
  },
12144
12392
  "src/Prebuilt/components/hooks/useRoleProminencePeers.tsx": {
12145
- "bytesInOutput": 1263
12393
+ "bytesInOutput": 1302
12146
12394
  },
12147
12395
  "src/Prebuilt/components/VideoLayouts/RoleProminence.tsx": {
12148
- "bytesInOutput": 2128
12396
+ "bytesInOutput": 2169
12149
12397
  },
12150
12398
  "src/Prebuilt/components/ScreenshareDisplay.jsx": {
12151
12399
  "bytesInOutput": 1707
12152
12400
  },
12153
12401
  "src/Prebuilt/components/ScreenshareTile.jsx": {
12154
- "bytesInOutput": 4585
12402
+ "bytesInOutput": 4551
12155
12403
  },
12156
12404
  "src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx": {
12157
- "bytesInOutput": 1863
12405
+ "bytesInOutput": 2453
12158
12406
  },
12159
12407
  "src/Prebuilt/common/PeersSorter.ts": {
12160
- "bytesInOutput": 3205
12408
+ "bytesInOutput": 3228
12161
12409
  },
12162
12410
  "src/Prebuilt/components/VideoLayouts/GridLayout.tsx": {
12163
- "bytesInOutput": 3323
12411
+ "bytesInOutput": 3980
12164
12412
  },
12165
12413
  "src/Prebuilt/layouts/EmbedView.jsx": {
12166
- "bytesInOutput": 4705
12414
+ "bytesInOutput": 3948
12167
12415
  },
12168
12416
  "src/Prebuilt/layouts/PDFView.jsx": {
12169
12417
  "bytesInOutput": 3901
@@ -12175,22 +12423,22 @@
12175
12423
  "bytesInOutput": 1519
12176
12424
  },
12177
12425
  "src/Prebuilt/components/Chat/ChatBody.jsx": {
12178
- "bytesInOutput": 15778
12426
+ "bytesInOutput": 15309
12179
12427
  },
12180
12428
  "src/Prebuilt/components/AppData/useChatState.js": {
12181
12429
  "bytesInOutput": 914
12182
12430
  },
12183
12431
  "src/Prebuilt/components/Chat/useEmojiPickerStyles.js": {
12184
- "bytesInOutput": 1383
12432
+ "bytesInOutput": 1414
12185
12433
  },
12186
- "src/Prebuilt/components/Chat/ChatFooter.jsx": {
12187
- "bytesInOutput": 6193
12434
+ "src/Prebuilt/components/Chat/ChatFooter.tsx": {
12435
+ "bytesInOutput": 6792
12188
12436
  },
12189
12437
  "src/Prebuilt/components/Chat/useUnreadCount.js": {
12190
12438
  "bytesInOutput": 637
12191
12439
  },
12192
12440
  "src/Prebuilt/components/Chat/Chat.jsx": {
12193
- "bytesInOutput": 7565
12441
+ "bytesInOutput": 8515
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": 3805
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": 4657
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": 841534
12272
12520
  }
12273
12521
  }
12274
12522
  }