@100mslive/roomkit-react 0.2.8-alpha.0 → 0.2.8-alpha.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. package/dist/HLSView-FBEGJ3L7.js +1396 -0
  2. package/dist/HLSView-FBEGJ3L7.js.map +7 -0
  3. package/dist/Prebuilt/common/hooks.d.ts +3 -0
  4. package/dist/Prebuilt/components/Chat/MwebChatOption.d.ts +1 -1
  5. package/dist/Prebuilt/components/HMSVideo/FullscreenButton.d.ts +5 -0
  6. package/dist/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.d.ts +5 -0
  7. package/dist/Prebuilt/components/HMSVideo/HLSCaptionSelector.d.ts +1 -2
  8. package/dist/Prebuilt/components/HMSVideo/HLSQualitySelector.d.ts +13 -0
  9. package/dist/Prebuilt/components/HMSVideo/MwebHLSViewTitle.d.ts +2 -0
  10. package/dist/Prebuilt/components/HMSVideo/PlayButton.d.ts +6 -0
  11. package/dist/Prebuilt/components/HMSVideo/PlayPauseButton.d.ts +6 -0
  12. package/dist/Prebuilt/components/HMSVideo/PlayerContext.d.ts +8 -0
  13. package/dist/Prebuilt/components/HMSVideo/SeekControls.d.ts +7 -0
  14. package/dist/Prebuilt/components/HMSVideo/VideoProgress.d.ts +5 -0
  15. package/dist/Prebuilt/components/HMSVideo/VideoTime.d.ts +2 -0
  16. package/dist/Prebuilt/components/HMSVideo/VolumeControl.d.ts +2 -0
  17. package/dist/Prebuilt/components/HMSVideo/index.d.ts +26 -0
  18. package/dist/Prebuilt/components/HMSVideo/utils.d.ts +8 -0
  19. package/dist/Prebuilt/components/Leave/DesktopLeaveRoom.d.ts +2 -1
  20. package/dist/Prebuilt/components/Leave/LeaveRoom.d.ts +2 -1
  21. package/dist/Prebuilt/components/Leave/MwebLeaveRoom.d.ts +2 -3
  22. package/dist/Prebuilt/components/MwebLandscapePrompt.d.ts +1 -1
  23. package/dist/Prebuilt/components/RaiseHand.d.ts +5 -0
  24. package/dist/Prebuilt/components/SidePaneTabs.d.ts +1 -1
  25. package/dist/Sheet/Sheet.d.ts +1 -0
  26. package/dist/{chunk-72B32WVR.js → chunk-R2JJJQR3.js} +1684 -1316
  27. package/dist/chunk-R2JJJQR3.js.map +7 -0
  28. package/dist/index.cjs.js +2866 -2053
  29. package/dist/index.cjs.js.map +4 -4
  30. package/dist/index.js +1 -1
  31. package/dist/meta.cjs.json +786 -299
  32. package/dist/meta.esbuild.json +805 -307
  33. package/package.json +7 -6
  34. package/src/Button/Button.tsx +4 -4
  35. package/src/Fieldset/Fieldset.tsx +1 -1
  36. package/src/Input/PasswordInput.stories.tsx +1 -1
  37. package/src/Pagination/StyledPagination.stories.tsx +2 -2
  38. package/src/Prebuilt/IconButton.tsx +1 -1
  39. package/src/Prebuilt/common/hooks.ts +21 -0
  40. package/src/Prebuilt/components/AppData/useSidepane.js +34 -7
  41. package/src/Prebuilt/components/AudioVideoToggle.tsx +2 -1
  42. package/src/Prebuilt/components/AuthToken.jsx +1 -1
  43. package/src/Prebuilt/components/Chat/Chat.tsx +41 -1
  44. package/src/Prebuilt/components/Chat/ChatFooter.tsx +33 -13
  45. package/src/Prebuilt/components/Chat/MwebChatOption.tsx +1 -1
  46. package/src/Prebuilt/components/ConferenceScreen.tsx +48 -7
  47. package/src/Prebuilt/components/EmojiReaction.jsx +33 -23
  48. package/src/Prebuilt/components/Footer/Footer.tsx +0 -1
  49. package/src/Prebuilt/components/Footer/RoleOptions.tsx +138 -125
  50. package/src/Prebuilt/components/HMSVideo/Controls.jsx +1 -1
  51. package/src/Prebuilt/components/HMSVideo/FullscreenButton.tsx +13 -0
  52. package/src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.tsx +72 -0
  53. package/src/Prebuilt/components/HMSVideo/HLSCaptionSelector.tsx +4 -2
  54. package/src/Prebuilt/components/HMSVideo/HLSQualitySelector.tsx +248 -0
  55. package/src/Prebuilt/components/HMSVideo/HMSVideo.jsx +17 -7
  56. package/src/Prebuilt/components/HMSVideo/MwebHLSViewTitle.tsx +84 -0
  57. package/src/Prebuilt/components/HMSVideo/PlayButton.tsx +27 -0
  58. package/src/Prebuilt/components/HMSVideo/PlayPauseButton.tsx +27 -0
  59. package/src/Prebuilt/components/HMSVideo/PlayerContext.tsx +15 -0
  60. package/src/Prebuilt/components/HMSVideo/SeekControls.tsx +22 -0
  61. package/src/Prebuilt/components/HMSVideo/VideoProgress.tsx +95 -0
  62. package/src/Prebuilt/components/HMSVideo/VideoTime.tsx +43 -0
  63. package/src/Prebuilt/components/HMSVideo/{VolumeControl.jsx → VolumeControl.tsx} +6 -4
  64. package/src/Prebuilt/components/HMSVideo/{index.js → index.ts} +6 -2
  65. package/src/Prebuilt/components/HMSVideo/{HMSVIdeoUtils.js → utils.ts} +5 -5
  66. package/src/Prebuilt/components/Header/StreamActions.tsx +1 -1
  67. package/src/Prebuilt/components/IconButtonWithOptions/IconButtonWithOptions.tsx +1 -1
  68. package/src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx +50 -46
  69. package/src/Prebuilt/components/Leave/LeaveRoom.tsx +15 -4
  70. package/src/Prebuilt/components/Leave/MwebLeaveRoom.tsx +46 -27
  71. package/src/Prebuilt/components/MoreSettings/MoreSettings.tsx +3 -1
  72. package/src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx +37 -31
  73. package/src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx +12 -8
  74. package/src/Prebuilt/components/MwebLandscapePrompt.tsx +14 -3
  75. package/src/Prebuilt/components/Notifications/HandRaisedNotifications.tsx +5 -2
  76. package/src/Prebuilt/components/Notifications/PeerNotifications.tsx +1 -1
  77. package/src/Prebuilt/components/Polls/Voting/QuestionCard.jsx +19 -8
  78. package/src/Prebuilt/components/Polls/Voting/Voting.tsx +3 -2
  79. package/src/Prebuilt/components/Polls/common/OptionInputWithDelete.tsx +1 -1
  80. package/src/Prebuilt/components/Polls/common/utils.ts +2 -2
  81. package/src/Prebuilt/components/RaiseHand.tsx +24 -0
  82. package/src/Prebuilt/components/RoomDetails/RoomDetailsPane.tsx +41 -14
  83. package/src/Prebuilt/components/SidePaneTabs.tsx +56 -48
  84. package/src/Prebuilt/components/StatsForNerds.jsx +14 -6
  85. package/src/Prebuilt/components/Streaming/Common.jsx +1 -1
  86. package/src/Prebuilt/components/TileMenu/TileMenuContent.tsx +2 -2
  87. package/src/Prebuilt/components/Toast/ToastBatcher.js +8 -1
  88. package/src/Prebuilt/components/Toast/ToastConfig.jsx +17 -0
  89. package/src/Prebuilt/components/VideoLayouts/RoleProminence.tsx +1 -1
  90. package/src/Prebuilt/components/hooks/useRoleProminencePeers.tsx +2 -1
  91. package/src/Prebuilt/components/pdfAnnotator/shareScreenOptions.jsx +2 -2
  92. package/src/Prebuilt/components/pdfAnnotator/uploadedFile.jsx +1 -1
  93. package/src/Prebuilt/layouts/HLSView.jsx +359 -178
  94. package/src/Prebuilt/layouts/SidePane.tsx +145 -59
  95. package/src/Prebuilt/layouts/VideoStreamingSection.tsx +22 -2
  96. package/src/Prebuilt/primitives/DialogContent.jsx +1 -1
  97. package/src/Prebuilt/provider/roomLayoutProvider/index.tsx +1 -1
  98. package/src/Sheet/Sheet.tsx +7 -3
  99. package/dist/HLSView-37B2YVTC.js +0 -987
  100. package/dist/HLSView-37B2YVTC.js.map +0 -7
  101. package/dist/chunk-72B32WVR.js.map +0 -7
  102. package/src/Prebuilt/components/HMSVideo/FullscreenButton.jsx +0 -18
  103. package/src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.jsx +0 -35
  104. package/src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx +0 -127
  105. package/src/Prebuilt/components/HMSVideo/PlayButton.jsx +0 -13
  106. package/src/Prebuilt/components/HMSVideo/VideoProgress.jsx +0 -76
  107. package/src/Prebuilt/components/HMSVideo/VideoTime.jsx +0 -33
  108. package/src/Prebuilt/components/RaiseHand.jsx +0 -17
@@ -242,7 +242,7 @@
242
242
  "format": "esm"
243
243
  },
