@100mslive/roomkit-react 0.2.8-alpha.1 → 0.2.8-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/HLSView-FBEGJ3L7.js +1396 -0
- package/dist/HLSView-FBEGJ3L7.js.map +7 -0
- package/dist/Prebuilt/common/hooks.d.ts +3 -0
- package/dist/Prebuilt/components/Chat/MwebChatOption.d.ts +1 -1
- package/dist/Prebuilt/components/HMSVideo/FullscreenButton.d.ts +5 -0
- package/dist/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.d.ts +5 -0
- package/dist/Prebuilt/components/HMSVideo/HLSCaptionSelector.d.ts +1 -2
- package/dist/Prebuilt/components/HMSVideo/HLSQualitySelector.d.ts +13 -0
- package/dist/Prebuilt/components/HMSVideo/MwebHLSViewTitle.d.ts +2 -0
- package/dist/Prebuilt/components/HMSVideo/PlayButton.d.ts +6 -0
- package/dist/Prebuilt/components/HMSVideo/PlayPauseButton.d.ts +6 -0
- package/dist/Prebuilt/components/HMSVideo/PlayerContext.d.ts +8 -0
- package/dist/Prebuilt/components/HMSVideo/SeekControls.d.ts +7 -0
- package/dist/Prebuilt/components/HMSVideo/VideoProgress.d.ts +5 -0
- package/dist/Prebuilt/components/HMSVideo/VideoTime.d.ts +2 -0
- package/dist/Prebuilt/components/HMSVideo/VolumeControl.d.ts +2 -0
- package/dist/Prebuilt/components/HMSVideo/index.d.ts +26 -0
- package/dist/Prebuilt/components/HMSVideo/utils.d.ts +8 -0
- package/dist/Prebuilt/components/Leave/DesktopLeaveRoom.d.ts +2 -1
- package/dist/Prebuilt/components/Leave/LeaveRoom.d.ts +2 -1
- package/dist/Prebuilt/components/Leave/MwebLeaveRoom.d.ts +2 -3
- package/dist/Prebuilt/components/MwebLandscapePrompt.d.ts +1 -1
- package/dist/Prebuilt/components/RaiseHand.d.ts +5 -0
- package/dist/Prebuilt/components/SidePaneTabs.d.ts +1 -1
- package/dist/Sheet/Sheet.d.ts +1 -0
- package/dist/{chunk-ERIM35YN.js → chunk-R2JJJQR3.js} +1539 -1173
- package/dist/chunk-R2JJJQR3.js.map +7 -0
- package/dist/index.cjs.js +2709 -1898
- package/dist/index.cjs.js.map +4 -4
- package/dist/index.js +1 -1
- package/dist/meta.cjs.json +777 -290
- package/dist/meta.esbuild.json +796 -298
- package/package.json +7 -6
- package/src/Button/Button.tsx +4 -4
- package/src/Fieldset/Fieldset.tsx +1 -1
- package/src/Input/PasswordInput.stories.tsx +1 -1
- package/src/Pagination/StyledPagination.stories.tsx +2 -2
- package/src/Prebuilt/IconButton.tsx +1 -1
- package/src/Prebuilt/common/hooks.ts +21 -0
- package/src/Prebuilt/components/AppData/useSidepane.js +34 -7
- package/src/Prebuilt/components/AuthToken.jsx +1 -1
- package/src/Prebuilt/components/Chat/Chat.tsx +41 -1
- package/src/Prebuilt/components/Chat/ChatFooter.tsx +33 -13
- package/src/Prebuilt/components/Chat/MwebChatOption.tsx +1 -1
- package/src/Prebuilt/components/ConferenceScreen.tsx +48 -7
- package/src/Prebuilt/components/EmojiReaction.jsx +33 -23
- package/src/Prebuilt/components/Footer/Footer.tsx +0 -1
- package/src/Prebuilt/components/Footer/RoleOptions.tsx +138 -125
- package/src/Prebuilt/components/HMSVideo/Controls.jsx +1 -1
- package/src/Prebuilt/components/HMSVideo/FullscreenButton.tsx +13 -0
- package/src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.tsx +72 -0
- package/src/Prebuilt/components/HMSVideo/HLSCaptionSelector.tsx +4 -2
- package/src/Prebuilt/components/HMSVideo/HLSQualitySelector.tsx +248 -0
- package/src/Prebuilt/components/HMSVideo/HMSVideo.jsx +17 -7
- package/src/Prebuilt/components/HMSVideo/MwebHLSViewTitle.tsx +84 -0
- package/src/Prebuilt/components/HMSVideo/PlayButton.tsx +27 -0
- package/src/Prebuilt/components/HMSVideo/PlayPauseButton.tsx +27 -0
- package/src/Prebuilt/components/HMSVideo/PlayerContext.tsx +15 -0
- package/src/Prebuilt/components/HMSVideo/SeekControls.tsx +22 -0
- package/src/Prebuilt/components/HMSVideo/VideoProgress.tsx +95 -0
- package/src/Prebuilt/components/HMSVideo/VideoTime.tsx +43 -0
- package/src/Prebuilt/components/HMSVideo/{VolumeControl.jsx → VolumeControl.tsx} +6 -4
- package/src/Prebuilt/components/HMSVideo/{index.js → index.ts} +6 -2
- package/src/Prebuilt/components/HMSVideo/{HMSVIdeoUtils.js → utils.ts} +5 -5
- package/src/Prebuilt/components/Header/StreamActions.tsx +1 -1
- package/src/Prebuilt/components/IconButtonWithOptions/IconButtonWithOptions.tsx +1 -1
- package/src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx +50 -46
- package/src/Prebuilt/components/Leave/LeaveRoom.tsx +15 -4
- package/src/Prebuilt/components/Leave/MwebLeaveRoom.tsx +46 -27
- package/src/Prebuilt/components/MoreSettings/MoreSettings.tsx +3 -1
- package/src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx +37 -31
- package/src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx +12 -8
- package/src/Prebuilt/components/MwebLandscapePrompt.tsx +14 -3
- package/src/Prebuilt/components/Notifications/HandRaisedNotifications.tsx +5 -2
- package/src/Prebuilt/components/Notifications/PeerNotifications.tsx +1 -1
- package/src/Prebuilt/components/Polls/Voting/QuestionCard.jsx +19 -8
- package/src/Prebuilt/components/Polls/Voting/Voting.tsx +3 -2
- package/src/Prebuilt/components/Polls/common/OptionInputWithDelete.tsx +1 -1
- package/src/Prebuilt/components/Polls/common/utils.ts +2 -2
- package/src/Prebuilt/components/RaiseHand.tsx +24 -0
- package/src/Prebuilt/components/RoomDetails/RoomDetailsPane.tsx +41 -14
- package/src/Prebuilt/components/SidePaneTabs.tsx +56 -48
- package/src/Prebuilt/components/StatsForNerds.jsx +14 -6
- package/src/Prebuilt/components/Streaming/Common.jsx +1 -1
- package/src/Prebuilt/components/TileMenu/TileMenuContent.tsx +2 -2
- package/src/Prebuilt/components/Toast/ToastBatcher.js +8 -1
- package/src/Prebuilt/components/Toast/ToastConfig.jsx +17 -0
- package/src/Prebuilt/components/pdfAnnotator/shareScreenOptions.jsx +2 -2
- package/src/Prebuilt/components/pdfAnnotator/uploadedFile.jsx +1 -1
- package/src/Prebuilt/layouts/HLSView.jsx +359 -178
- package/src/Prebuilt/layouts/SidePane.tsx +145 -59
- package/src/Prebuilt/layouts/VideoStreamingSection.tsx +22 -2
- package/src/Prebuilt/primitives/DialogContent.jsx +1 -1
- package/src/Prebuilt/provider/roomLayoutProvider/index.tsx +1 -1
- package/src/Sheet/Sheet.tsx +7 -3
- package/dist/HLSView-SJCF34GE.js +0 -987
- package/dist/HLSView-SJCF34GE.js.map +0 -7
- package/dist/chunk-ERIM35YN.js.map +0 -7
- package/src/Prebuilt/components/HMSVideo/FullscreenButton.jsx +0 -18
- package/src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.jsx +0 -35
- package/src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx +0 -127
- package/src/Prebuilt/components/HMSVideo/PlayButton.jsx +0 -13
- package/src/Prebuilt/components/HMSVideo/VideoProgress.jsx +0 -76
- package/src/Prebuilt/components/HMSVideo/VideoTime.jsx +0 -33
- package/src/Prebuilt/components/RaiseHand.jsx +0 -17
package/dist/meta.esbuild.json
CHANGED
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
"format": "esm"
|
|
243
243
|
},
|
|
244
244
|
"src/Button/Button.tsx": {
|
|
245
|
-
"bytes":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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/
|
|
3340
|
+
"path": "@100mslive/react-sdk",
|
|
3280
3341
|
"kind": "import-statement",
|
|
3281
3342
|
"external": true
|
|
3282
3343
|
},
|
|
3283
3344
|
{
|
|
3284
|
-
"path": "@100mslive/react-
|
|
3345
|
+
"path": "@100mslive/react-icons",
|
|
3285
3346
|
"kind": "import-statement",
|
|
3286
3347
|
"external": true
|
|
3287
3348
|
},
|
|
3288
3349
|
{
|
|
3289
|
-
"path": "
|
|
3350
|
+
"path": "src/IconButton/index.tsx",
|
|
3290
3351
|
"kind": "import-statement",
|
|
3291
|
-
"
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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.
|
|
5326
|
-
"bytes":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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.
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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.
|
|
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/
|
|
10750
|
-
"bytes":
|
|
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/
|
|
10776
|
-
"bytes":
|
|
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.
|
|
10787
|
-
"bytes":
|
|
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/
|
|
10982
|
+
"path": "src/Prebuilt/components/HMSVideo/utils.ts",
|
|
10801
10983
|
"kind": "import-statement",
|
|
10802
|
-
"original": "./
|
|
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.
|
|
10813
|
-
"bytes":
|
|
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.
|
|
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/
|
|
11013
|
+
"path": "src/Prebuilt/components/HMSVideo/PlayerContext.tsx",
|
|
10832
11014
|
"kind": "import-statement",
|
|
10833
|
-
"original": "./
|
|
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.
|
|
10844
|
-
"bytes":
|
|
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.
|
|
10870
|
-
"bytes":
|
|
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/
|
|
11075
|
+
"path": "src/Prebuilt/components/HMSVideo/PlayPauseButton.tsx",
|
|
10884
11076
|
"kind": "import-statement",
|
|
10885
|
-
"original": "./
|
|
11077
|
+
"original": "./PlayPauseButton"
|
|
10886
11078
|
},
|
|
10887
11079
|
{
|
|
10888
|
-
"path": "src/Prebuilt/components/HMSVideo/
|
|
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.
|
|
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.
|
|
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.
|
|
10911
|
-
"bytes":
|
|
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.
|
|
10932
|
-
"bytes":
|
|
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":
|
|
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.
|
|
10984
|
-
"bytes":
|
|
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":
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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-
|
|
13610
|
+
"path": "dist/chunk-R2JJJQR3.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-
|
|
13683
|
+
"dist/HLSView-FBEGJ3L7.js.map": {
|
|
13306
13684
|
"imports": [],
|
|
13307
13685
|
"exports": [],
|
|
13308
13686
|
"inputs": {},
|
|
13309
|
-
"bytes":
|
|
13687
|
+
"bytes": 87085
|
|
13310
13688
|
},
|
|
13311
|
-
"dist/HLSView-
|
|
13689
|
+
"dist/HLSView-FBEGJ3L7.js": {
|
|
13312
13690
|
"imports": [
|
|
13313
13691
|
{
|
|
13314
|
-
"path": "dist/chunk-
|
|
13692
|
+
"path": "dist/chunk-R2JJJQR3.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":
|
|
13852
|
+
"bytesInOutput": 24391
|
|
13435
13853
|
},
|
|
13436
13854
|
"src/Prebuilt/components/HlsStatsOverlay.jsx": {
|
|
13437
13855
|
"bytesInOutput": 3521
|
|
13438
13856
|
},
|
|
13439
|
-
"src/Prebuilt/components/HMSVideo/index.
|
|
13440
|
-
"bytesInOutput":
|
|
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":
|
|
13864
|
+
"bytesInOutput": 1425
|
|
13447
13865
|
},
|
|
13448
|
-
"src/Prebuilt/components/HMSVideo/
|
|
13449
|
-
"bytesInOutput":
|
|
13866
|
+
"src/Prebuilt/components/HMSVideo/PlayPauseButton.tsx": {
|
|
13867
|
+
"bytesInOutput": 851
|
|
13450
13868
|
},
|
|
13451
|
-
"src/Prebuilt/components/HMSVideo/
|
|
13452
|
-
"bytesInOutput":
|
|
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/
|
|
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.
|
|
13458
|
-
"bytesInOutput":
|
|
13881
|
+
"src/Prebuilt/components/HMSVideo/VideoTime.tsx": {
|
|
13882
|
+
"bytesInOutput": 1316
|
|
13459
13883
|
},
|
|
13460
|
-
"src/Prebuilt/components/HMSVideo/VolumeControl.
|
|
13461
|
-
"bytesInOutput":
|
|
13884
|
+
"src/Prebuilt/components/HMSVideo/VolumeControl.tsx": {
|
|
13885
|
+
"bytesInOutput": 2284
|
|
13462
13886
|
},
|
|
13463
|
-
"src/Prebuilt/components/HMSVideo/FullscreenButton.
|
|
13464
|
-
"bytesInOutput":
|
|
13887
|
+
"src/Prebuilt/components/HMSVideo/FullscreenButton.tsx": {
|
|
13888
|
+
"bytesInOutput": 637
|
|
13465
13889
|
},
|
|
13466
|
-
"src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.
|
|
13467
|
-
"bytesInOutput":
|
|
13890
|
+
"src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.tsx": {
|
|
13891
|
+
"bytesInOutput": 1916
|
|
13468
13892
|
},
|
|
13469
13893
|
"src/Prebuilt/components/HMSVideo/HLSCaptionSelector.tsx": {
|
|
13470
|
-
"bytesInOutput":
|
|
13894
|
+
"bytesInOutput": 688
|
|
13471
13895
|
},
|
|
13472
|
-
"src/Prebuilt/components/HMSVideo/HLSQualitySelector.
|
|
13473
|
-
"bytesInOutput":
|
|
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":
|
|
13903
|
+
"bytes": 53355
|
|
13477
13904
|
},
|
|
13478
|
-
"dist/chunk-
|
|
13905
|
+
"dist/chunk-R2JJJQR3.js.map": {
|
|
13479
13906
|
"imports": [],
|
|
13480
13907
|
"exports": [],
|
|
13481
13908
|
"inputs": {},
|
|
13482
|
-
"bytes":
|
|
13909
|
+
"bytes": 3167900
|
|
13483
13910
|
},
|
|
13484
|
-
"dist/chunk-
|
|
13911
|
+
"dist/chunk-R2JJJQR3.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": "
|
|
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": "
|
|
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-
|
|
16279
|
+
"path": "dist/HLSView-FBEGJ3L7.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,20 @@
|
|
|
16199
16687
|
"IconButton_default",
|
|
16200
16688
|
"Input",
|
|
16201
16689
|
"Label",
|
|
16690
|
+
"LeaveRoom",
|
|
16202
16691
|
"Link",
|
|
16203
16692
|
"Loading",
|
|
16693
|
+
"Logo",
|
|
16204
16694
|
"PasswordInput",
|
|
16205
16695
|
"Popover",
|
|
16206
16696
|
"Progress",
|
|
16207
16697
|
"QRCode",
|
|
16208
16698
|
"RadioGroup",
|
|
16209
16699
|
"ReactSelect_exports",
|
|
16700
|
+
"RoomDetailsRow",
|
|
16701
|
+
"SIDE_PANE_OPTIONS",
|
|
16210
16702
|
"Select",
|
|
16703
|
+
"Sheet",
|
|
16211
16704
|
"Slider",
|
|
16212
16705
|
"StyledAvatar",
|
|
16213
16706
|
"StyledMenuTile",
|
|
@@ -16246,18 +16739,23 @@
|
|
|
16246
16739
|
"textEllipsis",
|
|
16247
16740
|
"theme",
|
|
16248
16741
|
"useBorderAudioLevel",
|
|
16742
|
+
"useIsLandscape",
|
|
16743
|
+
"useIsSidepaneTypeOpen",
|
|
16249
16744
|
"usePollViewToggle",
|
|
16745
|
+
"useRoomLayoutConferencingScreen",
|
|
16746
|
+
"useRoomLayoutHeader",
|
|
16747
|
+
"useSidepaneToggle",
|
|
16250
16748
|
"useTheme"
|
|
16251
16749
|
],
|
|
16252
16750
|
"inputs": {
|
|
16253
16751
|
"<define:process.env>": {
|
|
16254
|
-
"bytesInOutput":
|
|
16752
|
+
"bytesInOutput": 18240
|
|
16255
16753
|
},
|
|
16256
16754
|
"../../node_modules/lodash/lodash.js": {
|
|
16257
|
-
"bytesInOutput":
|
|
16755
|
+
"bytesInOutput": 224291
|
|
16258
16756
|
},
|
|
16259
16757
|
"../../node_modules/ua-parser-js/src/ua-parser.js": {
|
|
16260
|
-
"bytesInOutput":
|
|
16758
|
+
"bytesInOutput": 42482
|
|
16261
16759
|
},
|
|
16262
16760
|
"../../node_modules/lodash.isequal/index.js": {
|
|
16263
16761
|
"bytesInOutput": 26591
|
|
@@ -16269,7 +16767,7 @@
|
|
|
16269
16767
|
"bytesInOutput": 16120
|
|
16270
16768
|
},
|
|
16271
16769
|
"../../node_modules/sdp-transform/lib/parser.js": {
|
|
16272
|
-
"bytesInOutput":
|
|
16770
|
+
"bytesInOutput": 3493
|
|
16273
16771
|
},
|
|
16274
16772
|
"../../node_modules/sdp-transform/lib/writer.js": {
|
|
16275
16773
|
"bytesInOutput": 3068
|
|
@@ -16284,7 +16782,7 @@
|
|
|
16284
16782
|
"bytesInOutput": 27
|
|
16285
16783
|
},
|
|
16286
16784
|
"src/Button/Button.tsx": {
|
|
16287
|
-
"bytesInOutput":
|
|
16785
|
+
"bytesInOutput": 4339
|
|
16288
16786
|
},
|
|
16289
16787
|
"src/Layout/index.tsx": {
|
|
16290
16788
|
"bytesInOutput": 27
|
|
@@ -16473,7 +16971,7 @@
|
|
|
16473
16971
|
"bytesInOutput": 2476
|
|
16474
16972
|
},
|
|
16475
16973
|
"src/Fieldset/Fieldset.tsx": {
|
|
16476
|
-
"bytesInOutput":
|
|
16974
|
+
"bytesInOutput": 233
|
|
16477
16975
|
},
|
|
16478
16976
|
"src/Footer/index.tsx": {
|
|
16479
16977
|
"bytesInOutput": 27
|
|
@@ -16539,10 +17037,10 @@
|
|
|
16539
17037
|
"bytesInOutput": 3210
|
|
16540
17038
|
},
|
|
16541
17039
|
"src/Prebuilt/components/AppData/useSidepane.js": {
|
|
16542
|
-
"bytesInOutput":
|
|
17040
|
+
"bytesInOutput": 2499
|
|
16543
17041
|
},
|
|
16544
17042
|
"src/Prebuilt/components/AuthToken.jsx": {
|
|
16545
|
-
"bytesInOutput":
|
|
17043
|
+
"bytesInOutput": 3652
|
|
16546
17044
|
},
|
|
16547
17045
|
"src/Prebuilt/AppContext.tsx": {
|
|
16548
17046
|
"bytesInOutput": 577
|
|
@@ -16551,7 +17049,7 @@
|
|
|
16551
17049
|
"bytesInOutput": 4698
|
|
16552
17050
|
},
|
|
16553
17051
|
"src/Prebuilt/components/ConferenceScreen.tsx": {
|
|
16554
|
-
"bytesInOutput":
|
|
17052
|
+
"bytesInOutput": 7373
|
|
16555
17053
|
},
|
|
16556
17054
|
"src/Prebuilt/components/Footer/Footer.tsx": {
|
|
16557
17055
|
"bytesInOutput": 3350
|
|
@@ -16560,10 +17058,10 @@
|
|
|
16560
17058
|
"bytesInOutput": 10284
|
|
16561
17059
|
},
|
|
16562
17060
|
"src/Prebuilt/components/IconButtonWithOptions/IconButtonWithOptions.tsx": {
|
|
16563
|
-
"bytesInOutput":
|
|
17061
|
+
"bytesInOutput": 3064
|
|
16564
17062
|
},
|
|
16565
17063
|
"src/Prebuilt/IconButton.tsx": {
|
|
16566
|
-
"bytesInOutput":
|
|
17064
|
+
"bytesInOutput": 572
|
|
16567
17065
|
},
|
|
16568
17066
|
"src/Prebuilt/components/Settings/SettingsModal.jsx": {
|
|
16569
17067
|
"bytesInOutput": 8957
|
|
@@ -16572,7 +17070,7 @@
|
|
|
16572
17070
|
"bytesInOutput": 27
|
|
16573
17071
|
},
|
|
16574
17072
|
"src/Sheet/Sheet.tsx": {
|
|
16575
|
-
"bytesInOutput":
|
|
17073
|
+
"bytesInOutput": 2859
|
|
16576
17074
|
},
|
|
16577
17075
|
"src/Prebuilt/components/Settings/DeviceSettings.jsx": {
|
|
16578
17076
|
"bytesInOutput": 6568
|
|
@@ -16593,7 +17091,7 @@
|
|
|
16593
17091
|
"bytesInOutput": 1028
|
|
16594
17092
|
},
|
|
16595
17093
|
"src/Prebuilt/components/EmojiReaction.jsx": {
|
|
16596
|
-
"bytesInOutput":
|
|
17094
|
+
"bytesInOutput": 2493
|
|
16597
17095
|
},
|
|
16598
17096
|
"src/Prebuilt/components/Footer/EmojiCard.jsx": {
|
|
16599
17097
|
"bytesInOutput": 972
|
|
@@ -16601,11 +17099,14 @@
|
|
|
16601
17099
|
"src/Prebuilt/components/hooks/useDropdownList.ts": {
|
|
16602
17100
|
"bytesInOutput": 606
|
|
16603
17101
|
},
|
|
17102
|
+
"src/Prebuilt/common/hooks.ts": {
|
|
17103
|
+
"bytesInOutput": 3290
|
|
17104
|
+
},
|
|
16604
17105
|
"src/Prebuilt/components/Leave/LeaveRoom.tsx": {
|
|
16605
|
-
"bytesInOutput":
|
|
17106
|
+
"bytesInOutput": 2454
|
|
16606
17107
|
},
|
|
16607
17108
|
"src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx": {
|
|
16608
|
-
"bytesInOutput":
|
|
17109
|
+
"bytesInOutput": 5773
|
|
16609
17110
|
},
|
|
16610
17111
|
"src/Prebuilt/components/Leave/EndSessionContent.tsx": {
|
|
16611
17112
|
"bytesInOutput": 1947
|
|
@@ -16620,19 +17121,19 @@
|
|
|
16620
17121
|
"bytesInOutput": 1790
|
|
16621
17122
|
},
|
|
16622
17123
|
"src/Prebuilt/components/Leave/MwebLeaveRoom.tsx": {
|
|
16623
|
-
"bytesInOutput":
|
|
17124
|
+
"bytesInOutput": 4835
|
|
16624
17125
|
},
|
|
16625
17126
|
"src/Prebuilt/components/MoreSettings/MoreSettings.tsx": {
|
|
16626
|
-
"bytesInOutput":
|
|
17127
|
+
"bytesInOutput": 472
|
|
16627
17128
|
},
|
|
16628
17129
|
"src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx": {
|
|
16629
|
-
"bytesInOutput":
|
|
17130
|
+
"bytesInOutput": 6880
|
|
16630
17131
|
},
|
|
16631
17132
|
"src/Prebuilt/components/PIP/index.jsx": {
|
|
16632
17133
|
"bytesInOutput": 178
|
|
16633
17134
|
},
|
|
16634
17135
|
"src/Prebuilt/components/PIP/PIPComponent.jsx": {
|
|
16635
|
-
"bytesInOutput":
|
|
17136
|
+
"bytesInOutput": 2357
|
|
16636
17137
|
},
|
|
16637
17138
|
"src/Prebuilt/components/PIP/PIPManager.js": {
|
|
16638
17139
|
"bytesInOutput": 9164
|
|
@@ -16646,9 +17147,6 @@
|
|
|
16646
17147
|
"src/Prebuilt/components/RoleChangeModal.jsx": {
|
|
16647
17148
|
"bytesInOutput": 6096
|
|
16648
17149
|
},
|
|
16649
|
-
"src/Prebuilt/common/hooks.ts": {
|
|
16650
|
-
"bytesInOutput": 2697
|
|
16651
|
-
},
|
|
16652
17150
|
"src/Prebuilt/components/Settings/StartRecording.jsx": {
|
|
16653
17151
|
"bytesInOutput": 4547
|
|
16654
17152
|
},
|
|
@@ -16656,10 +17154,10 @@
|
|
|
16656
17154
|
"bytesInOutput": 2940
|
|
16657
17155
|
},
|
|
16658
17156
|
"src/Prebuilt/primitives/DialogContent.jsx": {
|
|
16659
|
-
"bytesInOutput":
|
|
17157
|
+
"bytesInOutput": 7700
|
|
16660
17158
|
},
|
|
16661
17159
|
"src/Prebuilt/components/StatsForNerds.jsx": {
|
|
16662
|
-
"bytesInOutput":
|
|
17160
|
+
"bytesInOutput": 9844
|
|
16663
17161
|
},
|
|
16664
17162
|
"src/Prebuilt/components/MoreSettings/BulkRoleChangeModal.jsx": {
|
|
16665
17163
|
"bytesInOutput": 5008
|
|
@@ -16683,13 +17181,13 @@
|
|
|
16683
17181
|
"bytesInOutput": 1948
|
|
16684
17182
|
},
|
|
16685
17183
|
"src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx": {
|
|
16686
|
-
"bytesInOutput":
|
|
17184
|
+
"bytesInOutput": 11042
|
|
16687
17185
|
},
|
|
16688
17186
|
"src/Prebuilt/components/Header/StreamActions.tsx": {
|
|
16689
|
-
"bytesInOutput":
|
|
17187
|
+
"bytesInOutput": 10031
|
|
16690
17188
|
},
|
|
16691
17189
|
"../hms-video-store/dist/index.js": {
|
|
16692
|
-
"bytesInOutput":
|
|
17190
|
+
"bytesInOutput": 48565
|
|
16693
17191
|
},
|
|
16694
17192
|
"../../node_modules/reselect/es/index.js": {
|
|
16695
17193
|
"bytesInOutput": 2539
|
|
@@ -16701,13 +17199,13 @@
|
|
|
16701
17199
|
"bytesInOutput": 4335
|
|
16702
17200
|
},
|
|
16703
17201
|
"../../node_modules/webrtc-adapter/src/js/utils.js": {
|
|
16704
|
-
"bytesInOutput":
|
|
17202
|
+
"bytesInOutput": 6313
|
|
16705
17203
|
},
|
|
16706
17204
|
"../../node_modules/webrtc-adapter/src/js/chrome/chrome_shim.js": {
|
|
16707
17205
|
"bytesInOutput": 22678
|
|
16708
17206
|
},
|
|
16709
17207
|
"../../node_modules/webrtc-adapter/src/js/chrome/getusermedia.js": {
|
|
16710
|
-
"bytesInOutput":
|
|
17208
|
+
"bytesInOutput": 6090
|
|
16711
17209
|
},
|
|
16712
17210
|
"../../node_modules/webrtc-adapter/src/js/chrome/getdisplaymedia.js": {
|
|
16713
17211
|
"bytesInOutput": 1256
|
|
@@ -16725,7 +17223,7 @@
|
|
|
16725
17223
|
"bytesInOutput": 11868
|
|
16726
17224
|
},
|
|
16727
17225
|
"../../node_modules/webrtc-adapter/src/js/common_shim.js": {
|
|
16728
|
-
"bytesInOutput":
|
|
17226
|
+
"bytesInOutput": 12460
|
|
16729
17227
|
},
|
|
16730
17228
|
"src/Prebuilt/components/Header/AdditionalRoomState.jsx": {
|
|
16731
17229
|
"bytesInOutput": 6823
|
|
@@ -16751,14 +17249,14 @@
|
|
|
16751
17249
|
"src/Prebuilt/components/hooks/useUnreadPollQuizPresent.tsx": {
|
|
16752
17250
|
"bytesInOutput": 658
|
|
16753
17251
|
},
|
|
16754
|
-
"src/Prebuilt/components/RaiseHand.
|
|
16755
|
-
"bytesInOutput":
|
|
17252
|
+
"src/Prebuilt/components/RaiseHand.tsx": {
|
|
17253
|
+
"bytesInOutput": 796
|
|
16756
17254
|
},
|
|
16757
17255
|
"src/Prebuilt/components/ScreenShareToggle.jsx": {
|
|
16758
17256
|
"bytesInOutput": 1619
|
|
16759
17257
|
},
|
|
16760
17258
|
"src/Prebuilt/components/pdfAnnotator/shareScreenOptions.jsx": {
|
|
16761
|
-
"bytesInOutput":
|
|
17259
|
+
"bytesInOutput": 7124
|
|
16762
17260
|
},
|
|
16763
17261
|
"src/Prebuilt/images/pdf-share.png": {
|
|
16764
17262
|
"bytesInOutput": 25446
|
|
@@ -16779,7 +17277,7 @@
|
|
|
16779
17277
|
"bytesInOutput": 1024
|
|
16780
17278
|
},
|
|
16781
17279
|
"src/Prebuilt/components/pdfAnnotator/uploadedFile.jsx": {
|
|
16782
|
-
"bytesInOutput":
|
|
17280
|
+
"bytesInOutput": 2097
|
|
16783
17281
|
},
|
|
16784
17282
|
"src/Prebuilt/components/pdfAnnotator/pdfInfo.jsx": {
|
|
16785
17283
|
"bytesInOutput": 823
|
|
@@ -16806,7 +17304,7 @@
|
|
|
16806
17304
|
"bytesInOutput": 4229
|
|
16807
17305
|
},
|
|
16808
17306
|
"src/Prebuilt/components/Footer/RoleOptions.tsx": {
|
|
16809
|
-
"bytesInOutput":
|
|
17307
|
+
"bytesInOutput": 7290
|
|
16810
17308
|
},
|
|
16811
17309
|
"src/Prebuilt/components/Footer/PollsToggle.tsx": {
|
|
16812
17310
|
"bytesInOutput": 1073
|
|
@@ -16824,7 +17322,7 @@
|
|
|
16824
17322
|
"bytesInOutput": 9637
|
|
16825
17323
|
},
|
|
16826
17324
|
"src/Prebuilt/layouts/SidePane.tsx": {
|
|
16827
|
-
"bytesInOutput":
|
|
17325
|
+
"bytesInOutput": 6115
|
|
16828
17326
|
},
|
|
16829
17327
|
"src/Prebuilt/components/Polls/Polls.tsx": {
|
|
16830
17328
|
"bytesInOutput": 735
|
|
@@ -16854,7 +17352,7 @@
|
|
|
16854
17352
|
"bytesInOutput": 3664
|
|
16855
17353
|
},
|
|
16856
17354
|
"src/Prebuilt/components/Polls/common/OptionInputWithDelete.tsx": {
|
|
16857
|
-
"bytesInOutput":
|
|
17355
|
+
"bytesInOutput": 888
|
|
16858
17356
|
},
|
|
16859
17357
|
"src/Prebuilt/components/Polls/common/VoteCount.tsx": {
|
|
16860
17358
|
"bytesInOutput": 361
|
|
@@ -16875,7 +17373,7 @@
|
|
|
16875
17373
|
"bytesInOutput": 2078
|
|
16876
17374
|
},
|
|
16877
17375
|
"src/Prebuilt/components/Polls/common/utils.ts": {
|
|
16878
|
-
"bytesInOutput":
|
|
17376
|
+
"bytesInOutput": 629
|
|
16879
17377
|
},
|
|
16880
17378
|
"src/Prebuilt/components/Polls/Voting/PeerParticipationSummary.tsx": {
|
|
16881
17379
|
"bytesInOutput": 2309
|
|
@@ -16887,19 +17385,22 @@
|
|
|
16887
17385
|
"bytesInOutput": 1874
|
|
16888
17386
|
},
|
|
16889
17387
|
"src/Prebuilt/components/Polls/Voting/Voting.tsx": {
|
|
16890
|
-
"bytesInOutput":
|
|
17388
|
+
"bytesInOutput": 3356
|
|
16891
17389
|
},
|
|
16892
17390
|
"src/Prebuilt/components/Polls/Voting/StandardVoting.tsx": {
|
|
16893
17391
|
"bytesInOutput": 1221
|
|
16894
17392
|
},
|
|
16895
17393
|
"src/Prebuilt/components/Polls/Voting/QuestionCard.jsx": {
|
|
16896
|
-
"bytesInOutput":
|
|
17394
|
+
"bytesInOutput": 7649
|
|
16897
17395
|
},
|
|
16898
17396
|
"src/Prebuilt/components/Polls/Voting/TimedVoting.tsx": {
|
|
16899
17397
|
"bytesInOutput": 1727
|
|
16900
17398
|
},
|
|
16901
17399
|
"src/Prebuilt/components/RoomDetails/RoomDetailsPane.tsx": {
|
|
16902
|
-
"bytesInOutput":
|
|
17400
|
+
"bytesInOutput": 1835
|
|
17401
|
+
},
|
|
17402
|
+
"src/Prebuilt/components/Header/HeaderComponents.jsx": {
|
|
17403
|
+
"bytesInOutput": 1626
|
|
16903
17404
|
},
|
|
16904
17405
|
"src/Prebuilt/components/RoomDetails/RoomDetailsRow.tsx": {
|
|
16905
17406
|
"bytesInOutput": 664
|
|
@@ -16908,13 +17409,13 @@
|
|
|
16908
17409
|
"bytesInOutput": 720
|
|
16909
17410
|
},
|
|
16910
17411
|
"src/Prebuilt/components/SidePaneTabs.tsx": {
|
|
16911
|
-
"bytesInOutput":
|
|
17412
|
+
"bytesInOutput": 7554
|
|
16912
17413
|
},
|
|
16913
17414
|
"src/Prebuilt/components/Chat/Chat.tsx": {
|
|
16914
|
-
"bytesInOutput":
|
|
17415
|
+
"bytesInOutput": 4425
|
|
16915
17416
|
},
|
|
16916
17417
|
"src/Prebuilt/components/Chat/ChatBody.tsx": {
|
|
16917
|
-
"bytesInOutput":
|
|
17418
|
+
"bytesInOutput": 14396
|
|
16918
17419
|
},
|
|
16919
17420
|
"src/Prebuilt/components/Chat/ChatActions.tsx": {
|
|
16920
17421
|
"bytesInOutput": 9785
|
|
@@ -16935,10 +17436,10 @@
|
|
|
16935
17436
|
"bytesInOutput": 2261
|
|
16936
17437
|
},
|
|
16937
17438
|
"src/Prebuilt/components/hooks/usePinnedBy.tsx": {
|
|
16938
|
-
"bytesInOutput":
|
|
17439
|
+
"bytesInOutput": 710
|
|
16939
17440
|
},
|
|
16940
17441
|
"src/Prebuilt/components/Chat/ChatFooter.tsx": {
|
|
16941
|
-
"bytesInOutput":
|
|
17442
|
+
"bytesInOutput": 9793
|
|
16942
17443
|
},
|
|
16943
17444
|
"src/Prebuilt/components/Chat/ChatSelectorContainer.tsx": {
|
|
16944
17445
|
"bytesInOutput": 5318
|
|
@@ -16980,7 +17481,7 @@
|
|
|
16980
17481
|
"bytesInOutput": 4507
|
|
16981
17482
|
},
|
|
16982
17483
|
"src/Prebuilt/components/TileMenu/TileMenuContent.tsx": {
|
|
16983
|
-
"bytesInOutput":
|
|
17484
|
+
"bytesInOutput": 11441
|
|
16984
17485
|
},
|
|
16985
17486
|
"src/Prebuilt/components/TileMenu/utils.ts": {
|
|
16986
17487
|
"bytesInOutput": 160
|
|
@@ -17009,9 +17510,6 @@
|
|
|
17009
17510
|
"src/Prebuilt/components/FullPageProgress.jsx": {
|
|
17010
17511
|
"bytesInOutput": 574
|
|
17011
17512
|
},
|
|
17012
|
-
"src/Prebuilt/components/Header/HeaderComponents.jsx": {
|
|
17013
|
-
"bytesInOutput": 1626
|
|
17014
|
-
},
|
|
17015
17513
|
"src/Prebuilt/components/Preview/PreviewForm.tsx": {
|
|
17016
17514
|
"bytesInOutput": 2721
|
|
17017
17515
|
},
|
|
@@ -17019,7 +17517,7 @@
|
|
|
17019
17517
|
"bytesInOutput": 2163
|
|
17020
17518
|
},
|
|
17021
17519
|
"src/Prebuilt/layouts/VideoStreamingSection.tsx": {
|
|
17022
|
-
"bytesInOutput":
|
|
17520
|
+
"bytesInOutput": 3983
|
|
17023
17521
|
},
|
|
17024
17522
|
"src/Prebuilt/components/VideoLayouts/GridLayout.tsx": {
|
|
17025
17523
|
"bytesInOutput": 3871
|
|
@@ -17121,13 +17619,13 @@
|
|
|
17121
17619
|
"bytesInOutput": 491
|
|
17122
17620
|
},
|
|
17123
17621
|
"src/Prebuilt/components/MwebLandscapePrompt.tsx": {
|
|
17124
|
-
"bytesInOutput":
|
|
17622
|
+
"bytesInOutput": 2922
|
|
17125
17623
|
},
|
|
17126
17624
|
"src/Prebuilt/components/Notifications/index.tsx": {
|
|
17127
17625
|
"bytesInOutput": 27
|
|
17128
17626
|
},
|
|
17129
17627
|
"src/Prebuilt/components/Notifications/Notifications.tsx": {
|
|
17130
|
-
"bytesInOutput":
|
|
17628
|
+
"bytesInOutput": 7971
|
|
17131
17629
|
},
|
|
17132
17630
|
"src/Prebuilt/components/Notifications/AutoplayBlockedModal.tsx": {
|
|
17133
17631
|
"bytesInOutput": 1053
|
|
@@ -17136,19 +17634,19 @@
|
|
|
17136
17634
|
"bytesInOutput": 1350
|
|
17137
17635
|
},
|
|
17138
17636
|
"src/Prebuilt/components/Notifications/HandRaisedNotifications.tsx": {
|
|
17139
|
-
"bytesInOutput":
|
|
17637
|
+
"bytesInOutput": 1746
|
|
17140
17638
|
},
|
|
17141
17639
|
"src/Prebuilt/components/Toast/ToastBatcher.js": {
|
|
17142
|
-
"bytesInOutput":
|
|
17640
|
+
"bytesInOutput": 1983
|
|
17143
17641
|
},
|
|
17144
17642
|
"src/Prebuilt/components/Toast/ToastConfig.jsx": {
|
|
17145
|
-
"bytesInOutput":
|
|
17643
|
+
"bytesInOutput": 7228
|
|
17146
17644
|
},
|
|
17147
17645
|
"src/Prebuilt/components/Notifications/InitErrorModal.tsx": {
|
|
17148
17646
|
"bytesInOutput": 1596
|
|
17149
17647
|
},
|
|
17150
17648
|
"src/Prebuilt/components/Notifications/PeerNotifications.tsx": {
|
|
17151
|
-
"bytesInOutput":
|
|
17649
|
+
"bytesInOutput": 1627
|
|
17152
17650
|
},
|
|
17153
17651
|
"src/Prebuilt/components/Notifications/PermissionErrorModal.tsx": {
|
|
17154
17652
|
"bytesInOutput": 4534
|
|
@@ -17205,7 +17703,7 @@
|
|
|
17205
17703
|
"bytesInOutput": 651
|
|
17206
17704
|
}
|
|
17207
17705
|
},
|
|
17208
|
-
"bytes":
|
|
17706
|
+
"bytes": 1297975
|
|
17209
17707
|
}
|
|
17210
17708
|
}
|
|
17211
17709
|
}
|