@100mslive/roomkit-react 0.2.8-alpha.1 → 0.2.8-alpha.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. package/dist/HLSView-EDROW5VZ.js +1411 -0
  2. package/dist/HLSView-EDROW5VZ.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-ERIM35YN.js → chunk-YFJQ4B6X.js} +1544 -1174
  27. package/dist/chunk-YFJQ4B6X.js.map +7 -0
  28. package/dist/index.cjs.js +2727 -1899
  29. package/dist/index.cjs.js.map +4 -4
  30. package/dist/index.js +1 -1
  31. package/dist/meta.cjs.json +777 -290
  32. package/dist/meta.esbuild.json +798 -299
  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/AuthToken.jsx +1 -1
  42. package/src/Prebuilt/components/Chat/Chat.tsx +41 -1
  43. package/src/Prebuilt/components/Chat/ChatFooter.tsx +33 -13
  44. package/src/Prebuilt/components/Chat/MwebChatOption.tsx +1 -1
  45. package/src/Prebuilt/components/ConferenceScreen.tsx +48 -7
  46. package/src/Prebuilt/components/EmojiReaction.jsx +33 -23
  47. package/src/Prebuilt/components/Footer/Footer.tsx +0 -1
  48. package/src/Prebuilt/components/Footer/RoleOptions.tsx +141 -125
  49. package/src/Prebuilt/components/HMSVideo/Controls.jsx +1 -1
  50. package/src/Prebuilt/components/HMSVideo/FullscreenButton.tsx +13 -0
  51. package/src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.tsx +72 -0
  52. package/src/Prebuilt/components/HMSVideo/HLSCaptionSelector.tsx +4 -2
  53. package/src/Prebuilt/components/HMSVideo/HLSQualitySelector.tsx +248 -0
  54. package/src/Prebuilt/components/HMSVideo/HMSVideo.jsx +18 -7
  55. package/src/Prebuilt/components/HMSVideo/MwebHLSViewTitle.tsx +84 -0
  56. package/src/Prebuilt/components/HMSVideo/PlayButton.tsx +27 -0
  57. package/src/Prebuilt/components/HMSVideo/PlayPauseButton.tsx +27 -0
  58. package/src/Prebuilt/components/HMSVideo/PlayerContext.tsx +15 -0
  59. package/src/Prebuilt/components/HMSVideo/SeekControls.tsx +22 -0
  60. package/src/Prebuilt/components/HMSVideo/VideoProgress.tsx +95 -0
  61. package/src/Prebuilt/components/HMSVideo/VideoTime.tsx +43 -0
  62. package/src/Prebuilt/components/HMSVideo/{VolumeControl.jsx → VolumeControl.tsx} +6 -4
  63. package/src/Prebuilt/components/HMSVideo/{index.js → index.ts} +6 -2
  64. package/src/Prebuilt/components/HMSVideo/{HMSVIdeoUtils.js → utils.ts} +5 -5
  65. package/src/Prebuilt/components/Header/StreamActions.tsx +1 -1
  66. package/src/Prebuilt/components/IconButtonWithOptions/IconButtonWithOptions.tsx +1 -1
  67. package/src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx +50 -46
  68. package/src/Prebuilt/components/Leave/LeaveRoom.tsx +15 -4
  69. package/src/Prebuilt/components/Leave/MwebLeaveRoom.tsx +46 -27
  70. package/src/Prebuilt/components/MoreSettings/MoreSettings.tsx +3 -1
  71. package/src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx +37 -31
  72. package/src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx +12 -8
  73. package/src/Prebuilt/components/MwebLandscapePrompt.tsx +14 -3
  74. package/src/Prebuilt/components/Notifications/HandRaisedNotifications.tsx +5 -2
  75. package/src/Prebuilt/components/Notifications/PeerNotifications.tsx +1 -1
  76. package/src/Prebuilt/components/Polls/Voting/QuestionCard.jsx +19 -8
  77. package/src/Prebuilt/components/Polls/Voting/Voting.tsx +3 -2
  78. package/src/Prebuilt/components/Polls/common/OptionInputWithDelete.tsx +1 -1
  79. package/src/Prebuilt/components/Polls/common/utils.ts +2 -2
  80. package/src/Prebuilt/components/RaiseHand.tsx +24 -0
  81. package/src/Prebuilt/components/RoomDetails/RoomDetailsPane.tsx +41 -14
  82. package/src/Prebuilt/components/SidePaneTabs.tsx +56 -48
  83. package/src/Prebuilt/components/StatsForNerds.jsx +14 -6
  84. package/src/Prebuilt/components/Streaming/Common.jsx +1 -1
  85. package/src/Prebuilt/components/TileMenu/TileMenuContent.tsx +2 -2
  86. package/src/Prebuilt/components/Toast/ToastBatcher.js +8 -1
  87. package/src/Prebuilt/components/Toast/ToastConfig.jsx +17 -0
  88. package/src/Prebuilt/components/pdfAnnotator/shareScreenOptions.jsx +2 -2
  89. package/src/Prebuilt/components/pdfAnnotator/uploadedFile.jsx +1 -1
  90. package/src/Prebuilt/layouts/HLSView.jsx +379 -179
  91. package/src/Prebuilt/layouts/SidePane.tsx +145 -59
  92. package/src/Prebuilt/layouts/VideoStreamingSection.tsx +22 -2
  93. package/src/Prebuilt/primitives/DialogContent.jsx +1 -1
  94. package/src/Prebuilt/provider/roomLayoutProvider/index.tsx +1 -1
  95. package/src/Sheet/Sheet.tsx +7 -3
  96. package/dist/HLSView-SJCF34GE.js +0 -987
  97. package/dist/HLSView-SJCF34GE.js.map +0 -7
  98. package/dist/chunk-ERIM35YN.js.map +0 -7
  99. package/src/Prebuilt/components/HMSVideo/FullscreenButton.jsx +0 -18
  100. package/src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.jsx +0 -35
  101. package/src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx +0 -127
  102. package/src/Prebuilt/components/HMSVideo/PlayButton.jsx +0 -13
  103. package/src/Prebuilt/components/HMSVideo/VideoProgress.jsx +0 -76
  104. package/src/Prebuilt/components/HMSVideo/VideoTime.jsx +0 -33
  105. 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",