244
244
  "src/Button/Button.tsx": {
245
- "bytes": 4742,
245
+ "bytes": 4738,
246
246
  "imports": [
247
247
  {
248
248
  "path": "react",
@@ -1625,7 +1625,7 @@
1625
1625
  "format": "esm"
1626
1626
  },
1627
1627
  "src/Fieldset/Fieldset.tsx": {
1628
- "bytes": 256,
1628
+ "bytes": 255,
1629
1629
  "imports": [
1630
1630
  {
1631
1631
  "path": "src/Theme/index.tsx",
@@ -2122,7 +2122,7 @@
2122
2122
  "format": "esm"
2123
2123
  },
2124
2124
  "src/Prebuilt/provider/roomLayoutProvider/index.tsx": {
2125
- "bytes": 1857,
2125
+ "bytes": 1865,
2126
2126
  "imports": [
2127
2127
  {
2128
2128
  "path": "react",
@@ -2205,13 +2205,18 @@
2205
2205
  "format": "esm"
2206
2206
  },
2207
2207
  "src/Prebuilt/components/AppData/useSidepane.js": {
2208
- "bytes": 2509,
2208
+ "bytes": 3164,
2209
2209
  "imports": [
2210
2210
  {
2211
2211
  "path": "react",
2212
2212
  "kind": "import-statement",
2213
2213
  "external": true
2214
2214
  },
2215
+ {
2216
+ "path": "ts-pattern",
2217
+ "kind": "import-statement",
2218
+ "external": true
2219
+ },
2215
2220
  {
2216
2221
  "path": "@100mslive/react-sdk",
2217
2222
  "kind": "import-statement",
@@ -2327,7 +2332,7 @@
2327
2332
  "imports": []
2328
2333
  },
2329
2334
  "src/Prebuilt/components/AuthToken.jsx": {
2330
- "bytes": 4368,
2335
+ "bytes": 4386,
2331
2336
  "imports": [
2332
2337
  {
2333
2338
  "path": "react",
@@ -2393,7 +2398,7 @@
2393
2398
  "format": "esm"
2394
2399
  },
2395
2400
  "src/Prebuilt/IconButton.tsx": {
2396
- "bytes": 646,
2401
+ "bytes": 645,
2397
2402
  "imports": [
2398
2403
  {
2399
2404
  "path": "src/IconButton/index.tsx",
@@ -2414,7 +2419,7 @@
2414
2419
  "format": "esm"
2415
2420
  },
2416
2421
  "src/Prebuilt/components/IconButtonWithOptions/IconButtonWithOptions.tsx": {
2417
- "bytes": 3437,
2422
+ "bytes": 3436,
2418
2423
  "imports": [
2419
2424
  {
2420
2425
  "path": "react",
@@ -2465,7 +2470,7 @@
2465
2470
  "format": "esm"
2466
2471
  },
2467
2472
  "src/Sheet/Sheet.tsx": {
2468
- "bytes": 3140,
2473
+ "bytes": 3257,
2469
2474
  "imports": [
2470
2475
  {
2471
2476
  "path": "react",
@@ -2814,7 +2819,7 @@
2814
2819
  "format": "esm"
2815
2820
  },
2816
2821
  "src/Prebuilt/components/AudioVideoToggle.tsx": {
2817
- "bytes": 9962,
2822
+ "bytes": 9985,
2818
2823
  "imports": [
2819
2824
  {
2820
2825
  "path": "react",
@@ -2961,8 +2966,59 @@
2961
2966
  ],
2962
2967
  "format": "esm"
2963
2968
  },
2969
+ "src/Prebuilt/common/hooks.ts": {
2970
+ "bytes": 4502,
2971
+ "imports": [
2972
+ {
2973
+ "path": "react",
2974
+ "kind": "import-statement",
2975
+ "external": true
2976
+ },
2977
+ {
2978
+ "path": "react-use",
2979
+ "kind": "import-statement",
2980
+ "external": true
2981
+ },
2982
+ {
2983
+ "path": "@100mslive/types-prebuilt/elements/join_form",
2984
+ "kind": "import-statement",
2985
+ "external": true
2986
+ },
2987
+ {
2988
+ "path": "@100mslive/react-sdk",
2989
+ "kind": "import-statement",
2990
+ "external": true
2991
+ },
2992
+ {
2993
+ "path": "src/Theme/index.tsx",
2994
+ "kind": "import-statement",
2995
+ "original": "../../Theme"
2996
+ },
2997
+ {
2998
+ "path": "src/Prebuilt/provider/roomLayoutProvider/index.tsx",
2999
+ "kind": "import-statement",
3000
+ "original": "../provider/roomLayoutProvider"
3001
+ },
3002
+ {
3003
+ "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
3004
+ "kind": "import-statement",
3005
+ "original": "../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
3006
+ },
3007
+ {
3008
+ "path": "src/Prebuilt/common/constants.ts",
3009
+ "kind": "import-statement",
3010
+ "original": "./constants"
3011
+ },
3012
+ {
3013
+ "path": "<define:process.env>",
3014
+ "kind": "import-statement",
3015
+ "external": true
3016
+ }
3017
+ ],
3018
+ "format": "esm"
3019
+ },
2964
3020
  "src/Prebuilt/components/EmojiReaction.jsx": {
2965
- "bytes": 2758,
3021
+ "bytes": 3143,
2966
3022
  "imports": [
2967
3023
  {
2968
3024
  "path": "react",
@@ -3029,6 +3085,11 @@
3029
3085
  "kind": "import-statement",
3030
3086
  "original": "./hooks/useDropdownList"
3031
3087
  },
3088
+ {
3089
+ "path": "src/Prebuilt/common/hooks.ts",
3090
+ "kind": "import-statement",
3091
+ "original": "../common/hooks"
3092
+ },
3032
3093
  {
3033
3094
  "path": "src/Prebuilt/common/constants.ts",
3034
3095
  "kind": "import-statement",
@@ -3187,7 +3248,7 @@
3187
3248
  "format": "esm"
3188
3249
  },
3189
3250
  "src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx": {
3190
- "bytes": 6141,
3251
+ "bytes": 6358,
3191
3252
  "imports": [
3192
3253
  {
3193
3254
  "path": "react",
@@ -3268,7 +3329,7 @@
3268
3329
  "format": "esm"
3269
3330
  },
3270
3331
  "src/Prebuilt/components/Leave/MwebLeaveRoom.tsx": {
3271
- "bytes": 4657,
3332
+ "bytes": 5205,
3272
3333
  "imports": [
3273
3334
  {
3274
3335
  "path": "react",
@@ -3276,19 +3337,19 @@
3276
3337
  "external": true
3277
3338
  },
3278
3339
  {
3279
- "path": "@100mslive/types-prebuilt",
3340
+ "path": "@100mslive/react-sdk",
3280
3341
  "kind": "import-statement",
3281
3342
  "external": true
3282
3343
  },
3283
3344
  {
3284
- "path": "@100mslive/react-sdk",
3345
+ "path": "@100mslive/react-icons",
3285
3346
  "kind": "import-statement",
3286
3347
  "external": true
3287
3348
  },
3288
3349
  {
3289
- "path": "@100mslive/react-icons",
3350
+ "path": "src/IconButton/index.tsx",
3290
3351
  "kind": "import-statement",
3291
- "external": true
3352
+ "original": "../../../IconButton"
3292
3353
  },
3293
3354
  {
3294
3355
  "path": "src/Layout/index.tsx",
@@ -3325,11 +3386,21 @@
3325
3386
  "kind": "import-statement",
3326
3387
  "original": "./LeaveSessionContent"
3327
3388
  },
3389
+ {
3390
+ "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
3391
+ "kind": "import-statement",
3392
+ "original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
3393
+ },
3328
3394
  {
3329
3395
  "path": "src/Prebuilt/components/hooks/useDropdownList.ts",
3330
3396
  "kind": "import-statement",
3331
3397
  "original": "../hooks/useDropdownList"
3332
3398
  },
3399
+ {
3400
+ "path": "src/Prebuilt/common/hooks.ts",
3401
+ "kind": "import-statement",
3402
+ "original": "../../common/hooks"
3403
+ },
3333
3404
  {
3334
3405
  "path": "<define:process.env>",
3335
3406
  "kind": "import-statement",
@@ -3344,7 +3415,7 @@
3344
3415
  "format": "esm"
3345
3416
  },
3346
3417
  "src/Prebuilt/components/Leave/LeaveRoom.tsx": {
3347
- "bytes": 2365,
3418
+ "bytes": 2733,
3348
3419
  "imports": [
3349
3420
  {
3350
3421
  "path": "react",
@@ -3386,6 +3457,11 @@
3386
3457
  "kind": "import-statement",
3387
3458
  "original": "./MwebLeaveRoom"
3388
3459
  },
3460
+ {
3461
+ "path": "src/Prebuilt/common/hooks.ts",
3462
+ "kind": "import-statement",
3463
+ "original": "../../common/hooks"
3464
+ },
3389
3465
  {
3390
3466
  "path": "<define:process.env>",
3391
3467
  "kind": "import-statement",
@@ -3534,47 +3610,6 @@
3534
3610
  ],
3535
3611
  "format": "esm"
3536
3612
  },
3537
- "src/Prebuilt/common/hooks.ts": {
3538
- "bytes": 3796,
3539
- "imports": [
3540
- {
3541
- "path": "react",
3542
- "kind": "import-statement",
3543
- "external": true
3544
- },
3545
- {
3546
- "path": "@100mslive/types-prebuilt/elements/join_form",
3547
- "kind": "import-statement",
3548
- "external": true
3549
- },
3550
- {
3551
- "path": "@100mslive/react-sdk",
3552
- "kind": "import-statement",
3553
- "external": true
3554
- },
3555
- {
3556
- "path": "src/Prebuilt/provider/roomLayoutProvider/index.tsx",
3557
- "kind": "import-statement",
3558
- "original": "../provider/roomLayoutProvider"
3559
- },
3560
- {
3561
- "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
3562
- "kind": "import-statement",
3563
- "original": "../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
3564
- },
3565
- {
3566
- "path": "src/Prebuilt/common/constants.ts",
3567
- "kind": "import-statement",
3568
- "original": "./constants"
3569
- },
3570
- {
3571
- "path": "<define:process.env>",
3572
- "kind": "import-statement",
3573
- "external": true
3574
- }
3575
- ],
3576
- "format": "esm"
3577
- },
3578
3613
  "src/Prebuilt/components/RoleChangeModal.jsx": {
3579
3614
  "bytes": 6492,
3580
3615
  "imports": [
@@ -3662,7 +3697,7 @@
3662
3697
  "format": "esm"
3663
3698
  },
3664
3699
  "src/Prebuilt/primitives/DialogContent.jsx": {
3665
- "bytes": 8438,
3700
+ "bytes": 8437,
3666
3701
  "imports": [
3667
3702
  {
3668
3703
  "path": "react",
@@ -3840,13 +3875,18 @@
3840
3875
  "format": "esm"
3841
3876
  },
3842
3877
  "src/Prebuilt/components/StatsForNerds.jsx": {
3843
- "bytes": 8930,
3878
+ "bytes": 9165,
3844
3879
  "imports": [
3845
3880
  {
3846
3881
  "path": "react",
3847
3882
  "kind": "import-statement",
3848
3883
  "external": true
3849
3884
  },
3885
+ {
3886
+ "path": "ts-pattern",
3887
+ "kind": "import-statement",
3888
+ "external": true
3889
+ },
3850
3890
  {
3851
3891
  "path": "@100mslive/react-sdk",
3852
3892
  "kind": "import-statement",
@@ -4178,7 +4218,7 @@
4178
4218
  "format": "esm"
4179
4219
  },
4180
4220
  "src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx": {
4181
- "bytes": 7854,
4221
+ "bytes": 8195,
4182
4222
  "imports": [
4183
4223
  {
4184
4224
  "path": "react",
@@ -4195,6 +4235,11 @@
4195
4235
  "kind": "import-statement",
4196
4236
  "external": true
4197
4237
  },
4238
+ {
4239
+ "path": "ts-pattern",
4240
+ "kind": "import-statement",
4241
+ "external": true
4242
+ },
4198
4243
  {
4199
4244
  "path": "@100mslive/react-sdk",
4200
4245
  "kind": "import-statement",
@@ -4636,7 +4681,7 @@
4636
4681
  "format": "cjs"
4637
4682
  },
4638
4683
  "../hms-video-store/dist/index.js": {
4639
- "bytes": 324491,
4684
+ "bytes": 326164,
4640
4685
  "imports": [
4641
4686
  {
4642
4687
  "path": "../../node_modules/reselect/es/index.js",
@@ -4875,7 +4920,7 @@
4875
4920
  "format": "esm"
4876
4921
  },
4877
4922
  "src/Prebuilt/components/Header/StreamActions.tsx": {
4878
- "bytes": 9380,
4923
+ "bytes": 9392,
4879
4924
  "imports": [
4880
4925
  {
4881
4926
  "path": "react",
@@ -5146,7 +5191,7 @@
5146
5191
  "format": "esm"
5147
5192
  },
5148
5193
  "src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx": {
5149
- "bytes": 12503,
5194
+ "bytes": 13053,
5150
5195
  "imports": [
5151
5196
  {
5152
5197
  "path": "react",
@@ -5163,6 +5208,11 @@
5163
5208
  "kind": "import-statement",
5164
5209
  "external": true
5165
5210
  },
5211
+ {
5212
+ "path": "ts-pattern",
5213
+ "kind": "import-statement",
5214
+ "external": true
5215
+ },
5166
5216
  {
5167
5217
  "path": "@100mslive/react-sdk",
5168
5218
  "kind": "import-statement",
@@ -5258,6 +5308,11 @@
5258
5308
  "kind": "import-statement",
5259
5309
  "original": "../../hooks/useUnreadPollQuizPresent"
5260
5310
  },
5311
+ {
5312
+ "path": "src/Prebuilt/common/hooks.ts",
5313
+ "kind": "import-statement",
5314
+ "original": "../../../common/hooks"
5315
+ },
5261
5316
  {
5262
5317
  "path": "src/Prebuilt/common/utils.js",
5263
5318
  "kind": "import-statement",
@@ -5282,7 +5337,7 @@
5282
5337
  "format": "esm"
5283
5338
  },
5284
5339
  "src/Prebuilt/components/MoreSettings/MoreSettings.tsx": {
5285
- "bytes": 854,
5340
+ "bytes": 994,
5286
5341
  "imports": [
5287
5342
  {
5288
5343
  "path": "react",
@@ -5314,6 +5369,11 @@
5314
5369
  "kind": "import-statement",
5315
5370
  "original": "../../.."
5316
5371
  },
5372
+ {
5373
+ "path": "src/Prebuilt/common/hooks.ts",
5374
+ "kind": "import-statement",
5375
+ "original": "../../common/hooks"
5376
+ },
5317
5377
  {
5318
5378
  "path": "<define:process.env>",
5319
5379
  "kind": "import-statement",
@@ -5322,8 +5382,8 @@
5322
5382
  ],
5323
5383
  "format": "esm"
5324
5384
  },
5325
- "src/Prebuilt/components/RaiseHand.jsx": {
5326
- "bytes": 595,
5385
+ "src/Prebuilt/components/RaiseHand.tsx": {
5386
+ "bytes": 798,
5327
5387
  "imports": [
5328
5388
  {
5329
5389
  "path": "react",
@@ -5335,6 +5395,11 @@
5335
5395
  "kind": "import-statement",
5336
5396
  "external": true
5337
5397
  },
5398
+ {
5399
+ "path": "../../Theme",
5400
+ "kind": "import-statement",
5401
+ "external": true
5402
+ },
5338
5403
  {
5339
5404
  "path": "src/Tooltip/index.ts",
5340
5405
  "kind": "import-statement",
@@ -5481,7 +5546,7 @@
5481
5546
  "format": "esm"
5482
5547
  },
5483
5548
  "src/Prebuilt/components/pdfAnnotator/uploadedFile.jsx": {
5484
- "bytes": 2244,
5549
+ "bytes": 2243,
5485
5550
  "imports": [
5486
5551
  {
5487
5552
  "path": "react",
@@ -5568,7 +5633,7 @@
5568
5633
  "format": "esm"
5569
5634
  },
5570
5635
  "src/Prebuilt/components/pdfAnnotator/shareScreenOptions.jsx": {
5571
- "bytes": 6568,
5636
+ "bytes": 6566,
5572
5637
  "imports": [
5573
5638
  {
5574
5639
  "path": "react",
@@ -5870,7 +5935,7 @@
5870
5935
  "format": "esm"
5871
5936
  },
5872
5937
  "src/Prebuilt/components/Footer/RoleOptions.tsx": {
5873
- "bytes": 6603,
5938
+ "bytes": 7053,
5874
5939
  "imports": [
5875
5940
  {
5876
5941
  "path": "react",
@@ -5882,6 +5947,11 @@
5882
5947
  "kind": "import-statement",
5883
5948
  "external": true
5884
5949
  },
5950
+ {
5951
+ "path": "ts-pattern",
5952
+ "kind": "import-statement",
5953
+ "external": true
5954
+ },
5885
5955
  {
5886
5956
  "path": "@100mslive/react-sdk",
5887
5957
  "kind": "import-statement",
@@ -6175,7 +6245,7 @@
6175
6245
  "format": "esm"
6176
6246
  },
6177
6247
  "src/Prebuilt/components/Footer/Footer.tsx": {
6178
- "bytes": 3998,
6248
+ "bytes": 3967,
6179
6249
  "imports": [
6180
6250
  {
6181
6251
  "path": "react",
@@ -6228,7 +6298,7 @@
6228
6298
  "original": "../MoreSettings/MoreSettings"
6229
6299
  },
6230
6300
  {
6231
- "path": "src/Prebuilt/components/RaiseHand.jsx",
6301
+ "path": "src/Prebuilt/components/RaiseHand.tsx",
6232
6302
  "kind": "import-statement",
6233
6303
  "original": "../RaiseHand"
6234
6304
  },
@@ -6347,7 +6417,7 @@
6347
6417
  "format": "esm"
6348
6418
  },
6349
6419
  "src/Prebuilt/components/Streaming/Common.jsx": {
6350
- "bytes": 3948,
6420
+ "bytes": 3964,
6351
6421
  "imports": [
6352
6422
  {
6353
6423
  "path": "react",
@@ -6553,7 +6623,7 @@
6553
6623
  "format": "esm"
6554
6624
  },
6555
6625
  "src/Prebuilt/components/Polls/common/OptionInputWithDelete.tsx": {
6556
- "bytes": 1030,
6626
+ "bytes": 1029,
6557
6627
  "imports": [
6558
6628
  {
6559
6629
  "path": "react",
@@ -6901,7 +6971,7 @@
6901
6971
  "format": "esm"
6902
6972
  },
6903
6973
  "src/Prebuilt/components/Polls/common/utils.ts": {
6904
- "bytes": 632,
6974
+ "bytes": 633,
6905
6975
  "imports": [
6906
6976
  {
6907
6977
  "path": "<define:process.env>",
@@ -7122,13 +7192,18 @@
7122
7192
  "format": "esm"
7123
7193
  },
7124
7194
  "src/Prebuilt/components/Polls/Voting/QuestionCard.jsx": {
7125
- "bytes": 6844,
7195
+ "bytes": 7263,
7126
7196
  "imports": [
7127
7197
  {
7128
7198
  "path": "react",
7129
7199
  "kind": "import-statement",
7130
7200
  "external": true
7131
7201
  },
7202
+ {
7203
+ "path": "ts-pattern",
7204
+ "kind": "import-statement",
7205
+ "external": true
7206
+ },
7132
7207
  {
7133
7208
  "path": "@100mslive/react-sdk",
7134
7209
  "kind": "import-statement",
@@ -7240,7 +7315,7 @@
7240
7315
  "format": "esm"
7241
7316
  },
7242
7317
  "src/Prebuilt/components/Polls/Voting/Voting.tsx": {
7243
- "bytes": 3300,
7318
+ "bytes": 3334,
7244
7319
  "imports": [
7245
7320
  {
7246
7321
  "path": "react",
@@ -7351,6 +7426,47 @@
7351
7426
  ],
7352
7427
  "format": "esm"
7353
7428
  },
7429
+ "src/Prebuilt/components/Header/HeaderComponents.jsx": {
7430
+ "bytes": 1583,
7431
+ "imports": [
7432
+ {
7433
+ "path": "react",
7434
+ "kind": "import-statement",
7435
+ "external": true
7436
+ },
7437
+ {
7438
+ "path": "@100mslive/react-sdk",
7439
+ "kind": "import-statement",
7440
+ "external": true
7441
+ },
7442
+ {
7443
+ "path": "@100mslive/react-icons",
7444
+ "kind": "import-statement",
7445
+ "external": true
7446
+ },
7447
+ {
7448
+ "path": "src/index.ts",
7449
+ "kind": "import-statement",
7450
+ "original": "../../../"
7451
+ },
7452
+ {
7453
+ "path": "src/Prebuilt/provider/roomLayoutProvider/index.tsx",
7454
+ "kind": "import-statement",
7455
+ "original": "../../provider/roomLayoutProvider"
7456
+ },
7457
+ {
7458
+ "path": "<define:process.env>",
7459
+ "kind": "import-statement",
7460
+ "external": true
7461
+ },
7462
+ {
7463
+ "path": "<runtime>",
7464
+ "kind": "import-statement",
7465
+ "external": true
7466
+ }
7467
+ ],
7468
+ "format": "esm"
7469
+ },
7354
7470
  "src/Prebuilt/components/RoomDetails/Duration.tsx": {
7355
7471
  "bytes": 784,
7356
7472
  "imports": [
@@ -7414,7 +7530,7 @@
7414
7530
  "format": "esm"
7415
7531
  },
7416
7532
  "src/Prebuilt/components/RoomDetails/RoomDetailsPane.tsx": {
7417
- "bytes": 1300,
7533
+ "bytes": 2042,
7418
7534
  "imports": [
7419
7535
  {
7420
7536
  "path": "react",
@@ -7436,6 +7552,11 @@
7436
7552
  "kind": "import-statement",
7437
7553
  "original": "../../../Text"
7438
7554
  },
7555
+ {
7556
+ "path": "src/Prebuilt/components/Header/HeaderComponents.jsx",
7557
+ "kind": "import-statement",
7558
+ "original": "../Header/HeaderComponents"
7559
+ },
7439
7560
  {
7440
7561
  "path": "src/Prebuilt/components/RoomDetails/RoomDetailsRow.tsx",
7441
7562
  "kind": "import-statement",
@@ -7451,6 +7572,11 @@
7451
7572
  "kind": "import-statement",
7452
7573
  "original": "../AppData/useSidepane"
7453
7574
  },
7575
+ {
7576
+ "path": "src/Prebuilt/common/hooks.ts",
7577
+ "kind": "import-statement",
7578
+ "original": "../../common/hooks"
7579
+ },
7454
7580
  {
7455
7581
  "path": "src/Prebuilt/common/constants.ts",
7456
7582
  "kind": "import-statement",
@@ -7465,7 +7591,7 @@
7465
7591
  "format": "esm"
7466
7592
  },
7467
7593
  "src/Prebuilt/components/Chat/MwebChatOption.tsx": {
7468
- "bytes": 545,
7594
+ "bytes": 557,
7469
7595
  "imports": [
7470
7596
  {
7471
7597
  "path": "react",
@@ -8020,7 +8146,7 @@
8020
8146
  "format": "esm"
8021
8147
  },
8022
8148
  "src/Prebuilt/components/Chat/ChatFooter.tsx": {
8023
- "bytes": 9288,
8149
+ "bytes": 10438,
8024
8150
  "imports": [
8025
8151
  {
8026
8152
  "path": "react",
@@ -8062,6 +8188,16 @@
8062
8188
  "kind": "import-statement",
8063
8189
  "original": "../../../IconButton"
8064
8190
  },
8191
+ {
8192
+ "path": "src/Prebuilt/components/MoreSettings/MoreSettings.tsx",
8193
+ "kind": "import-statement",
8194
+ "original": "../MoreSettings/MoreSettings"
8195
+ },
8196
+ {
8197
+ "path": "src/Prebuilt/components/RaiseHand.tsx",
8198
+ "kind": "import-statement",
8199
+ "original": "../RaiseHand"
8200
+ },
8065
8201
  {
8066
8202
  "path": "src/Prebuilt/components/Toast/ToastManager.js",
8067
8203
  "kind": "import-statement",
@@ -8310,7 +8446,7 @@
8310
8446
  "format": "esm"
8311
8447
  },
8312
8448
  "src/Prebuilt/components/Chat/Chat.tsx": {
8313
- "bytes": 3578,
8449
+ "bytes": 4814,
8314
8450
  "imports": [
8315
8451
  {
8316
8452
  "path": "react",
@@ -8332,6 +8468,11 @@
8332
8468
  "kind": "import-statement",
8333
8469
  "original": "@100mslive/hms-video-store"
8334
8470
  },
8471
+ {
8472
+ "path": "ts-pattern",
8473
+ "kind": "import-statement",
8474
+ "external": true
8475
+ },
8335
8476
  {
8336
8477
  "path": "@100mslive/react-sdk",
8337
8478
  "kind": "import-statement",
@@ -8357,6 +8498,11 @@
8357
8498
  "kind": "import-statement",
8358
8499
  "original": "../../../Theme"
8359
8500
  },
8501
+ {
8502
+ "path": "src/Prebuilt/components/EmojiReaction.jsx",
8503
+ "kind": "import-statement",
8504
+ "original": "../EmojiReaction"
8505
+ },
8360
8506
  {
8361
8507
  "path": "src/Prebuilt/components/Chat/ChatBody.tsx",
8362
8508
  "kind": "import-statement",
@@ -8382,6 +8528,11 @@
8382
8528
  "kind": "import-statement",
8383
8529
  "original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
8384
8530
  },
8531
+ {
8532
+ "path": "src/Prebuilt/common/hooks.ts",
8533
+ "kind": "import-statement",
8534
+ "original": "../../common/hooks"
8535
+ },
8385
8536
  {
8386
8537
  "path": "src/Prebuilt/common/constants.ts",
8387
8538
  "kind": "import-statement",
@@ -8391,6 +8542,11 @@
8391
8542
  "path": "<define:process.env>",
8392
8543
  "kind": "import-statement",
8393
8544
  "external": true
8545
+ },
8546
+ {
8547
+ "path": "<runtime>",
8548
+ "kind": "import-statement",
8549
+ "external": true
8394
8550
  }
8395
8551
  ],
8396
8552
  "format": "esm"
@@ -8528,7 +8684,7 @@
8528
8684
  "format": "esm"
8529
8685
  },
8530
8686
  "src/Prebuilt/components/SidePaneTabs.tsx": {
8531
- "bytes": 7873,
8687
+ "bytes": 8205,
8532
8688
  "imports": [
8533
8689
  {
8534
8690
  "path": "react",
@@ -8545,6 +8701,11 @@
8545
8701
  "kind": "import-statement",
8546
8702
  "external": true
8547
8703
  },
8704
+ {
8705
+ "path": "ts-pattern",
8706
+ "kind": "import-statement",
8707
+ "external": true
8708
+ },
8548
8709
  {
8549
8710
  "path": "@100mslive/react-sdk",
8550
8711
  "kind": "import-statement",
@@ -8609,11 +8770,6 @@
8609
8770
  "path": "<define:process.env>",
8610
8771
  "kind": "import-statement",
8611
8772
  "external": true
8612
- },
8613
- {
8614
- "path": "<runtime>",
8615
- "kind": "import-statement",
8616
- "external": true
8617
8773
  }
8618
8774
  ],
8619
8775
  "format": "esm"
@@ -8676,7 +8832,7 @@
8676
8832
  "format": "esm"
8677
8833
  },
8678
8834
  "src/Prebuilt/components/TileMenu/TileMenuContent.tsx": {
8679
- "bytes": 11503,
8835
+ "bytes": 11533,
8680
8836
  "imports": [
8681
8837
  {
8682
8838
  "path": "react",
@@ -9150,7 +9306,7 @@
9150
9306
  "format": "esm"
9151
9307
  },
9152
9308
  "src/Prebuilt/layouts/SidePane.tsx": {
9153
- "bytes": 5145,
9309
+ "bytes": 6417,
9154
9310
  "imports": [
9155
9311
  {
9156
9312
  "path": "react",
@@ -9162,6 +9318,11 @@
9162
9318
  "kind": "import-statement",
9163
9319
  "external": true
9164
9320
  },
9321
+ {
9322
+ "path": "ts-pattern",
9323
+ "kind": "import-statement",
9324
+ "external": true
9325
+ },
9165
9326
  {
9166
9327
  "path": "@100mslive/react-sdk",
9167
9328
  "kind": "import-statement",
@@ -9227,6 +9388,11 @@
9227
9388
  "kind": "import-statement",
9228
9389
  "original": "../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
9229
9390
  },
9391
+ {
9392
+ "path": "src/Prebuilt/common/hooks.ts",
9393
+ "kind": "import-statement",
9394
+ "original": "../common/hooks"
9395
+ },
9230
9396
  {
9231
9397
  "path": "src/utils/index.ts",
9232
9398
  "kind": "import-statement",
@@ -9322,47 +9488,6 @@
9322
9488
  ],
9323
9489
  "format": "esm"
9324
9490
  },
9325
- "src/Prebuilt/components/Header/HeaderComponents.jsx": {
9326
- "bytes": 1583,
9327
- "imports": [
9328
- {
9329
- "path": "react",
9330
- "kind": "import-statement",
9331
- "external": true
9332
- },
9333
- {
9334
- "path": "@100mslive/react-sdk",
9335
- "kind": "import-statement",
9336
- "external": true
9337
- },
9338
- {
9339
- "path": "@100mslive/react-icons",
9340
- "kind": "import-statement",
9341
- "external": true
9342
- },
9343
- {
9344
- "path": "src/index.ts",
9345
- "kind": "import-statement",
9346
- "original": "../../../"
9347
- },
9348
- {
9349
- "path": "src/Prebuilt/provider/roomLayoutProvider/index.tsx",
9350
- "kind": "import-statement",
9351
- "original": "../../provider/roomLayoutProvider"
9352
- },
9353
- {
9354
- "path": "<define:process.env>",
9355
- "kind": "import-statement",
9356
- "external": true
9357
- },
9358
- {
9359
- "path": "<runtime>",
9360
- "kind": "import-statement",
9361
- "external": true
9362
- }
9363
- ],
9364
- "format": "esm"
9365
- },
9366
9491
  "src/Prebuilt/components/Preview/PreviewForm.tsx": {
9367
9492
  "bytes": 2843,
9368
9493
  "imports": [
@@ -10001,7 +10126,7 @@
10001
10126
  "format": "esm"
10002
10127
  },
10003
10128
  "src/Prebuilt/components/hooks/useRoleProminencePeers.tsx": {
10004
- "bytes": 1092,
10129
+ "bytes": 1143,
10005
10130
  "imports": [
10006
10131
  {
10007
10132
  "path": "react",
@@ -10027,7 +10152,7 @@
10027
10152
  "format": "esm"
10028
10153
  },
10029
10154
  "src/Prebuilt/components/VideoLayouts/RoleProminence.tsx": {
10030
- "bytes": 2562,
10155
+ "bytes": 2591,
10031
10156
  "imports": [
10032
10157
  {
10033
10158
  "path": "react",
@@ -10705,12 +10830,12 @@
10705
10830
  "format": "esm"
10706
10831
  },
10707
10832
  "src/Prebuilt/components/HMSVideo/Controls.jsx": {
10708
- "bytes": 463,
10833
+ "bytes": 462,
10709
10834
  "imports": [
10710
10835
  {
10711
10836
  "path": "src/index.ts",
10712
10837
  "kind": "import-statement",
10713
- "original": "../../../"
10838
+ "original": "../../.."
10714
10839
  },
10715
10840
  {
10716
10841
  "path": "<define:process.env>",
@@ -10721,7 +10846,7 @@
10721
10846
  "format": "esm"
10722
10847
  },
10723
10848
  "src/Prebuilt/components/HMSVideo/HMSVideo.jsx": {
10724
- "bytes": 1039,
10849
+ "bytes": 1301,
10725
10850
  "imports": [
10726
10851
  {
10727
10852
  "path": "react",
@@ -10729,9 +10854,9 @@
10729
10854
  "external": true
10730
10855
  },
10731
10856
  {
10732
- "path": "src/index.ts",
10857
+ "path": "src/Layout/index.tsx",
10733
10858
  "kind": "import-statement",
10734
- "original": "../../../"
10859
+ "original": "../../../Layout"
10735
10860
  },
10736
10861
  {
10737
10862
  "path": "<define:process.env>",
@@ -10746,8 +10871,29 @@
10746
10871
  ],
10747
10872
  "format": "esm"
10748
10873
  },
10749
- "src/Prebuilt/components/HMSVideo/PlayButton.jsx": {
10750
- "bytes": 471,
10874
+ "src/Prebuilt/components/HMSVideo/PlayerContext.tsx": {
10875
+ "bytes": 371,
10876
+ "imports": [
10877
+ {
10878
+ "path": "react",
10879
+ "kind": "import-statement",
10880
+ "external": true
10881
+ },
10882
+ {
10883
+ "path": "@100mslive/hls-player",
10884
+ "kind": "import-statement",
10885
+ "external": true
10886
+ },
10887
+ {
10888
+ "path": "<define:process.env>",
10889
+ "kind": "import-statement",
10890
+ "external": true
10891
+ }
10892
+ ],
10893
+ "format": "esm"
10894
+ },
10895
+ "src/Prebuilt/components/HMSVideo/PlayPauseButton.tsx": {
10896
+ "bytes": 836,
10751
10897
  "imports": [
10752
10898
  {
10753
10899
  "path": "react",
@@ -10762,7 +10908,38 @@
10762
10908
  {
10763
10909
  "path": "src/index.ts",
10764
10910
  "kind": "import-statement",
10765
- "original": "../../../"
10911
+ "original": "../../.."
10912
+ },
10913
+ {
10914
+ "path": "src/Prebuilt/components/HMSVideo/PlayerContext.tsx",
10915
+ "kind": "import-statement",
10916
+ "original": "./PlayerContext"
10917
+ },
10918
+ {
10919
+ "path": "<define:process.env>",
10920
+ "kind": "import-statement",
10921
+ "external": true
10922
+ },
10923
+ {
10924
+ "path": "<runtime>",
10925
+ "kind": "import-statement",
10926
+ "external": true
10927
+ }
10928
+ ],
10929
+ "format": "esm"
10930
+ },
10931
+ "src/Prebuilt/components/HMSVideo/SeekControls.tsx": {
10932
+ "bytes": 490,
10933
+ "imports": [
10934
+ {
10935
+ "path": "react",
10936
+ "kind": "import-statement",
10937
+ "external": true
10938
+ },
10939
+ {
10940
+ "path": "src/index.ts",
10941
+ "kind": "import-statement",
10942
+ "original": "../../.."
10766
10943
  },
10767
10944
  {
10768
10945
  "path": "<define:process.env>",
@@ -10772,8 +10949,8 @@
10772
10949
  ],
10773
10950
  "format": "esm"
10774
10951
  },
10775
- "src/Prebuilt/components/HMSVideo/HMSVIdeoUtils.js": {
10776
- "bytes": 936,
10952
+ "src/Prebuilt/components/HMSVideo/utils.ts": {
10953
+ "bytes": 977,
10777
10954
  "imports": [
10778
10955
  {
10779
10956
  "path": "<define:process.env>",
@@ -10783,8 +10960,8 @@
10783
10960
  ],
10784
10961
  "format": "esm"
10785
10962
  },
10786
- "src/Prebuilt/components/HMSVideo/VideoProgress.jsx": {
10787
- "bytes": 2352,
10963
+ "src/Prebuilt/components/HMSVideo/VideoProgress.tsx": {
10964
+ "bytes": 2926,
10788
10965
  "imports": [
10789
10966
  {
10790
10967
  "path": "react",
@@ -10794,12 +10971,17 @@
10794
10971
  {
10795
10972
  "path": "src/index.ts",
10796
10973
  "kind": "import-statement",
10797
- "original": "../../../"
10974
+ "original": "../../.."
10798
10975
  },
10799
10976
  {
10800
- "path": "src/Prebuilt/components/HMSVideo/HMSVIdeoUtils.js",
10977
+ "path": "src/Prebuilt/components/HMSVideo/PlayerContext.tsx",
10801
10978
  "kind": "import-statement",
10802
- "original": "./HMSVIdeoUtils"
10979
+ "original": "./PlayerContext"
10980
+ },
10981
+ {
10982
+ "path": "src/Prebuilt/components/HMSVideo/utils.ts",
10983
+ "kind": "import-statement",
10984
+ "original": "./utils"
10803
10985
  },
10804
10986
  {
10805
10987
  "path": "<define:process.env>",
@@ -10809,8 +10991,8 @@
10809
10991
  ],
10810
10992
  "format": "esm"
10811
10993
  },
10812
- "src/Prebuilt/components/HMSVideo/VideoTime.jsx": {
10813
- "bytes": 905,
10994
+ "src/Prebuilt/components/HMSVideo/VideoTime.tsx": {
10995
+ "bytes": 1309,
10814
10996
  "imports": [
10815
10997
  {
10816
10998
  "path": "react",
@@ -10823,14 +11005,19 @@
10823
11005
  "external": true
10824
11006
  },
10825
11007
  {
10826
- "path": "src/index.ts",
11008
+ "path": "src/Text/index.tsx",
10827
11009
  "kind": "import-statement",
10828
- "original": "../../../"
11010
+ "original": "../../../Text"
10829
11011
  },
10830
11012
  {
10831
- "path": "src/Prebuilt/components/HMSVideo/HMSVIdeoUtils.js",
11013
+ "path": "src/Prebuilt/components/HMSVideo/PlayerContext.tsx",
10832
11014
  "kind": "import-statement",
10833
- "original": "./HMSVIdeoUtils"
11015
+ "original": "./PlayerContext"
11016
+ },
11017
+ {
11018
+ "path": "src/Prebuilt/components/HMSVideo/utils.ts",
11019
+ "kind": "import-statement",
11020
+ "original": "./utils"
10834
11021
  },
10835
11022
  {
10836
11023
  "path": "<define:process.env>",
@@ -10840,8 +11027,8 @@
10840
11027
  ],
10841
11028
  "format": "esm"
10842
11029
  },
10843
- "src/Prebuilt/components/HMSVideo/VolumeControl.jsx": {
10844
- "bytes": 1893,
11030
+ "src/Prebuilt/components/HMSVideo/VolumeControl.tsx": {
11031
+ "bytes": 2023,
10845
11032
  "imports": [
10846
11033
  {
10847
11034
  "path": "react",
@@ -10856,7 +11043,12 @@
10856
11043
  {
10857
11044
  "path": "src/index.ts",
10858
11045
  "kind": "import-statement",
10859
- "original": "../../../"
11046
+ "original": "../../.."
11047
+ },
11048
+ {
11049
+ "path": "src/Prebuilt/components/HMSVideo/PlayerContext.tsx",
11050
+ "kind": "import-statement",
11051
+ "original": "./PlayerContext"
10860
11052
  },
10861
11053
  {
10862
11054
  "path": "<define:process.env>",
@@ -10866,8 +11058,8 @@
10866
11058
  ],
10867
11059
  "format": "esm"
10868
11060
  },
10869
- "src/Prebuilt/components/HMSVideo/index.js": {
10870
- "bytes": 543,
11061
+ "src/Prebuilt/components/HMSVideo/index.ts": {
11062
+ "bytes": 662,
10871
11063
  "imports": [
10872
11064
  {
10873
11065
  "path": "src/Prebuilt/components/HMSVideo/Controls.jsx",
@@ -10880,22 +11072,27 @@
10880
11072
  "original": "./HMSVideo"
10881
11073
  },
10882
11074
  {
10883
- "path": "src/Prebuilt/components/HMSVideo/PlayButton.jsx",
11075
+ "path": "src/Prebuilt/components/HMSVideo/PlayPauseButton.tsx",
10884
11076
  "kind": "import-statement",
10885
- "original": "./PlayButton"
11077
+ "original": "./PlayPauseButton"
10886
11078
  },
10887
11079
  {
10888
- "path": "src/Prebuilt/components/HMSVideo/VideoProgress.jsx",
11080
+ "path": "src/Prebuilt/components/HMSVideo/SeekControls.tsx",
11081
+ "kind": "import-statement",
11082
+ "original": "./SeekControls"
11083
+ },
11084
+ {
11085
+ "path": "src/Prebuilt/components/HMSVideo/VideoProgress.tsx",
10889
11086
  "kind": "import-statement",
10890
11087
  "original": "./VideoProgress"
10891
11088
  },
10892
11089
  {
10893
- "path": "src/Prebuilt/components/HMSVideo/VideoTime.jsx",
11090
+ "path": "src/Prebuilt/components/HMSVideo/VideoTime.tsx",
10894
11091
  "kind": "import-statement",
10895
11092
  "original": "./VideoTime"
10896
11093
  },
10897
11094
  {
10898
- "path": "src/Prebuilt/components/HMSVideo/VolumeControl.jsx",
11095
+ "path": "src/Prebuilt/components/HMSVideo/VolumeControl.tsx",
10899
11096
  "kind": "import-statement",
10900
11097
  "original": "./VolumeControl"
10901
11098
  },
@@ -10907,18 +11104,23 @@
10907
11104
  ],
10908
11105
  "format": "esm"
10909
11106
  },
10910
- "src/Prebuilt/components/HMSVideo/FullscreenButton.jsx": {
10911
- "bytes": 493,
11107
+ "src/Prebuilt/components/HMSVideo/FullscreenButton.tsx": {
11108
+ "bytes": 576,
10912
11109
  "imports": [
10913
11110
  {
10914
11111
  "path": "react",
10915
11112
  "kind": "import-statement",
10916
11113
  "external": true
10917
11114
  },
11115
+ {
11116
+ "path": "@100mslive/react-icons",
11117
+ "kind": "import-statement",
11118
+ "external": true
11119
+ },
10918
11120
  {
10919
11121
  "path": "src/index.ts",
10920
11122
  "kind": "import-statement",
10921
- "original": "../../../"
11123
+ "original": "../../.."
10922
11124
  },
10923
11125
  {
10924
11126
  "path": "<define:process.env>",
@@ -10928,34 +11130,54 @@
10928
11130
  ],
10929
11131
  "format": "esm"
10930
11132
  },
10931
- "src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.jsx": {
10932
- "bytes": 942,
11133
+ "src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.tsx": {
11134
+ "bytes": 1851,
10933
11135
  "imports": [
10934
11136
  {
10935
11137
  "path": "react",
10936
11138
  "kind": "import-statement",
10937
11139
  "external": true
10938
11140
  },
11141
+ {
11142
+ "path": "react-use",
11143
+ "kind": "import-statement",
11144
+ "external": true
11145
+ },
11146
+ {
11147
+ "path": "@100mslive/react-icons",
11148
+ "kind": "import-statement",
11149
+ "external": true
11150
+ },
10939
11151
  {
10940
11152
  "path": "src/index.ts",
10941
11153
  "kind": "import-statement",
10942
- "original": "../../../"
11154
+ "original": "../../.."
10943
11155
  },
10944
11156
  {
10945
11157
  "path": "src/Prebuilt/primitives/DialogContent.jsx",
10946
11158
  "kind": "import-statement",
10947
11159
  "original": "../../primitives/DialogContent"
10948
11160
  },
11161
+ {
11162
+ "path": "src/Prebuilt/common/hooks.ts",
11163
+ "kind": "import-statement",
11164
+ "original": "../../common/hooks"
11165
+ },
10949
11166
  {
10950
11167
  "path": "<define:process.env>",
10951
11168
  "kind": "import-statement",
10952
11169
  "external": true
11170
+ },
11171
+ {
11172
+ "path": "<runtime>",
11173
+ "kind": "import-statement",
11174
+ "external": true
10953
11175
  }
10954
11176
  ],
10955
11177
  "format": "esm"
10956
11178
  },
10957
11179
  "src/Prebuilt/components/HMSVideo/HLSCaptionSelector.tsx": {
10958
- "bytes": 551,
11180
+ "bytes": 640,
10959
11181
  "imports": [
10960
11182
  {
10961
11183
  "path": "react",
@@ -10972,6 +11194,11 @@
10972
11194
  "kind": "import-statement",
10973
11195
  "original": "../../../"
10974
11196
  },
11197
+ {
11198
+ "path": "src/Prebuilt/components/HMSVideo/PlayerContext.tsx",
11199
+ "kind": "import-statement",
11200
+ "original": "./PlayerContext"
11201
+ },
10975
11202
  {
10976
11203
  "path": "<define:process.env>",
10977
11204
  "kind": "import-statement",
@@ -10980,14 +11207,24 @@
10980
11207
  ],
10981
11208
  "format": "esm"
10982
11209
  },
10983
- "src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx": {
10984
- "bytes": 4183,
11210
+ "src/Prebuilt/components/HMSVideo/HLSQualitySelector.tsx": {
11211
+ "bytes": 7921,
10985
11212
  "imports": [
10986
11213
  {
10987
11214
  "path": "react",
10988
11215
  "kind": "import-statement",
10989
11216
  "external": true
10990
11217
  },
11218
+ {
11219
+ "path": "react-use",
11220
+ "kind": "import-statement",
11221
+ "external": true
11222
+ },
11223
+ {
11224
+ "path": "@100mslive/hls-player",
11225
+ "kind": "import-statement",
11226
+ "external": true
11227
+ },
10991
11228
  {
10992
11229
  "path": "@100mslive/react-icons",
10993
11230
  "kind": "import-statement",
@@ -10996,7 +11233,78 @@
10996
11233
  {
10997
11234
  "path": "src/index.ts",
10998
11235
  "kind": "import-statement",
10999
- "original": "../../../"
11236
+ "original": "../../.."
11237
+ },
11238
+ {
11239
+ "path": "src/Sheet/index.ts",
11240
+ "kind": "import-statement",
11241
+ "original": "../../../Sheet"
11242
+ },
11243
+ {
11244
+ "path": "src/Theme/index.tsx",
11245
+ "kind": "import-statement",
11246
+ "original": "../../../Theme"
11247
+ },
11248
+ {
11249
+ "path": "src/Prebuilt/common/hooks.ts",
11250
+ "kind": "import-statement",
11251
+ "original": "../../common/hooks"
11252
+ },
11253
+ {
11254
+ "path": "<define:process.env>",
11255
+ "kind": "import-statement",
11256
+ "external": true
11257
+ }
11258
+ ],
11259
+ "format": "esm"
11260
+ },
11261
+ "src/Prebuilt/components/HMSVideo/MwebHLSViewTitle.tsx": {
11262
+ "bytes": 2461,
11263
+ "imports": [
11264
+ {
11265
+ "path": "react",
11266
+ "kind": "import-statement",
11267
+ "external": true
11268
+ },
11269
+ {
11270
+ "path": "@100mslive/react-icons",
11271
+ "kind": "import-statement",
11272
+ "external": true
11273
+ },
11274
+ {
11275
+ "path": "src/Layout/index.tsx",
11276
+ "kind": "import-statement",
11277
+ "original": "../../../Layout"
11278
+ },
11279
+ {
11280
+ "path": "src/Text/index.tsx",
11281
+ "kind": "import-statement",
11282
+ "original": "../../../Text"
11283
+ },
11284
+ {
11285
+ "path": "src/Prebuilt/components/Header/HeaderComponents.jsx",
11286
+ "kind": "import-statement",
11287
+ "original": "../Header/HeaderComponents"
11288
+ },
11289
+ {
11290
+ "path": "src/Prebuilt/components/RoomDetails/RoomDetailsRow.tsx",
11291
+ "kind": "import-statement",
11292
+ "original": "../RoomDetails/RoomDetailsRow"
11293
+ },
11294
+ {
11295
+ "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
11296
+ "kind": "import-statement",
11297
+ "original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
11298
+ },
11299
+ {
11300
+ "path": "src/Prebuilt/components/AppData/useSidepane.js",
11301
+ "kind": "import-statement",
11302
+ "original": "../AppData/useSidepane"
11303
+ },
11304
+ {
11305
+ "path": "src/Prebuilt/common/constants.ts",
11306
+ "kind": "import-statement",
11307
+ "original": "../../common/constants"
11000
11308
  },
11001
11309
  {
11002
11310
  "path": "<define:process.env>",
@@ -11007,7 +11315,7 @@
11007
11315
  "format": "esm"
11008
11316
  },
11009
11317
  "src/Prebuilt/layouts/HLSView.jsx": {
11010
- "bytes": 17554,
11318
+ "bytes": 25579,
11011
11319
  "imports": [
11012
11320
  {
11013
11321
  "path": "react",
@@ -11039,23 +11347,28 @@
11039
11347
  "kind": "import-statement",
11040
11348
  "external": true
11041
11349
  },
11350
+ {
11351
+ "path": "src/Prebuilt/components/Footer/ChatToggle.tsx",
11352
+ "kind": "import-statement",
11353
+ "original": "../components/Footer/ChatToggle"
11354
+ },
11042
11355
  {
11043
11356
  "path": "src/Prebuilt/components/HlsStatsOverlay.jsx",
11044
11357
  "kind": "import-statement",
11045
11358
  "original": "../components/HlsStatsOverlay"
11046
11359
  },
11047
11360
  {
11048
- "path": "src/Prebuilt/components/HMSVideo/index.js",
11361
+ "path": "src/Prebuilt/components/HMSVideo/index.ts",
11049
11362
  "kind": "import-statement",
11050
11363
  "original": "../components/HMSVideo"
11051
11364
  },
11052
11365
  {
11053
- "path": "src/Prebuilt/components/HMSVideo/FullscreenButton.jsx",
11366
+ "path": "src/Prebuilt/components/HMSVideo/FullscreenButton.tsx",
11054
11367
  "kind": "import-statement",
11055
11368
  "original": "../components/HMSVideo/FullscreenButton"
11056
11369
  },
11057
11370
  {
11058
- "path": "src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.jsx",
11371
+ "path": "src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.tsx",
11059
11372
  "kind": "import-statement",
11060
11373
  "original": "../components/HMSVideo/HLSAutoplayBlockedPrompt"
11061
11374
  },
@@ -11065,10 +11378,25 @@
11065
11378
  "original": "../components/HMSVideo/HLSCaptionSelector"
11066
11379
  },
11067
11380
  {
11068
- "path": "src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx",
11381
+ "path": "src/Prebuilt/components/HMSVideo/HLSQualitySelector.tsx",
11069
11382
  "kind": "import-statement",
11070
11383
  "original": "../components/HMSVideo/HLSQualitySelector"
11071
11384
  },
11385
+ {
11386
+ "path": "src/Prebuilt/components/HMSVideo/MwebHLSViewTitle.tsx",
11387
+ "kind": "import-statement",
11388
+ "original": "../components/HMSVideo/MwebHLSViewTitle"
11389
+ },
11390
+ {
11391
+ "path": "src/Prebuilt/components/HMSVideo/PlayerContext.tsx",
11392
+ "kind": "import-statement",
11393
+ "original": "../components/HMSVideo/PlayerContext"
11394
+ },
11395
+ {
11396
+ "path": "src/Prebuilt/components/Leave/LeaveRoom.tsx",
11397
+ "kind": "import-statement",
11398
+ "original": "../components/Leave/LeaveRoom"
11399
+ },
11072
11400
  {
11073
11401
  "path": "src/Prebuilt/components/Toast/ToastManager.js",
11074
11402
  "kind": "import-statement",
@@ -11114,6 +11442,16 @@
11114
11442
  "kind": "import-statement",
11115
11443
  "original": "../components/AppData/useSidepane"
11116
11444
  },
11445
+ {
11446
+ "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
11447
+ "kind": "import-statement",
11448
+ "original": "../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
11449
+ },
11450
+ {
11451
+ "path": "src/Prebuilt/common/hooks.ts",
11452
+ "kind": "import-statement",
11453
+ "original": "../common/hooks"
11454
+ },
11117
11455
  {
11118
11456
  "path": "src/Prebuilt/common/constants.ts",
11119
11457
  "kind": "import-statement",
@@ -11133,7 +11471,7 @@
11133
11471
  "format": "esm"
11134
11472
  },
11135
11473
  "src/Prebuilt/layouts/VideoStreamingSection.tsx": {
11136
- "bytes": 3873,
11474
+ "bytes": 4801,
11137
11475
  "imports": [
11138
11476
  {
11139
11477
  "path": "react",
@@ -11145,6 +11483,11 @@
11145
11483
  "kind": "import-statement",
11146
11484
  "external": true
11147
11485
  },
11486
+ {
11487
+ "path": "ts-pattern",
11488
+ "kind": "import-statement",
11489
+ "external": true
11490
+ },
11148
11491
  {
11149
11492
  "path": "@100mslive/react-sdk",
11150
11493
  "kind": "import-statement",
@@ -11200,6 +11543,11 @@
11200
11543
  "kind": "import-statement",
11201
11544
  "original": "../components/hooks/useCloseScreenshareWhiteboard"
11202
11545
  },
11546
+ {
11547
+ "path": "src/Prebuilt/common/hooks.ts",
11548
+ "kind": "import-statement",
11549
+ "original": "../common/hooks"
11550
+ },
11203
11551
  {
11204
11552
  "path": "src/Prebuilt/common/constants.ts",
11205
11553
  "kind": "import-statement",
@@ -11444,7 +11792,7 @@
11444
11792
  "format": "esm"
11445
11793
  },
11446
11794
  "src/Prebuilt/components/ConferenceScreen.tsx": {
11447
- "bytes": 6739,
11795
+ "bytes": 8259,
11448
11796
  "imports": [
11449
11797
  {
11450
11798
  "path": "react",
@@ -11471,6 +11819,11 @@
11471
11819
  "kind": "import-statement",
11472
11820
  "original": "./Footer/Footer"
11473
11821
  },
11822
+ {
11823
+ "path": "src/Prebuilt/components/MoreSettings/MoreSettings.tsx",
11824
+ "kind": "import-statement",
11825
+ "original": "./MoreSettings/MoreSettings"
11826
+ },
11474
11827
  {
11475
11828
  "path": "src/Prebuilt/components/Notifications/HLSFailureModal.tsx",
11476
11829
  "kind": "import-statement",
@@ -11506,6 +11859,11 @@
11506
11859
  "kind": "import-statement",
11507
11860
  "original": "../layouts/VideoStreamingSection"
11508
11861
  },
11862
+ {
11863
+ "path": "src/Prebuilt/components/EmojiReaction.jsx",
11864
+ "kind": "import-statement",
11865
+ "original": "./EmojiReaction"
11866
+ },
11509
11867
  {
11510
11868
  "path": "src/Prebuilt/components/FullPageProgress.jsx",
11511
11869
  "kind": "import-statement",
@@ -11521,6 +11879,11 @@
11521
11879
  "kind": "import-statement",
11522
11880
  "original": "./PreviousRoleInMetadata"
11523
11881
  },
11882
+ {
11883
+ "path": "src/Prebuilt/components/RaiseHand.tsx",
11884
+ "kind": "import-statement",
11885
+ "original": "./RaiseHand"
11886
+ },
11524
11887
  {
11525
11888
  "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
11526
11889
  "kind": "import-statement",
@@ -11531,6 +11894,11 @@
11531
11894
  "kind": "import-statement",
11532
11895
  "original": "./AppData/useUISettings"
11533
11896
  },
11897
+ {
11898
+ "path": "src/Prebuilt/common/hooks.ts",
11899
+ "kind": "import-statement",
11900
+ "original": "../common/hooks"
11901
+ },
11534
11902
  {
11535
11903
  "path": "src/Prebuilt/common/constants.ts",
11536
11904
  "kind": "import-statement",
@@ -11812,7 +12180,7 @@
11812
12180
  "format": "esm"
11813
12181
  },
11814
12182
  "src/Prebuilt/components/MwebLandscapePrompt.tsx": {
11815
- "bytes": 2625,
12183
+ "bytes": 3089,
11816
12184
  "imports": [
11817
12185
  {
11818
12186
  "path": "react",
@@ -11824,6 +12192,11 @@
11824
12192
  "kind": "import-statement",
11825
12193
  "external": true
11826
12194
  },
12195
+ {
12196
+ "path": "ts-pattern",
12197
+ "kind": "import-statement",
12198
+ "external": true
12199
+ },
11827
12200
  {
11828
12201
  "path": "@100mslive/react-icons",
11829
12202
  "kind": "import-statement",
@@ -11854,6 +12227,11 @@
11854
12227
  "kind": "import-statement",
11855
12228
  "original": "../../Theme"
11856
12229
  },
12230
+ {
12231
+ "path": "src/Prebuilt/common/hooks.ts",
12232
+ "kind": "import-statement",
12233
+ "original": "../common/hooks"
12234
+ },
11857
12235
  {
11858
12236
  "path": "src/Prebuilt/common/utils.js",
11859
12237
  "kind": "import-statement",
@@ -11940,7 +12318,7 @@
11940
12318
  "format": "esm"
11941
12319
  },
11942
12320
  "src/Prebuilt/components/Toast/ToastConfig.jsx": {
11943
- "bytes": 5342,
12321
+ "bytes": 5843,
11944
12322
  "imports": [
11945
12323
  {
11946
12324
  "path": "react",
@@ -11991,7 +12369,7 @@
11991
12369
  "format": "esm"
11992
12370
  },
11993
12371
  "src/Prebuilt/components/Toast/ToastBatcher.js": {
11994
- "bytes": 1839,
12372
+ "bytes": 2054,
11995
12373
  "imports": [
11996
12374
  {
11997
12375
  "path": "src/Prebuilt/components/Toast/ToastConfig.jsx",
@@ -12017,7 +12395,7 @@
12017
12395
  "format": "esm"
12018
12396
  },
12019
12397
  "src/Prebuilt/components/Notifications/HandRaisedNotifications.tsx": {
12020
- "bytes": 1606,
12398
+ "bytes": 1818,
12021
12399
  "imports": [
12022
12400
  {
12023
12401
  "path": "react",
@@ -12089,7 +12467,7 @@
12089
12467
  "format": "esm"
12090
12468
  },
12091
12469
  "src/Prebuilt/components/Notifications/PeerNotifications.tsx": {
12092
- "bytes": 1808,
12470
+ "bytes": 1842,
12093
12471
  "imports": [
12094
12472
  {
12095
12473
  "path": "react",
@@ -13224,7 +13602,7 @@
13224
13602
  "imports": [],
13225
13603
  "exports": [],
13226
13604
  "inputs": {},
13227
- "bytes": 3203504
13605
+ "bytes": 3259526
13228
13606
  },
13229
13607
  "dist/index.cjs.js": {
13230
13608
  "imports": [
@@ -13573,6 +13951,11 @@
13573
13951
  "kind": "require-call",
13574
13952
  "external": true
13575
13953
  },
13954
+ {
13955
+ "path": "ts-pattern",
13956
+ "kind": "require-call",
13957
+ "external": true
13958
+ },
13576
13959
  {
13577
13960
  "path": "@100mslive/react-sdk",
13578
13961
  "kind": "require-call",
@@ -13743,6 +14126,26 @@
13743
14126
  "kind": "require-call",
13744
14127
  "external": true
13745
14128
  },
14129
+ {
14130
+ "path": "@100mslive/types-prebuilt/elements/join_form",
14131
+ "kind": "require-call",
14132
+ "external": true
14133
+ },
14134
+ {
14135
+ "path": "@100mslive/react-sdk",
14136
+ "kind": "require-call",
14137
+ "external": true
14138
+ },
14139
+ {
14140
+ "path": "react",
14141
+ "kind": "require-call",
14142
+ "external": true
14143
+ },
14144
+ {
14145
+ "path": "react-use",
14146
+ "kind": "require-call",
14147
+ "external": true
14148
+ },
13746
14149
  {
13747
14150
  "path": "@emoji-mart/data/sets/14/apple.json",
13748
14151
  "kind": "require-call",
@@ -13868,21 +14271,6 @@
13868
14271
  "kind": "require-call",
13869
14272
  "external": true
13870
14273
  },
13871
- {
13872
- "path": "@100mslive/types-prebuilt/elements/join_form",
13873
- "kind": "require-call",
13874
- "external": true
13875
- },
13876
- {
13877
- "path": "@100mslive/react-sdk",
13878
- "kind": "require-call",
13879
- "external": true
13880
- },
13881
- {
13882
- "path": "react",
13883
- "kind": "require-call",
13884
- "external": true
13885
- },
13886
14274
  {
13887
14275
  "path": "@100mslive/react-sdk",
13888
14276
  "kind": "require-call",
@@ -13933,6 +14321,11 @@
13933
14321
  "kind": "require-call",
13934
14322
  "external": true
13935
14323
  },
14324
+ {
14325
+ "path": "ts-pattern",
14326
+ "kind": "require-call",
14327
+ "external": true
14328
+ },
13936
14329
  {
13937
14330
  "path": "@100mslive/react-sdk",
13938
14331
  "kind": "require-call",
@@ -14018,6 +14411,11 @@
14018
14411
  "kind": "require-call",
14019
14412
  "external": true
14020
14413
  },
14414
+ {
14415
+ "path": "ts-pattern",
14416
+ "kind": "require-call",
14417
+ "external": true
14418
+ },
14021
14419
  {
14022
14420
  "path": "@100mslive/react-sdk",
14023
14421
  "kind": "require-call",
@@ -14203,6 +14601,11 @@
14203
14601
  "kind": "require-call",
14204
14602
  "external": true
14205
14603
  },
14604
+ {
14605
+ "path": "ts-pattern",
14606
+ "kind": "require-call",
14607
+ "external": true
14608
+ },
14206
14609
  {
14207
14610
  "path": "@100mslive/react-sdk",
14208
14611
  "kind": "require-call",
@@ -14363,6 +14766,11 @@
14363
14766
  "kind": "require-call",
14364
14767
  "external": true
14365
14768
  },
14769
+ {
14770
+ "path": "ts-pattern",
14771
+ "kind": "require-call",
14772
+ "external": true
14773
+ },
14366
14774
  {
14367
14775
  "path": "@100mslive/react-sdk",
14368
14776
  "kind": "require-call",
@@ -14658,6 +15066,11 @@
14658
15066
  "kind": "require-call",
14659
15067
  "external": true
14660
15068
  },
15069
+ {
15070
+ "path": "ts-pattern",
15071
+ "kind": "require-call",
15072
+ "external": true
15073
+ },
14661
15074
  {
14662
15075
  "path": "@100mslive/react-sdk",
14663
15076
  "kind": "require-call",
@@ -14708,6 +15121,21 @@
14708
15121
  "kind": "require-call",
14709
15122
  "external": true
14710
15123
  },
15124
+ {
15125
+ "path": "@100mslive/react-sdk",
15126
+ "kind": "require-call",
15127
+ "external": true
15128
+ },
15129
+ {
15130
+ "path": "@100mslive/react-icons",
15131
+ "kind": "require-call",
15132
+ "external": true
15133
+ },
15134
+ {
15135
+ "path": "react",
15136
+ "kind": "require-call",
15137
+ "external": true
15138
+ },
14711
15139
  {
14712
15140
  "path": "react",
14713
15141
  "kind": "require-call",
@@ -14953,6 +15381,11 @@
14953
15381
  "kind": "require-call",
14954
15382
  "external": true
14955
15383
  },
15384
+ {
15385
+ "path": "ts-pattern",
15386
+ "kind": "require-call",
15387
+ "external": true
15388
+ },
14956
15389
  {
14957
15390
  "path": "@100mslive/react-sdk",
14958
15391
  "kind": "require-call",
@@ -15018,6 +15451,11 @@
15018
15451
  "kind": "require-call",
15019
15452
  "external": true
15020
15453
  },
15454
+ {
15455
+ "path": "ts-pattern",
15456
+ "kind": "require-call",
15457
+ "external": true
15458
+ },
15021
15459
  {
15022
15460
  "path": "@100mslive/react-sdk",
15023
15461
  "kind": "require-call",
@@ -15154,12 +15592,12 @@
15154
15592
  "external": true
15155
15593
  },
15156
15594
  {
15157
- "path": "@100mslive/react-sdk",
15595
+ "path": "ts-pattern",
15158
15596
  "kind": "require-call",
15159
15597
  "external": true
15160
15598
  },
15161
15599
  {
15162
- "path": "react",
15600
+ "path": "@100mslive/react-sdk",
15163
15601
  "kind": "require-call",
15164
15602
  "external": true
15165
15603
  },
@@ -15173,16 +15611,6 @@
15173
15611
  "kind": "require-call",
15174
15612
  "external": true
15175
15613
  },
15176
- {
15177
- "path": "@100mslive/react-sdk",
15178
- "kind": "require-call",
15179
- "external": true
15180
- },
15181
- {
15182
- "path": "@100mslive/react-icons",
15183
- "kind": "require-call",
15184
- "external": true
15185
- },
15186
15614
  {
15187
15615
  "path": "react",
15188
15616
  "kind": "require-call",
@@ -15523,6 +15951,11 @@
15523
15951
  "kind": "require-call",
15524
15952
  "external": true
15525
15953
  },
15954
+ {
15955
+ "path": "react",
15956
+ "kind": "require-call",
15957
+ "external": true
15958
+ },
15526
15959
  {
15527
15960
  "path": "@100mslive/react-icons",
15528
15961
  "kind": "require-call",
@@ -15538,6 +15971,11 @@
15538
15971
  "kind": "require-call",
15539
15972
  "external": true
15540
15973
  },
15974
+ {
15975
+ "path": "react",
15976
+ "kind": "require-call",
15977
+ "external": true
15978
+ },
15541
15979
  {
15542
15980
  "path": "@100mslive/hls-player",
15543
15981
  "kind": "require-call",
@@ -15558,11 +15996,26 @@
15558
15996
  "kind": "require-call",
15559
15997
  "external": true
15560
15998
  },
15999
+ {
16000
+ "path": "@100mslive/react-icons",
16001
+ "kind": "require-call",
16002
+ "external": true
16003
+ },
15561
16004
  {
15562
16005
  "path": "react",
15563
16006
  "kind": "require-call",
15564
16007
  "external": true
15565
16008
  },
16009
+ {
16010
+ "path": "react-use",
16011
+ "kind": "require-call",
16012
+ "external": true
16013
+ },
16014
+ {
16015
+ "path": "@100mslive/react-icons",
16016
+ "kind": "require-call",
16017
+ "external": true
16018
+ },
15566
16019
  {
15567
16020
  "path": "react",
15568
16021
  "kind": "require-call",
@@ -15578,6 +16031,21 @@
15578
16031
  "kind": "require-call",
15579
16032
  "external": true
15580
16033
  },
16034
+ {
16035
+ "path": "react-use",
16036
+ "kind": "require-call",
16037
+ "external": true
16038
+ },
16039
+ {
16040
+ "path": "@100mslive/react-icons",
16041
+ "kind": "require-call",
16042
+ "external": true
16043
+ },
16044
+ {
16045
+ "path": "react",
16046
+ "kind": "require-call",
16047
+ "external": true
16048
+ },
15581
16049
  {
15582
16050
  "path": "@100mslive/react-icons",
15583
16051
  "kind": "require-call",
@@ -15618,6 +16086,11 @@
15618
16086
  "kind": "require-call",
15619
16087
  "external": true
15620
16088
  },
16089
+ {
16090
+ "path": "ts-pattern",
16091
+ "kind": "require-call",
16092
+ "external": true
16093
+ },
15621
16094
  {
15622
16095
  "path": "@100mslive/react-sdk",
15623
16096
  "kind": "require-call",
@@ -15768,6 +16241,11 @@
15768
16241
  "kind": "require-call",
15769
16242
  "external": true
15770
16243
  },
16244
+ {
16245
+ "path": "ts-pattern",
16246
+ "kind": "require-call",
16247
+ "external": true
16248
+ },
15771
16249
  {
15772
16250
  "path": "@100mslive/react-icons",
15773
16251
  "kind": "require-call",
@@ -16028,7 +16506,7 @@
16028
16506
  "entryPoint": "src/index.ts",
16029
16507
  "inputs": {
16030
16508
  "<define:process.env>": {
16031
- "bytesInOutput": 18254
16509
+ "bytesInOutput": 18240
16032
16510
  },
16033
16511
  "src/Theme/base.config.ts": {
16034
16512
  "bytesInOutput": 6104
@@ -16067,7 +16545,7 @@
16067
16545
  "bytesInOutput": 417
16068
16546
  },
16069
16547
  "src/Button/Button.tsx": {
16070
- "bytesInOutput": 5359
16548
+ "bytesInOutput": 5355
16071
16549
  },
16072
16550
  "src/Button/index.tsx": {
16073
16551
  "bytesInOutput": 132
@@ -16247,7 +16725,7 @@
16247
16725
  "bytesInOutput": 297
16248
16726
  },
16249
16727
  "src/Fieldset/Fieldset.tsx": {
16250
- "bytesInOutput": 398
16728
+ "bytesInOutput": 397
16251
16729
  },
16252
16730
  "src/Fieldset/index.tsx": {
16253
16731
  "bytesInOutput": 138
@@ -16304,7 +16782,7 @@
16304
16782
  "bytesInOutput": 3450
16305
16783
  },
16306
16784
  "../../node_modules/lodash/lodash.js": {
16307
- "bytesInOutput": 224274
16785
+ "bytesInOutput": 224298
16308
16786
  },
16309
16787
  "src/Prebuilt/provider/roomLayoutProvider/constants/index.ts": {
16310
16788
  "bytesInOutput": 1887
@@ -16322,7 +16800,7 @@
16322
16800
  "bytesInOutput": 3003
16323
16801
  },
16324
16802
  "src/Prebuilt/components/AppData/useSidepane.js": {
16325
- "bytesInOutput": 2515
16803
+ "bytesInOutput": 3258
16326
16804
  },
16327
16805
  "src/Prebuilt/components/AppData/AppData.tsx": {
16328
16806
  "bytesInOutput": 6542
@@ -16334,16 +16812,16 @@
16334
16812
  "bytesInOutput": 4824
16335
16813
  },
16336
16814
  "src/Prebuilt/components/AuthToken.jsx": {
16337
- "bytesInOutput": 4510
16815
+ "bytesInOutput": 4530
16338
16816
  },
16339
16817
  "src/Prebuilt/IconButton.tsx": {
16340
- "bytesInOutput": 845
16818
+ "bytesInOutput": 844
16341
16819
  },
16342
16820
  "src/Prebuilt/components/IconButtonWithOptions/IconButtonWithOptions.tsx": {
16343
- "bytesInOutput": 4096
16821
+ "bytesInOutput": 4095
16344
16822
  },
16345
16823
  "src/Sheet/Sheet.tsx": {
16346
- "bytesInOutput": 3503
16824
+ "bytesInOutput": 3610
16347
16825
  },
16348
16826
  "src/Sheet/index.ts": {
16349
16827
  "bytesInOutput": 128
@@ -16370,7 +16848,7 @@
16370
16848
  "bytesInOutput": 1359
16371
16849
  },
16372
16850
  "src/Prebuilt/components/AudioVideoToggle.tsx": {
16373
- "bytesInOutput": 12588
16851
+ "bytesInOutput": 12611
16374
16852
  },
16375
16853
  "src/Prebuilt/components/Footer/EmojiCard.jsx": {
16376
16854
  "bytesInOutput": 1315
@@ -16378,8 +16856,11 @@
16378
16856
  "src/Prebuilt/components/hooks/useDropdownList.ts": {
16379
16857
  "bytesInOutput": 884
16380
16858
  },
16859
+ "src/Prebuilt/common/hooks.ts": {
16860
+ "bytesInOutput": 3890
16861
+ },
16381
16862
  "src/Prebuilt/components/EmojiReaction.jsx": {
16382
- "bytesInOutput": 2928
16863
+ "bytesInOutput": 3381
16383
16864
  },
16384
16865
  "src/Prebuilt/components/Leave/EndSessionContent.tsx": {
16385
16866
  "bytesInOutput": 2547
@@ -16394,13 +16875,13 @@
16394
16875
  "bytesInOutput": 2361
16395
16876
  },
16396
16877
  "src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx": {
16397
- "bytesInOutput": 7065
16878
+ "bytesInOutput": 7168
16398
16879
  },
16399
16880
  "src/Prebuilt/components/Leave/MwebLeaveRoom.tsx": {
16400
- "bytesInOutput": 5354
16881
+ "bytesInOutput": 5991
16401
16882
  },
16402
16883
  "src/Prebuilt/components/Leave/LeaveRoom.tsx": {
16403
- "bytesInOutput": 2672
16884
+ "bytesInOutput": 3023
16404
16885
  },
16405
16886
  "src/Prebuilt/components/PIP/pipUtils.js": {
16406
16887
  "bytesInOutput": 4391
@@ -16417,14 +16898,11 @@
16417
16898
  "src/Prebuilt/components/PIP/index.jsx": {
16418
16899
  "bytesInOutput": 369
16419
16900
  },
16420
- "src/Prebuilt/common/hooks.ts": {
16421
- "bytesInOutput": 3054
16422
- },
16423
16901
  "src/Prebuilt/components/RoleChangeModal.jsx": {
16424
16902
  "bytesInOutput": 7604
16425
16903
  },
16426
16904
  "src/Prebuilt/primitives/DialogContent.jsx": {
16427
- "bytesInOutput": 9393
16905
+ "bytesInOutput": 9392
16428
16906
  },
16429
16907
  "src/Prebuilt/components/Streaming/ResolutionInput.jsx": {
16430
16908
  "bytesInOutput": 3668
@@ -16433,7 +16911,7 @@
16433
16911
  "bytesInOutput": 5459
16434
16912
  },
16435
16913
  "src/Prebuilt/components/StatsForNerds.jsx": {
16436
- "bytesInOutput": 11474
16914
+ "bytesInOutput": 11847
16437
16915
  },
16438
16916
  "src/Prebuilt/components/MoreSettings/BulkRoleChangeModal.jsx": {
16439
16917
  "bytesInOutput": 6192
@@ -16457,28 +16935,28 @@
16457
16935
  "bytesInOutput": 2305
16458
16936
  },
16459
16937
  "src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx": {
16460
- "bytesInOutput": 8159
16938
+ "bytesInOutput": 8565
16461
16939
  },
16462
16940
  "../../node_modules/reselect/es/index.js": {
16463
16941
  "bytesInOutput": 2641
16464
16942
  },
16465
16943
  "../../node_modules/ua-parser-js/src/ua-parser.js": {
16466
- "bytesInOutput": 42464
16944
+ "bytesInOutput": 42486
16467
16945
  },
16468
16946
  "../../node_modules/lodash.isequal/index.js": {
16469
16947
  "bytesInOutput": 26597
16470
16948
  },
16471
16949
  "../../node_modules/webrtc-adapter/src/js/utils.js": {
16472
- "bytesInOutput": 6459
16950
+ "bytesInOutput": 6467
16473
16951
  },
16474
16952
  "../../node_modules/webrtc-adapter/src/js/chrome/getusermedia.js": {
16475
- "bytesInOutput": 6244
16953
+ "bytesInOutput": 6256
16476
16954
  },
16477
16955
  "../../node_modules/webrtc-adapter/src/js/chrome/getdisplaymedia.js": {
16478
16956
  "bytesInOutput": 1396
16479
16957
  },
16480
16958
  "../../node_modules/webrtc-adapter/src/js/chrome/chrome_shim.js": {
16481
- "bytesInOutput": 22897
16959
+ "bytesInOutput": 22882
16482
16960
  },
16483
16961
  "../../node_modules/webrtc-adapter/src/js/firefox/getusermedia.js": {
16484
16962
  "bytesInOutput": 2280
@@ -16490,13 +16968,13 @@
16490
16968
  "bytesInOutput": 9352
16491
16969
  },
16492
16970
  "../../node_modules/webrtc-adapter/src/js/safari/safari_shim.js": {
16493
- "bytesInOutput": 12026
16971
+ "bytesInOutput": 12019
16494
16972
  },
16495
16973
  "../../node_modules/sdp/sdp.js": {
16496
- "bytesInOutput": 22278
16974
+ "bytesInOutput": 22291
16497
16975
  },
16498
16976
  "../../node_modules/webrtc-adapter/src/js/common_shim.js": {
16499
- "bytesInOutput": 12616
16977
+ "bytesInOutput": 12620
16500
16978
  },
16501
16979
  "../../node_modules/webrtc-adapter/src/js/adapter_factory.js": {
16502
16980
  "bytesInOutput": 4575
@@ -16508,7 +16986,7 @@
16508
16986
  "bytesInOutput": 16122
16509
16987
  },
16510
16988
  "../../node_modules/sdp-transform/lib/parser.js": {
16511
- "bytesInOutput": 3485
16989
+ "bytesInOutput": 3493
16512
16990
  },
16513
16991
  "../../node_modules/sdp-transform/lib/writer.js": {
16514
16992
  "bytesInOutput": 3070
@@ -16517,7 +16995,7 @@
16517
16995
  "bytesInOutput": 615
16518
16996
  },
16519
16997
  "../hms-video-store/dist/index.js": {
16520
- "bytesInOutput": 53028
16998
+ "bytesInOutput": 53136
16521
16999
  },
16522
17000
  "src/Prebuilt/components/hooks/usePlaylistMusic.js": {
16523
17001
  "bytesInOutput": 1384
@@ -16529,7 +17007,7 @@
16529
17007
  "bytesInOutput": 8158
16530
17008
  },
16531
17009
  "src/Prebuilt/components/Header/StreamActions.tsx": {
16532
- "bytesInOutput": 12096
17010
+ "bytesInOutput": 12108
16533
17011
  },
16534
17012
  "src/Prebuilt/components/MoreSettings/ActionTile.jsx": {
16535
17013
  "bytesInOutput": 1881
@@ -16538,7 +17016,7 @@
16538
17016
  "bytesInOutput": 4158
16539
17017
  },
16540
17018
  "src/Prebuilt/components/MoreSettings/ChangeNameModal.tsx": {
16541
- "bytesInOutput": 2839
17019
+ "bytesInOutput": 2842
16542
17020
  },
16543
17021
  "src/Prebuilt/components/AppData/useSheet.ts": {
16544
17022
  "bytesInOutput": 1099
@@ -16547,13 +17025,13 @@
16547
17025
  "bytesInOutput": 938
16548
17026
  },
16549
17027
  "src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx": {
16550
- "bytesInOutput": 12980
17028
+ "bytesInOutput": 13528
16551
17029
  },
16552
17030
  "src/Prebuilt/components/MoreSettings/MoreSettings.tsx": {
16553
- "bytesInOutput": 729
17031
+ "bytesInOutput": 831
16554
17032
  },
16555
- "src/Prebuilt/components/RaiseHand.jsx": {
16556
- "bytesInOutput": 918
17033
+ "src/Prebuilt/components/RaiseHand.tsx": {
17034
+ "bytesInOutput": 1149
16557
17035
  },
16558
17036
  "src/Prebuilt/images/pdf-share.png": {
16559
17037
  "bytesInOutput": 25548
@@ -16574,13 +17052,13 @@
16574
17052
  "bytesInOutput": 1217
16575
17053
  },
16576
17054
  "src/Prebuilt/components/pdfAnnotator/uploadedFile.jsx": {
16577
- "bytesInOutput": 2854
17055
+ "bytesInOutput": 2853
16578
17056
  },
16579
17057
  "src/Prebuilt/components/pdfAnnotator/pdfFileOptions.jsx": {
16580
17058
  "bytesInOutput": 1563
16581
17059
  },
16582
17060
  "src/Prebuilt/components/pdfAnnotator/shareScreenOptions.jsx": {
16583
- "bytesInOutput": 7928
17061
+ "bytesInOutput": 7926
16584
17062
  },
16585
17063
  "src/Prebuilt/components/ScreenShareToggle.jsx": {
16586
17064
  "bytesInOutput": 2190
@@ -16601,7 +17079,7 @@
16601
17079
  "bytesInOutput": 1694
16602
17080
  },
16603
17081
  "src/Prebuilt/components/Footer/RoleOptions.tsx": {
16604
- "bytesInOutput": 8344
17082
+ "bytesInOutput": 8483
16605
17083
  },
16606
17084
  "src/Prebuilt/components/Footer/RoleAccordion.tsx": {
16607
17085
  "bytesInOutput": 5338
@@ -16637,7 +17115,7 @@
16637
17115
  "bytesInOutput": 394
16638
17116
  },
16639
17117
  "src/Prebuilt/components/Polls/common/OptionInputWithDelete.tsx": {
16640
- "bytesInOutput": 1336
17118
+ "bytesInOutput": 1335
16641
17119
  },
16642
17120
  "src/Prebuilt/components/Polls/common/VoteCount.tsx": {
16643
17121
  "bytesInOutput": 587
@@ -16661,7 +17139,7 @@
16661
17139
  "bytesInOutput": 5842
16662
17140
  },
16663
17141
  "src/Prebuilt/components/Polls/common/utils.ts": {
16664
- "bytesInOutput": 836
17142
+ "bytesInOutput": 837
16665
17143
  },
16666
17144
  "src/Prebuilt/components/Polls/Voting/LeaderboardEntry.tsx": {
16667
17145
  "bytesInOutput": 2726
@@ -16679,7 +17157,7 @@
16679
17157
  "bytesInOutput": 5057
16680
17158
  },
16681
17159
  "src/Prebuilt/components/Polls/Voting/QuestionCard.jsx": {
16682
- "bytesInOutput": 8469
17160
+ "bytesInOutput": 9004
16683
17161
  },
16684
17162
  "src/Prebuilt/components/Polls/Voting/StandardVoting.tsx": {
16685
17163
  "bytesInOutput": 1658
@@ -16688,11 +17166,14 @@
16688
17166
  "bytesInOutput": 2124
16689
17167
  },
16690
17168
  "src/Prebuilt/components/Polls/Voting/Voting.tsx": {
16691
- "bytesInOutput": 4182
17169
+ "bytesInOutput": 4218
16692
17170
  },
16693
17171
  "src/Prebuilt/components/Polls/Polls.tsx": {
16694
17172
  "bytesInOutput": 1177
16695
17173
  },
17174
+ "src/Prebuilt/components/Header/HeaderComponents.jsx": {
17175
+ "bytesInOutput": 2165
17176
+ },
16696
17177
  "src/Prebuilt/components/RoomDetails/Duration.tsx": {
16697
17178
  "bytesInOutput": 999
16698
17179
  },
@@ -16700,7 +17181,7 @@
16700
17181
  "bytesInOutput": 1003
16701
17182
  },
16702
17183
  "src/Prebuilt/components/RoomDetails/RoomDetailsPane.tsx": {
16703
- "bytesInOutput": 1736
17184
+ "bytesInOutput": 2558
16704
17185
  },
16705
17186
  "src/Prebuilt/components/Chat/MwebChatOption.tsx": {
16706
17187
  "bytesInOutput": 688
@@ -16721,7 +17202,7 @@
16721
17202
  "bytesInOutput": 2348
16722
17203
  },
16723
17204
  "src/Prebuilt/components/hooks/usePinnedBy.tsx": {
16724
- "bytesInOutput": 920
17205
+ "bytesInOutput": 926
16725
17206
  },
16726
17207
  "src/Prebuilt/components/Chat/ChatBody.tsx": {
16727
17208
  "bytesInOutput": 17147
@@ -16739,7 +17220,7 @@
16739
17220
  "bytesInOutput": 1440
16740
17221
  },
16741
17222
  "src/Prebuilt/components/Chat/ChatFooter.tsx": {
16742
- "bytesInOutput": 10609
17223
+ "bytesInOutput": 11726
16743
17224
  },
16744
17225
  "src/Prebuilt/components/Chat/ChatStates.tsx": {
16745
17226
  "bytesInOutput": 3529
@@ -16754,7 +17235,7 @@
16754
17235
  "bytesInOutput": 6106
16755
17236
  },
16756
17237
  "src/Prebuilt/components/Chat/Chat.tsx": {
16757
- "bytesInOutput": 4402
17238
+ "bytesInOutput": 5596
16758
17239
  },
16759
17240
  "src/Prebuilt/components/Footer/PaginatedParticipants.tsx": {
16760
17241
  "bytesInOutput": 5344
@@ -16763,7 +17244,7 @@
16763
17244
  "bytesInOutput": 3060
16764
17245
  },
16765
17246
  "src/Prebuilt/components/SidePaneTabs.tsx": {
16766
- "bytesInOutput": 8908
17247
+ "bytesInOutput": 9231
16767
17248
  },
16768
17249
  "src/Prebuilt/components/Connection/TileConnection.tsx": {
16769
17250
  "bytesInOutput": 2716
@@ -16772,7 +17253,7 @@
16772
17253
  "bytesInOutput": 296
16773
17254
  },
16774
17255
  "src/Prebuilt/components/TileMenu/TileMenuContent.tsx": {
16775
- "bytesInOutput": 13693
17256
+ "bytesInOutput": 13723
16776
17257
  },
16777
17258
  "src/Prebuilt/components/TileMenu/TileMenu.tsx": {
16778
17259
  "bytesInOutput": 5495
@@ -16799,7 +17280,7 @@
16799
17280
  "bytesInOutput": 8756
16800
17281
  },
16801
17282
  "src/Prebuilt/layouts/SidePane.tsx": {
16802
- "bytesInOutput": 5787
17283
+ "bytesInOutput": 7572
16803
17284
  },
16804
17285
  "src/Prebuilt/components/Chip.tsx": {
16805
17286
  "bytesInOutput": 1118
@@ -16807,9 +17288,6 @@
16807
17288
  "src/Prebuilt/components/FullPageProgress.jsx": {
16808
17289
  "bytesInOutput": 880
16809
17290
  },
16810
- "src/Prebuilt/components/Header/HeaderComponents.jsx": {
16811
- "bytesInOutput": 2165
16812
- },
16813
17291
  "src/Prebuilt/components/Preview/PreviewForm.tsx": {
16814
17292
  "bytesInOutput": 3422
16815
17293
  },
@@ -16847,10 +17325,10 @@
16847
17325
  "bytesInOutput": 3143
16848
17326
  },
16849
17327
  "src/Prebuilt/components/hooks/useRoleProminencePeers.tsx": {
16850
- "bytesInOutput": 1302
17328
+ "bytesInOutput": 1387
16851
17329
  },
16852
17330
  "src/Prebuilt/components/VideoLayouts/RoleProminence.tsx": {
16853
- "bytesInOutput": 2716
17331
+ "bytesInOutput": 2745
16854
17332
  },
16855
17333
  "src/Prebuilt/components/LayoutModeSelector.tsx": {
16856
17334
  "bytesInOutput": 3951
@@ -16892,43 +17370,52 @@
16892
17370
  "bytesInOutput": 656
16893
17371
  },
16894
17372
  "src/Prebuilt/components/HMSVideo/HMSVideo.jsx": {
16895
- "bytesInOutput": 1563
17373
+ "bytesInOutput": 1860
17374
+ },
17375
+ "src/Prebuilt/components/HMSVideo/PlayerContext.tsx": {
17376
+ "bytesInOutput": 489
16896
17377
  },
16897
- "src/Prebuilt/components/HMSVideo/PlayButton.jsx": {
16898
- "bytesInOutput": 860
17378
+ "src/Prebuilt/components/HMSVideo/PlayPauseButton.tsx": {
17379
+ "bytesInOutput": 1254
17380
+ },
17381
+ "src/Prebuilt/components/HMSVideo/SeekControls.tsx": {
17382
+ "bytesInOutput": 595
16899
17383
  },
16900
- "src/Prebuilt/components/HMSVideo/HMSVIdeoUtils.js": {
16901
- "bytesInOutput": 850
17384
+ "src/Prebuilt/components/HMSVideo/utils.ts": {
17385
+ "bytesInOutput": 835
16902
17386
  },
16903
- "src/Prebuilt/components/HMSVideo/VideoProgress.jsx": {
16904
- "bytesInOutput": 3186
17387
+ "src/Prebuilt/components/HMSVideo/VideoProgress.tsx": {
17388
+ "bytesInOutput": 3728
16905
17389
  },
16906
- "src/Prebuilt/components/HMSVideo/VideoTime.jsx": {
16907
- "bytesInOutput": 1275
17390
+ "src/Prebuilt/components/HMSVideo/VideoTime.tsx": {
17391
+ "bytesInOutput": 1748
16908
17392
  },
16909
- "src/Prebuilt/components/HMSVideo/VolumeControl.jsx": {
16910
- "bytesInOutput": 2857
17393
+ "src/Prebuilt/components/HMSVideo/VolumeControl.tsx": {
17394
+ "bytesInOutput": 2951
16911
17395
  },
16912
- "src/Prebuilt/components/HMSVideo/index.js": {
16913
- "bytesInOutput": 564
17396
+ "src/Prebuilt/components/HMSVideo/index.ts": {
17397
+ "bytesInOutput": 627
16914
17398
  },
16915
- "src/Prebuilt/components/HMSVideo/FullscreenButton.jsx": {
16916
- "bytesInOutput": 832
17399
+ "src/Prebuilt/components/HMSVideo/FullscreenButton.tsx": {
17400
+ "bytesInOutput": 997
16917
17401
  },
16918
- "src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.jsx": {
16919
- "bytesInOutput": 1233
17402
+ "src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.tsx": {
17403
+ "bytesInOutput": 2389
16920
17404
  },
16921
17405
  "src/Prebuilt/components/HMSVideo/HLSCaptionSelector.tsx": {
16922
- "bytesInOutput": 893
17406
+ "bytesInOutput": 1016
17407
+ },
17408
+ "src/Prebuilt/components/HMSVideo/HLSQualitySelector.tsx": {
17409
+ "bytesInOutput": 8496
16923
17410
  },
16924
- "src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx": {
16925
- "bytesInOutput": 4598
17411
+ "src/Prebuilt/components/HMSVideo/MwebHLSViewTitle.tsx": {
17412
+ "bytesInOutput": 2852
16926
17413
  },
16927
17414
  "src/Prebuilt/layouts/HLSView.jsx": {
16928
- "bytesInOutput": 21219
17415
+ "bytesInOutput": 29703
16929
17416
  },
16930
17417
  "src/Prebuilt/layouts/VideoStreamingSection.tsx": {
16931
- "bytesInOutput": 4111
17418
+ "bytesInOutput": 5017
16932
17419
  },
16933
17420
  "src/Prebuilt/components/Header/RoomDetailsHeader.tsx": {
16934
17421
  "bytesInOutput": 2182
@@ -16946,7 +17433,7 @@
16946
17433
  "bytesInOutput": 1024
16947
17434
  },
16948
17435
  "src/Prebuilt/components/ConferenceScreen.tsx": {
16949
- "bytesInOutput": 7500
17436
+ "bytesInOutput": 9089
16950
17437
  },
16951
17438
  "src/Prebuilt/components/ErrorBoundary.jsx": {
16952
17439
  "bytesInOutput": 4366
@@ -16970,7 +17457,7 @@
16970
17457
  "bytesInOutput": 2925
16971
17458
  },
16972
17459
  "src/Prebuilt/components/MwebLandscapePrompt.tsx": {
16973
- "bytesInOutput": 3195
17460
+ "bytesInOutput": 3699
16974
17461
  },
16975
17462
  "src/Prebuilt/components/Notifications/AutoplayBlockedModal.tsx": {
16976
17463
  "bytesInOutput": 1415
@@ -16979,19 +17466,19 @@
16979
17466
  "bytesInOutput": 1817
16980
17467
  },
16981
17468
  "src/Prebuilt/components/Toast/ToastConfig.jsx": {
16982
- "bytesInOutput": 7810
17469
+ "bytesInOutput": 8710
16983
17470
  },
16984
17471
  "src/Prebuilt/components/Toast/ToastBatcher.js": {
16985
- "bytesInOutput": 2151
17472
+ "bytesInOutput": 2394
16986
17473
  },
16987
17474
  "src/Prebuilt/components/Notifications/HandRaisedNotifications.tsx": {
16988
- "bytesInOutput": 1691
17475
+ "bytesInOutput": 2023
16989
17476
  },
16990
17477
  "src/Prebuilt/components/Notifications/InitErrorModal.tsx": {
16991
17478
  "bytesInOutput": 1964
16992
17479
  },
16993
17480
  "src/Prebuilt/components/Notifications/PeerNotifications.tsx": {
16994
- "bytesInOutput": 2112
17481
+ "bytesInOutput": 2146
16995
17482
  },
16996
17483
  "src/Prebuilt/images/android-perm-1.png": {
16997
17484
  "bytesInOutput": 10560
@@ -17006,16 +17493,16 @@
17006
17493
  "bytesInOutput": 2953
17007
17494
  },
17008
17495
  "src/Prebuilt/components/Notifications/TrackBulkUnmuteModal.tsx": {
17009
- "bytesInOutput": 2376
17496
+ "bytesInOutput": 2379
17010
17497
  },
17011
17498
  "src/Prebuilt/components/Notifications/TrackNotifications.tsx": {
17012
17499
  "bytesInOutput": 948
17013
17500
  },
17014
17501
  "src/Prebuilt/components/Notifications/TrackUnmuteModal.tsx": {
17015
- "bytesInOutput": 2245
17502
+ "bytesInOutput": 2248
17016
17503
  },
17017
17504
  "src/Prebuilt/components/Notifications/Notifications.tsx": {
17018
- "bytesInOutput": 8883
17505
+ "bytesInOutput": 8886
17019
17506
  },
17020
17507
  "src/Prebuilt/components/Notifications/index.tsx": {
17021
17508
  "bytesInOutput": 173
@@ -17063,7 +17550,7 @@
17063
17550
  "bytesInOutput": 2980
17064
17551
  }
17065
17552
  },
17066
- "bytes": 1512065
17553
+ "bytes": 1547557
17067
17554
  }
17068
17555
  }
17069
17556
  }