@@ -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": 326043,
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": 6635,
5938
+ "bytes": 7089,
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": [
@@ -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": 1333,
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": "../../.."
10975
+ },
10976
+ {
10977
+ "path": "src/Prebuilt/components/HMSVideo/PlayerContext.tsx",
10978
+ "kind": "import-statement",
10979
+ "original": "./PlayerContext"
10798
10980
  },
10799
10981
  {
10800
- "path": "src/Prebuilt/components/HMSVideo/HMSVIdeoUtils.js",
10982
+ "path": "src/Prebuilt/components/HMSVideo/utils.ts",
10801
10983
  "kind": "import-statement",
10802
- "original": "./HMSVIdeoUtils"
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": 26172,
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",
@@ -13229,7 +13607,7 @@
13229
13607
  "dist/index.js": {
13230
13608
  "imports": [
13231
13609
  {
13232
- "path": "dist/chunk-ERIM35YN.js",
13610
+ "path": "dist/chunk-YFJQ4B6X.js",
13233
13611
  "kind": "import-statement"
13234
13612
  }
13235
13613
  ],
@@ -13302,16 +13680,16 @@
13302
13680
  "inputs": {},
13303
13681
  "bytes": 1822
13304
13682
  },
13305
- "dist/HLSView-SJCF34GE.js.map": {
13683
+ "dist/HLSView-EDROW5VZ.js.map": {
13306
13684
  "imports": [],
13307
13685
  "exports": [],
13308
13686
  "inputs": {},
13309
- "bytes": 58854
13687
+ "bytes": 88190
13310
13688
  },
13311
- "dist/HLSView-SJCF34GE.js": {
13689
+ "dist/HLSView-EDROW5VZ.js": {
13312
13690
  "imports": [
13313
13691
  {
13314
- "path": "dist/chunk-ERIM35YN.js",
13692
+ "path": "dist/chunk-YFJQ4B6X.js",
13315
13693
  "kind": "import-statement"
13316
13694
  },
13317
13695
  {
@@ -13379,6 +13757,16 @@
13379
13757
  "kind": "import-statement",
13380
13758
  "external": true
13381
13759
  },
13760
+ {
13761
+ "path": "react",
13762
+ "kind": "import-statement",
13763
+ "external": true
13764
+ },
13765
+ {
13766
+ "path": "react",
13767
+ "kind": "import-statement",
13768
+ "external": true
13769
+ },
13382
13770
  {
13383
13771
  "path": "@100mslive/hls-player",
13384
13772
  "kind": "import-statement",
@@ -13399,16 +13787,46 @@
13399
13787
  "kind": "import-statement",
13400
13788
  "external": true
13401
13789
  },
13790
+ {
13791
+ "path": "@100mslive/react-icons",
13792
+ "kind": "import-statement",
13793
+ "external": true
13794
+ },
13795
+ {
13796
+ "path": "react",
13797
+ "kind": "import-statement",
13798
+ "external": true
13799
+ },
13800
+ {
13801
+ "path": "react-use",
13802
+ "kind": "import-statement",
13803
+ "external": true
13804
+ },
13805
+ {
13806
+ "path": "@100mslive/react-icons",
13807
+ "kind": "import-statement",
13808
+ "external": true
13809
+ },
13402
13810
  {
13403
13811
  "path": "react",
13404
13812
  "kind": "import-statement",
13405
13813
  "external": true
13406
13814
  },
13815
+ {
13816
+ "path": "@100mslive/react-icons",
13817
+ "kind": "import-statement",
13818
+ "external": true
13819
+ },
13407
13820
  {
13408
13821
  "path": "react",
13409
13822
  "kind": "import-statement",
13410
13823
  "external": true
13411
13824
  },
13825
+ {
13826
+ "path": "react-use",
13827
+ "kind": "import-statement",
13828
+ "external": true
13829
+ },
13412
13830
  {
13413
13831
  "path": "@100mslive/react-icons",
13414
13832
  "kind": "import-statement",
@@ -13431,57 +13849,66 @@
13431
13849
  "entryPoint": "src/Prebuilt/layouts/HLSView.jsx",
13432
13850
  "inputs": {
13433
13851
  "src/Prebuilt/layouts/HLSView.jsx": {
13434
- "bytesInOutput": 17353
13852
+ "bytesInOutput": 25088
13435
13853
  },
13436
13854
  "src/Prebuilt/components/HlsStatsOverlay.jsx": {
13437
13855
  "bytesInOutput": 3521
13438
13856
  },
13439
- "src/Prebuilt/components/HMSVideo/index.js": {
13440
- "bytesInOutput": 252
13857
+ "src/Prebuilt/components/HMSVideo/index.ts": {
13858
+ "bytesInOutput": 281
13441
13859
  },
13442
13860
  "src/Prebuilt/components/HMSVideo/Controls.jsx": {
13443
13861
  "bytesInOutput": 416
13444
13862
  },
13445
13863
  "src/Prebuilt/components/HMSVideo/HMSVideo.jsx": {
13446
- "bytesInOutput": 1171
13864
+ "bytesInOutput": 1464
13447
13865
  },
13448
- "src/Prebuilt/components/HMSVideo/PlayButton.jsx": {
13449
- "bytesInOutput": 534
13866
+ "src/Prebuilt/components/HMSVideo/PlayPauseButton.tsx": {
13867
+ "bytesInOutput": 851
13450
13868
  },
13451
- "src/Prebuilt/components/HMSVideo/VideoProgress.jsx": {
13452
- "bytesInOutput": 2539
13869
+ "src/Prebuilt/components/HMSVideo/PlayerContext.tsx": {
13870
+ "bytesInOutput": 244
13871
+ },
13872
+ "src/Prebuilt/components/HMSVideo/SeekControls.tsx": {
13873
+ "bytesInOutput": 329
13453
13874
  },
13454
- "src/Prebuilt/components/HMSVideo/HMSVIdeoUtils.js": {
13875
+ "src/Prebuilt/components/HMSVideo/VideoProgress.tsx": {
13876
+ "bytesInOutput": 3017
13877
+ },
13878
+ "src/Prebuilt/components/HMSVideo/utils.ts": {
13455
13879
  "bytesInOutput": 725
13456
13880
  },
13457
- "src/Prebuilt/components/HMSVideo/VideoTime.jsx": {
13458
- "bytesInOutput": 904
13881
+ "src/Prebuilt/components/HMSVideo/VideoTime.tsx": {
13882
+ "bytesInOutput": 1316
13459
13883
  },
13460
- "src/Prebuilt/components/HMSVideo/VolumeControl.jsx": {
13461
- "bytesInOutput": 2220
13884
+ "src/Prebuilt/components/HMSVideo/VolumeControl.tsx": {
13885
+ "bytesInOutput": 2284
13462
13886
  },
13463
- "src/Prebuilt/components/HMSVideo/FullscreenButton.jsx": {
13464
- "bytesInOutput": 527
13887
+ "src/Prebuilt/components/HMSVideo/FullscreenButton.tsx": {
13888
+ "bytesInOutput": 637
13465
13889
  },
13466
- "src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.jsx": {
13467
- "bytesInOutput": 902
13890
+ "src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.tsx": {
13891
+ "bytesInOutput": 1916
13468
13892
  },
13469
13893
  "src/Prebuilt/components/HMSVideo/HLSCaptionSelector.tsx": {
13470
- "bytesInOutput": 586
13894
+ "bytesInOutput": 688
13471
13895
  },
13472
- "src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx": {
13473
- "bytesInOutput": 3992
13896
+ "src/Prebuilt/components/HMSVideo/HLSQualitySelector.tsx": {
13897
+ "bytesInOutput": 7482
13898
+ },
13899
+ "src/Prebuilt/components/HMSVideo/MwebHLSViewTitle.tsx": {
13900
+ "bytesInOutput": 2067
13474
13901
  }
13475
13902
  },
13476
- "bytes": 36972
13903
+ "bytes": 54098
13477
13904
  },
13478
- "dist/chunk-ERIM35YN.js.map": {
13905
+ "dist/chunk-YFJQ4B6X.js.map": {
13479
13906
  "imports": [],
13480
13907
  "exports": [],
13481
13908
  "inputs": {},
13482
- "bytes": 3143729
13909
+ "bytes": 3167979
13483
13910
  },
13484
- "dist/chunk-ERIM35YN.js": {
13911
+ "dist/chunk-YFJQ4B6X.js": {
13485
13912
  "imports": [
13486
13913
  {
13487
13914
  "path": "react",
@@ -13853,6 +14280,11 @@
13853
14280
  "kind": "import-statement",
13854
14281
  "external": true
13855
14282
  },
14283
+ {
14284
+ "path": "ts-pattern",
14285
+ "kind": "import-statement",
14286
+ "external": true
14287
+ },
13856
14288
  {
13857
14289
  "path": "@100mslive/react-sdk",
13858
14290
  "kind": "import-statement",
@@ -14073,6 +14505,26 @@
14073
14505
  "kind": "import-statement",
14074
14506
  "external": true
14075
14507
  },
14508
+ {
14509
+ "path": "@100mslive/types-prebuilt/elements/join_form",
14510
+ "kind": "import-statement",
14511
+ "external": true
14512
+ },
14513
+ {
14514
+ "path": "@100mslive/react-sdk",
14515
+ "kind": "import-statement",
14516
+ "external": true
14517
+ },
14518
+ {
14519
+ "path": "react",
14520
+ "kind": "import-statement",
14521
+ "external": true
14522
+ },
14523
+ {
14524
+ "path": "react-use",
14525
+ "kind": "import-statement",
14526
+ "external": true
14527
+ },
14076
14528
  {
14077
14529
  "path": "@100mslive/react-sdk",
14078
14530
  "kind": "import-statement",
@@ -14153,6 +14605,11 @@
14153
14605
  "kind": "import-statement",
14154
14606
  "external": true
14155
14607
  },
14608
+ {
14609
+ "path": "ts-pattern",
14610
+ "kind": "import-statement",
14611
+ "external": true
14612
+ },
14156
14613
  {
14157
14614
  "path": "@100mslive/react-sdk",
14158
14615
  "kind": "import-statement",
@@ -14213,23 +14670,18 @@
14213
14670
  "kind": "import-statement",
14214
14671
  "external": true
14215
14672
  },
14216
- {
14217
- "path": "@100mslive/types-prebuilt/elements/join_form",
14218
- "kind": "import-statement",
14219
- "external": true
14220
- },
14221
14673
  {
14222
14674
  "path": "@100mslive/react-sdk",
14223
14675
  "kind": "import-statement",
14224
14676
  "external": true
14225
14677
  },
14226
14678
  {
14227
- "path": "react",
14679
+ "path": "@100mslive/react-icons",
14228
14680
  "kind": "import-statement",
14229
14681
  "external": true
14230
14682
  },
14231
14683
  {
14232
- "path": "@100mslive/react-sdk",
14684
+ "path": "react",
14233
14685
  "kind": "import-statement",
14234
14686
  "external": true
14235
14687
  },
@@ -14254,12 +14706,7 @@
14254
14706
  "external": true
14255
14707
  },
14256
14708
  {
14257
- "path": "@100mslive/react-icons",
14258
- "kind": "import-statement",
14259
- "external": true
14260
- },
14261
- {
14262
- "path": "react",
14709
+ "path": "ts-pattern",
14263
14710
  "kind": "import-statement",
14264
14711
  "external": true
14265
14712
  },
@@ -14348,6 +14795,11 @@
14348
14795
  "kind": "import-statement",
14349
14796
  "external": true
14350
14797
  },
14798
+ {
14799
+ "path": "ts-pattern",
14800
+ "kind": "import-statement",
14801
+ "external": true
14802
+ },
14351
14803
  {
14352
14804
  "path": "@100mslive/react-sdk",
14353
14805
  "kind": "import-statement",
@@ -14708,6 +15160,11 @@
14708
15160
  "kind": "import-statement",
14709
15161
  "external": true
14710
15162
  },
15163
+ {
15164
+ "path": "ts-pattern",
15165
+ "kind": "import-statement",
15166
+ "external": true
15167
+ },
14711
15168
  {
14712
15169
  "path": "@100mslive/react-sdk",
14713
15170
  "kind": "import-statement",
@@ -14793,6 +15250,11 @@
14793
15250
  "kind": "import-statement",
14794
15251
  "external": true
14795
15252
  },
15253
+ {
15254
+ "path": "ts-pattern",
15255
+ "kind": "import-statement",
15256
+ "external": true
15257
+ },
14796
15258
  {
14797
15259
  "path": "@100mslive/react-sdk",
14798
15260
  "kind": "import-statement",
@@ -15008,6 +15470,11 @@
15008
15470
  "kind": "import-statement",
15009
15471
  "external": true
15010
15472
  },
15473
+ {
15474
+ "path": "ts-pattern",
15475
+ "kind": "import-statement",
15476
+ "external": true
15477
+ },
15011
15478
  {
15012
15479
  "path": "@100mslive/react-sdk",
15013
15480
  "kind": "import-statement",
@@ -15043,6 +15510,21 @@
15043
15510
  "kind": "import-statement",
15044
15511
  "external": true
15045
15512
  },
15513
+ {
15514
+ "path": "@100mslive/react-sdk",
15515
+ "kind": "import-statement",
15516
+ "external": true
15517
+ },
15518
+ {
15519
+ "path": "@100mslive/react-icons",
15520
+ "kind": "import-statement",
15521
+ "external": true
15522
+ },
15523
+ {
15524
+ "path": "react",
15525
+ "kind": "import-statement",
15526
+ "external": true
15527
+ },
15046
15528
  {
15047
15529
  "path": "react",
15048
15530
  "kind": "import-statement",
@@ -15058,6 +15540,11 @@
15058
15540
  "kind": "import-statement",
15059
15541
  "external": true
15060
15542
  },
15543
+ {
15544
+ "path": "ts-pattern",
15545
+ "kind": "import-statement",
15546
+ "external": true
15547
+ },
15061
15548
  {
15062
15549
  "path": "@100mslive/react-sdk",
15063
15550
  "kind": "import-statement",
@@ -15078,6 +15565,11 @@
15078
15565
  "kind": "import-statement",
15079
15566
  "external": true
15080
15567
  },
15568
+ {
15569
+ "path": "ts-pattern",
15570
+ "kind": "import-statement",
15571
+ "external": true
15572
+ },
15081
15573
  {
15082
15574
  "path": "@100mslive/react-sdk",
15083
15575
  "kind": "import-statement",
@@ -15483,21 +15975,6 @@
15483
15975
  "kind": "import-statement",
15484
15976
  "external": true
15485
15977
  },
15486
- {
15487
- "path": "@100mslive/react-sdk",
15488
- "kind": "import-statement",
15489
- "external": true
15490
- },
15491
- {
15492
- "path": "@100mslive/react-icons",
15493
- "kind": "import-statement",
15494
- "external": true
15495
- },
15496
- {
15497
- "path": "react",
15498
- "kind": "import-statement",
15499
- "external": true
15500
- },
15501
15978
  {
15502
15979
  "path": "react-use",
15503
15980
  "kind": "import-statement",
@@ -15533,6 +16010,11 @@
15533
16010
  "kind": "import-statement",
15534
16011
  "external": true
15535
16012
  },
16013
+ {
16014
+ "path": "ts-pattern",
16015
+ "kind": "import-statement",
16016
+ "external": true
16017
+ },
15536
16018
  {
15537
16019
  "path": "@100mslive/react-sdk",
15538
16020
  "kind": "import-statement",
@@ -15794,7 +16276,7 @@
15794
16276
  "external": true
15795
16277
  },
15796
16278
  {
15797
- "path": "dist/HLSView-SJCF34GE.js",
16279
+ "path": "dist/HLSView-EDROW5VZ.js",
15798
16280
  "kind": "dynamic-import"
15799
16281
  },
15800
16282
  {
@@ -15927,6 +16409,11 @@
15927
16409
  "kind": "import-statement",
15928
16410
  "external": true
15929
16411
  },
16412
+ {
16413
+ "path": "ts-pattern",
16414
+ "kind": "import-statement",
16415
+ "external": true
16416
+ },
15930
16417
  {
15931
16418
  "path": "@100mslive/react-icons",
15932
16419
  "kind": "import-statement",
@@ -16180,6 +16667,7 @@
16180
16667
  "Avatar",
16181
16668
  "Box",
16182
16669
  "Button",
16670
+ "ChatToggle",
16183
16671
  "Checkbox",
16184
16672
  "Collapsible",
16185
16673
  "Dialog",
@@ -16199,15 +16687,22 @@
16199
16687
  "IconButton_default",
16200
16688
  "Input",
16201
16689
  "Label",
16690
+ "LeaveRoom",
16202
16691
  "Link",
16203
16692
  "Loading",
16693
+ "Logo",
16694
+ "POLL_STATE",
16695
+ "POLL_VIEWS",
16204
16696
  "PasswordInput",
16205
16697
  "Popover",
16206
16698
  "Progress",
16207
16699
  "QRCode",
16208
16700
  "RadioGroup",
16209
16701
  "ReactSelect_exports",
16702
+ "RoomDetailsRow",
16703
+ "SIDE_PANE_OPTIONS",
16210
16704
  "Select",
16705
+ "Sheet",
16211
16706
  "Slider",
16212
16707
  "StyledAvatar",
16213
16708
  "StyledMenuTile",
@@ -16246,18 +16741,22 @@
16246
16741
  "textEllipsis",
16247
16742
  "theme",
16248
16743
  "useBorderAudioLevel",
16249
- "usePollViewToggle",
16744
+ "useIsLandscape",
16745
+ "useIsSidepaneTypeOpen",
16746
+ "useRoomLayoutConferencingScreen",
16747
+ "useRoomLayoutHeader",
16748
+ "useSidepaneToggle",
16250
16749
  "useTheme"
16251
16750
  ],
16252
16751
  "inputs": {
16253
16752
  "<define:process.env>": {
16254
- "bytesInOutput": 18235
16753
+ "bytesInOutput": 18242
16255
16754
  },
16256
16755
  "../../node_modules/lodash/lodash.js": {
16257
- "bytesInOutput": 224269
16756
+ "bytesInOutput": 224291
16258
16757
  },
16259
16758
  "../../node_modules/ua-parser-js/src/ua-parser.js": {
16260
- "bytesInOutput": 42460
16759
+ "bytesInOutput": 42482
16261
16760
  },
16262
16761
  "../../node_modules/lodash.isequal/index.js": {
16263
16762
  "bytesInOutput": 26591
@@ -16269,7 +16768,7 @@
16269
16768
  "bytesInOutput": 16120
16270
16769
  },
16271
16770
  "../../node_modules/sdp-transform/lib/parser.js": {
16272
- "bytesInOutput": 3485
16771
+ "bytesInOutput": 3493
16273
16772
  },
16274
16773
  "../../node_modules/sdp-transform/lib/writer.js": {
16275
16774
  "bytesInOutput": 3068
@@ -16284,7 +16783,7 @@
16284
16783
  "bytesInOutput": 27
16285
16784
  },
16286
16785
  "src/Button/Button.tsx": {
16287
- "bytesInOutput": 4343
16786
+ "bytesInOutput": 4339
16288
16787
  },
16289
16788
  "src/Layout/index.tsx": {
16290
16789
  "bytesInOutput": 27
@@ -16473,7 +16972,7 @@
16473
16972
  "bytesInOutput": 2476
16474
16973
  },
16475
16974
  "src/Fieldset/Fieldset.tsx": {
16476
- "bytesInOutput": 234
16975
+ "bytesInOutput": 233
16477
16976
  },
16478
16977
  "src/Footer/index.tsx": {
16479
16978
  "bytesInOutput": 27
@@ -16539,10 +17038,10 @@
16539
17038
  "bytesInOutput": 3210
16540
17039
  },
16541
17040
  "src/Prebuilt/components/AppData/useSidepane.js": {
16542
- "bytesInOutput": 1934
17041
+ "bytesInOutput": 2499
16543
17042
  },
16544
17043
  "src/Prebuilt/components/AuthToken.jsx": {
16545
- "bytesInOutput": 3632
17044
+ "bytesInOutput": 3652
16546
17045
  },
16547
17046
  "src/Prebuilt/AppContext.tsx": {
16548
17047
  "bytesInOutput": 577
@@ -16551,7 +17050,7 @@
16551
17050
  "bytesInOutput": 4698
16552
17051
  },
16553
17052
  "src/Prebuilt/components/ConferenceScreen.tsx": {
16554
- "bytesInOutput": 6071
17053
+ "bytesInOutput": 7373
16555
17054
  },
16556
17055
  "src/Prebuilt/components/Footer/Footer.tsx": {
16557
17056
  "bytesInOutput": 3350
@@ -16560,10 +17059,10 @@
16560
17059
  "bytesInOutput": 10284
16561
17060
  },
16562
17061
  "src/Prebuilt/components/IconButtonWithOptions/IconButtonWithOptions.tsx": {
16563
- "bytesInOutput": 3065
17062
+ "bytesInOutput": 3064
16564
17063
  },
16565
17064
  "src/Prebuilt/IconButton.tsx": {
16566
- "bytesInOutput": 573
17065
+ "bytesInOutput": 572
16567
17066
  },
16568
17067
  "src/Prebuilt/components/Settings/SettingsModal.jsx": {
16569
17068
  "bytesInOutput": 8957
@@ -16572,7 +17071,7 @@
16572
17071
  "bytesInOutput": 27
16573
17072
  },
16574
17073
  "src/Sheet/Sheet.tsx": {
16575
- "bytesInOutput": 2768
17074
+ "bytesInOutput": 2859
16576
17075
  },
16577
17076
  "src/Prebuilt/components/Settings/DeviceSettings.jsx": {
16578
17077
  "bytesInOutput": 6568
@@ -16593,7 +17092,7 @@
16593
17092
  "bytesInOutput": 1028
16594
17093
  },
16595
17094
  "src/Prebuilt/components/EmojiReaction.jsx": {
16596
- "bytesInOutput": 2091
17095
+ "bytesInOutput": 2493
16597
17096
  },
16598
17097
  "src/Prebuilt/components/Footer/EmojiCard.jsx": {
16599
17098
  "bytesInOutput": 972
@@ -16601,11 +17100,14 @@
16601
17100
  "src/Prebuilt/components/hooks/useDropdownList.ts": {
16602
17101
  "bytesInOutput": 606
16603
17102
  },
17103
+ "src/Prebuilt/common/hooks.ts": {
17104
+ "bytesInOutput": 3290
17105
+ },
16604
17106
  "src/Prebuilt/components/Leave/LeaveRoom.tsx": {
16605
- "bytesInOutput": 2168
17107
+ "bytesInOutput": 2454
16606
17108
  },
16607
17109
  "src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx": {
16608
- "bytesInOutput": 5689
17110
+ "bytesInOutput": 5773
16609
17111
  },
16610
17112
  "src/Prebuilt/components/Leave/EndSessionContent.tsx": {
16611
17113
  "bytesInOutput": 1947
@@ -16620,19 +17122,19 @@
16620
17122
  "bytesInOutput": 1790
16621
17123
  },
16622
17124
  "src/Prebuilt/components/Leave/MwebLeaveRoom.tsx": {
16623
- "bytesInOutput": 4342
17125
+ "bytesInOutput": 4835
16624
17126
  },
16625
17127
  "src/Prebuilt/components/MoreSettings/MoreSettings.tsx": {
16626
- "bytesInOutput": 392
17128
+ "bytesInOutput": 472
16627
17129
  },
16628
17130
  "src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx": {
16629
- "bytesInOutput": 6559
17131
+ "bytesInOutput": 6880
16630
17132
  },
16631
17133
  "src/Prebuilt/components/PIP/index.jsx": {
16632
17134
  "bytesInOutput": 178
16633
17135
  },
16634
17136
  "src/Prebuilt/components/PIP/PIPComponent.jsx": {
16635
- "bytesInOutput": 2340
17137
+ "bytesInOutput": 2357
16636
17138
  },
16637
17139
  "src/Prebuilt/components/PIP/PIPManager.js": {
16638
17140
  "bytesInOutput": 9164
@@ -16646,9 +17148,6 @@
16646
17148
  "src/Prebuilt/components/RoleChangeModal.jsx": {
16647
17149
  "bytesInOutput": 6096
16648
17150
  },
16649
- "src/Prebuilt/common/hooks.ts": {
16650
- "bytesInOutput": 2697
16651
- },
16652
17151
  "src/Prebuilt/components/Settings/StartRecording.jsx": {
16653
17152
  "bytesInOutput": 4547
16654
17153
  },
@@ -16656,10 +17155,10 @@
16656
17155
  "bytesInOutput": 2940
16657
17156
  },
16658
17157
  "src/Prebuilt/primitives/DialogContent.jsx": {
16659
- "bytesInOutput": 7701
17158
+ "bytesInOutput": 7700
16660
17159
  },
16661
17160
  "src/Prebuilt/components/StatsForNerds.jsx": {
16662
- "bytesInOutput": 9587
17161
+ "bytesInOutput": 9844
16663
17162
  },
16664
17163
  "src/Prebuilt/components/MoreSettings/BulkRoleChangeModal.jsx": {
16665
17164
  "bytesInOutput": 5008
@@ -16683,13 +17182,13 @@
16683
17182
  "bytesInOutput": 1948
16684
17183
  },
16685
17184
  "src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx": {
16686
- "bytesInOutput": 10563
17185
+ "bytesInOutput": 11042
16687
17186
  },
16688
17187
  "src/Prebuilt/components/Header/StreamActions.tsx": {
16689
- "bytesInOutput": 10019
17188
+ "bytesInOutput": 10031
16690
17189
  },
16691
17190
  "../hms-video-store/dist/index.js": {
16692
- "bytesInOutput": 48495
17191
+ "bytesInOutput": 48565
16693
17192
  },
16694
17193
  "../../node_modules/reselect/es/index.js": {
16695
17194
  "bytesInOutput": 2539
@@ -16701,13 +17200,13 @@
16701
17200
  "bytesInOutput": 4335
16702
17201
  },
16703
17202
  "../../node_modules/webrtc-adapter/src/js/utils.js": {
16704
- "bytesInOutput": 6305
17203
+ "bytesInOutput": 6313
16705
17204
  },
16706
17205
  "../../node_modules/webrtc-adapter/src/js/chrome/chrome_shim.js": {
16707
17206
  "bytesInOutput": 22678
16708
17207
  },
16709
17208
  "../../node_modules/webrtc-adapter/src/js/chrome/getusermedia.js": {
16710
- "bytesInOutput": 6078
17209
+ "bytesInOutput": 6090
16711
17210
  },
16712
17211
  "../../node_modules/webrtc-adapter/src/js/chrome/getdisplaymedia.js": {
16713
17212
  "bytesInOutput": 1256
@@ -16725,7 +17224,7 @@
16725
17224
  "bytesInOutput": 11868
16726
17225
  },
16727
17226
  "../../node_modules/webrtc-adapter/src/js/common_shim.js": {
16728
- "bytesInOutput": 12446
17227
+ "bytesInOutput": 12460
16729
17228
  },
16730
17229
  "src/Prebuilt/components/Header/AdditionalRoomState.jsx": {
16731
17230
  "bytesInOutput": 6823
@@ -16751,14 +17250,14 @@
16751
17250
  "src/Prebuilt/components/hooks/useUnreadPollQuizPresent.tsx": {
16752
17251
  "bytesInOutput": 658
16753
17252
  },
16754
- "src/Prebuilt/components/RaiseHand.jsx": {
16755
- "bytesInOutput": 589
17253
+ "src/Prebuilt/components/RaiseHand.tsx": {
17254
+ "bytesInOutput": 796
16756
17255
  },
16757
17256
  "src/Prebuilt/components/ScreenShareToggle.jsx": {
16758
17257
  "bytesInOutput": 1619
16759
17258
  },
16760
17259
  "src/Prebuilt/components/pdfAnnotator/shareScreenOptions.jsx": {
16761
- "bytesInOutput": 7126
17260
+ "bytesInOutput": 7124
16762
17261
  },
16763
17262
  "src/Prebuilt/images/pdf-share.png": {
16764
17263
  "bytesInOutput": 25446
@@ -16779,7 +17278,7 @@
16779
17278
  "bytesInOutput": 1024
16780
17279
  },
16781
17280
  "src/Prebuilt/components/pdfAnnotator/uploadedFile.jsx": {
16782
- "bytesInOutput": 2098
17281
+ "bytesInOutput": 2097
16783
17282
  },
16784
17283
  "src/Prebuilt/components/pdfAnnotator/pdfInfo.jsx": {
16785
17284
  "bytesInOutput": 823
@@ -16806,7 +17305,7 @@
16806
17305
  "bytesInOutput": 4229
16807
17306
  },
16808
17307
  "src/Prebuilt/components/Footer/RoleOptions.tsx": {
16809
- "bytesInOutput": 7185
17308
+ "bytesInOutput": 7326
16810
17309
  },
16811
17310
  "src/Prebuilt/components/Footer/PollsToggle.tsx": {
16812
17311
  "bytesInOutput": 1073
@@ -16824,7 +17323,7 @@
16824
17323
  "bytesInOutput": 9637
16825
17324
  },
16826
17325
  "src/Prebuilt/layouts/SidePane.tsx": {
16827
- "bytesInOutput": 4719
17326
+ "bytesInOutput": 6115
16828
17327
  },
16829
17328
  "src/Prebuilt/components/Polls/Polls.tsx": {
16830
17329
  "bytesInOutput": 735
@@ -16854,7 +17353,7 @@
16854
17353
  "bytesInOutput": 3664
16855
17354
  },
16856
17355
  "src/Prebuilt/components/Polls/common/OptionInputWithDelete.tsx": {
16857
- "bytesInOutput": 889
17356
+ "bytesInOutput": 888
16858
17357
  },
16859
17358
  "src/Prebuilt/components/Polls/common/VoteCount.tsx": {
16860
17359
  "bytesInOutput": 361
@@ -16875,7 +17374,7 @@
16875
17374
  "bytesInOutput": 2078
16876
17375
  },
16877
17376
  "src/Prebuilt/components/Polls/common/utils.ts": {
16878
- "bytesInOutput": 628
17377
+ "bytesInOutput": 629
16879
17378
  },
16880
17379
  "src/Prebuilt/components/Polls/Voting/PeerParticipationSummary.tsx": {
16881
17380
  "bytesInOutput": 2309
@@ -16887,19 +17386,22 @@
16887
17386
  "bytesInOutput": 1874
16888
17387
  },
16889
17388
  "src/Prebuilt/components/Polls/Voting/Voting.tsx": {
16890
- "bytesInOutput": 3324
17389
+ "bytesInOutput": 3356
16891
17390
  },
16892
17391
  "src/Prebuilt/components/Polls/Voting/StandardVoting.tsx": {
16893
17392
  "bytesInOutput": 1221
16894
17393
  },
16895
17394
  "src/Prebuilt/components/Polls/Voting/QuestionCard.jsx": {
16896
- "bytesInOutput": 7210
17395
+ "bytesInOutput": 7649
16897
17396
  },
16898
17397
  "src/Prebuilt/components/Polls/Voting/TimedVoting.tsx": {
16899
17398
  "bytesInOutput": 1727
16900
17399
  },
16901
17400
  "src/Prebuilt/components/RoomDetails/RoomDetailsPane.tsx": {
16902
- "bytesInOutput": 1193
17401
+ "bytesInOutput": 1835
17402
+ },
17403
+ "src/Prebuilt/components/Header/HeaderComponents.jsx": {
17404
+ "bytesInOutput": 1626
16903
17405
  },
16904
17406
  "src/Prebuilt/components/RoomDetails/RoomDetailsRow.tsx": {
16905
17407
  "bytesInOutput": 664
@@ -16908,13 +17410,13 @@
16908
17410
  "bytesInOutput": 720
16909
17411
  },
16910
17412
  "src/Prebuilt/components/SidePaneTabs.tsx": {
16911
- "bytesInOutput": 7277
17413
+ "bytesInOutput": 7554
16912
17414
  },
16913
17415
  "src/Prebuilt/components/Chat/Chat.tsx": {
16914
- "bytesInOutput": 3466
17416
+ "bytesInOutput": 4425
16915
17417
  },
16916
17418
  "src/Prebuilt/components/Chat/ChatBody.tsx": {
16917
- "bytesInOutput": 14398
17419
+ "bytesInOutput": 14396
16918
17420
  },
16919
17421
  "src/Prebuilt/components/Chat/ChatActions.tsx": {
16920
17422
  "bytesInOutput": 9785
@@ -16935,10 +17437,10 @@
16935
17437
  "bytesInOutput": 2261
16936
17438
  },
16937
17439
  "src/Prebuilt/components/hooks/usePinnedBy.tsx": {
16938
- "bytesInOutput": 704
17440
+ "bytesInOutput": 710
16939
17441
  },
16940
17442
  "src/Prebuilt/components/Chat/ChatFooter.tsx": {
16941
- "bytesInOutput": 8852
17443
+ "bytesInOutput": 9793
16942
17444
  },
16943
17445
  "src/Prebuilt/components/Chat/ChatSelectorContainer.tsx": {
16944
17446
  "bytesInOutput": 5318
@@ -16980,7 +17482,7 @@
16980
17482
  "bytesInOutput": 4507
16981
17483
  },
16982
17484
  "src/Prebuilt/components/TileMenu/TileMenuContent.tsx": {
16983
- "bytesInOutput": 11411
17485
+ "bytesInOutput": 11441
16984
17486
  },
16985
17487
  "src/Prebuilt/components/TileMenu/utils.ts": {
16986
17488
  "bytesInOutput": 160
@@ -17009,9 +17511,6 @@
17009
17511
  "src/Prebuilt/components/FullPageProgress.jsx": {
17010
17512
  "bytesInOutput": 574
17011
17513
  },
17012
- "src/Prebuilt/components/Header/HeaderComponents.jsx": {
17013
- "bytesInOutput": 1626
17014
- },
17015
17514
  "src/Prebuilt/components/Preview/PreviewForm.tsx": {
17016
17515
  "bytesInOutput": 2721
17017
17516
  },
@@ -17019,7 +17518,7 @@
17019
17518
  "bytesInOutput": 2163
17020
17519
  },
17021
17520
  "src/Prebuilt/layouts/VideoStreamingSection.tsx": {
17022
- "bytesInOutput": 3228
17521
+ "bytesInOutput": 3983
17023
17522
  },
17024
17523
  "src/Prebuilt/components/VideoLayouts/GridLayout.tsx": {
17025
17524
  "bytesInOutput": 3871
@@ -17121,13 +17620,13 @@
17121
17620
  "bytesInOutput": 491
17122
17621
  },
17123
17622
  "src/Prebuilt/components/MwebLandscapePrompt.tsx": {
17124
- "bytesInOutput": 2516
17623
+ "bytesInOutput": 2922
17125
17624
  },
17126
17625
  "src/Prebuilt/components/Notifications/index.tsx": {
17127
17626
  "bytesInOutput": 27
17128
17627
  },
17129
17628
  "src/Prebuilt/components/Notifications/Notifications.tsx": {
17130
- "bytesInOutput": 7965
17629
+ "bytesInOutput": 7971
17131
17630
  },
17132
17631
  "src/Prebuilt/components/Notifications/AutoplayBlockedModal.tsx": {
17133
17632
  "bytesInOutput": 1053
@@ -17136,19 +17635,19 @@
17136
17635
  "bytesInOutput": 1350
17137
17636
  },
17138
17637
  "src/Prebuilt/components/Notifications/HandRaisedNotifications.tsx": {
17139
- "bytesInOutput": 1413
17638
+ "bytesInOutput": 1746
17140
17639
  },
17141
17640
  "src/Prebuilt/components/Toast/ToastBatcher.js": {
17142
- "bytesInOutput": 1768
17641
+ "bytesInOutput": 1983
17143
17642
  },
17144
17643
  "src/Prebuilt/components/Toast/ToastConfig.jsx": {
17145
- "bytesInOutput": 6495
17644
+ "bytesInOutput": 7228
17146
17645
  },
17147
17646
  "src/Prebuilt/components/Notifications/InitErrorModal.tsx": {
17148
17647
  "bytesInOutput": 1596
17149
17648
  },
17150
17649
  "src/Prebuilt/components/Notifications/PeerNotifications.tsx": {
17151
- "bytesInOutput": 1593
17650
+ "bytesInOutput": 1627
17152
17651
  },
17153
17652
  "src/Prebuilt/components/Notifications/PermissionErrorModal.tsx": {
17154
17653
  "bytesInOutput": 4534
@@ -17205,7 +17704,7 @@
17205
17704
  "bytesInOutput": 651
17206
17705
  }
17207
17706
  },
17208
- "bytes": 1285152
17707
+ "bytes": 1298020
17209
17708
  }
17210
17709
  }
17211
17710
  }