@100mslive/roomkit-react 0.1.12-alpha.0 → 0.1.13-alpha.0
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-J2MIS3H2.js → HLSView-AIPLCDXY.js} +2 -2
- package/dist/Prebuilt/App.d.ts +0 -2
- package/dist/Prebuilt/AppContext.d.ts +0 -2
- package/dist/Prebuilt/common/constants.d.ts +110 -0
- package/dist/Prebuilt/components/AppData/AppData.d.ts +2 -0
- package/dist/Prebuilt/components/Chat/MwebChatOption.d.ts +7 -0
- package/dist/Prebuilt/components/Chat/Navigation.d.ts +8 -0
- package/dist/Prebuilt/components/Chat/PinnedMessage.d.ts +4 -0
- package/dist/Prebuilt/components/Footer/Footer.d.ts +3 -2
- package/dist/Prebuilt/components/Preview/PreviewJoin.d.ts +2 -1
- package/dist/Prebuilt/components/VirtualBackground/VBCollection.d.ts +2 -1
- package/dist/Prebuilt/components/VirtualBackground/VBPicker.d.ts +3 -0
- package/dist/Prebuilt/components/VirtualBackground/constants.d.ts +0 -6
- package/dist/Prebuilt/components/hooks/useChatBlacklist.d.ts +4 -0
- package/dist/Prebuilt/components/hooks/useSetPinnedMessages.d.ts +16 -0
- package/dist/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.d.ts +3 -2
- package/dist/Theme/stitches.config.d.ts +226 -226
- package/dist/{chunk-OYSYEA6R.js → chunk-5DCII2TP.js} +2248 -1269
- package/dist/chunk-5DCII2TP.js.map +7 -0
- package/dist/index.cjs.js +2943 -1902
- package/dist/index.cjs.js.map +4 -4
- package/dist/index.js +1 -1
- package/dist/meta.cjs.json +819 -313
- package/dist/meta.esbuild.json +826 -320
- package/package.json +8 -8
- package/src/Prebuilt/App.tsx +3 -14
- package/src/Prebuilt/AppContext.tsx +0 -2
- package/src/Prebuilt/common/{constants.js → constants.ts} +22 -20
- package/src/Prebuilt/components/AppData/{AppData.jsx → AppData.tsx} +8 -22
- package/src/Prebuilt/components/AppData/useUISettings.js +0 -4
- package/src/Prebuilt/components/AuthToken.jsx +4 -4
- package/src/Prebuilt/components/Chat/Chat.jsx +51 -73
- package/src/Prebuilt/components/Chat/ChatBody.jsx +219 -48
- package/src/Prebuilt/components/Chat/ChatFooter.tsx +50 -6
- package/src/Prebuilt/components/Chat/ChatStates.jsx +66 -0
- package/src/Prebuilt/components/Chat/MwebChatOption.tsx +24 -0
- package/src/Prebuilt/components/Chat/Navigation.tsx +60 -0
- package/src/Prebuilt/components/Chat/PinnedMessage.tsx +118 -0
- package/src/Prebuilt/components/Footer/Footer.tsx +4 -7
- package/src/Prebuilt/components/Header/common.jsx +1 -1
- package/src/Prebuilt/components/Preview/PreviewJoin.tsx +6 -8
- package/src/Prebuilt/components/RoleChangeRequest/RoleChangeRequestModal.tsx +4 -1
- package/src/Prebuilt/components/Settings/DeviceSettings.jsx +1 -1
- package/src/Prebuilt/components/SidePaneTabs.tsx +3 -2
- package/src/Prebuilt/components/Toast/ToastConfig.jsx +20 -0
- package/src/Prebuilt/components/VirtualBackground/VBCollection.tsx +4 -4
- package/src/Prebuilt/components/VirtualBackground/{VBPicker.jsx → VBPicker.tsx} +27 -18
- package/src/Prebuilt/components/VirtualBackground/constants.ts +0 -8
- package/src/Prebuilt/components/hooks/useAutoStartStreaming.tsx +10 -1
- package/src/Prebuilt/components/hooks/useChatBlacklist.ts +21 -0
- package/src/Prebuilt/components/hooks/useSetPinnedMessages.ts +76 -0
- package/src/Prebuilt/layouts/SidePane.tsx +1 -1
- package/src/Prebuilt/layouts/VideoStreamingSection.tsx +30 -2
- package/src/Prebuilt/plugins/whiteboard/PusherCommunicationProvider.js +1 -1
- package/src/Prebuilt/plugins/whiteboard/README.md +1 -1
- package/src/Prebuilt/primitives/DialogContent.jsx +1 -1
- package/src/Prebuilt/provider/roomLayoutProvider/constants/index.ts +12 -1
- package/src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts +5 -1
- package/src/Theme/stitches.config.ts +1 -2
- package/dist/chunk-OYSYEA6R.js.map +0 -7
- package/src/Prebuilt/components/hooks/useSetPinnedMessage.js +0 -38
- package/src/Prebuilt/services/tokenService.js +0 -49
- /package/dist/{HLSView-J2MIS3H2.js.map → HLSView-AIPLCDXY.js.map} +0 -0
package/dist/meta.cjs.json
CHANGED
@@ -26,7 +26,7 @@
|
|
26
26
|
"format": "esm"
|
27
27
|
},
|
28
28
|
"src/Theme/stitches.config.ts": {
|
29
|
-
"bytes":
|
29
|
+
"bytes": 2170,
|
30
30
|
"imports": [
|
31
31
|
{
|
32
32
|
"path": "@stitches/react",
|
@@ -38,11 +38,6 @@
|
|
38
38
|
"kind": "import-statement",
|
39
39
|
"external": true
|
40
40
|
},
|
41
|
-
{
|
42
|
-
"path": "uuid",
|
43
|
-
"kind": "import-statement",
|
44
|
-
"external": true
|
45
|
-
},
|
46
41
|
{
|
47
42
|
"path": "src/Theme/base.config.ts",
|
48
43
|
"kind": "import-statement",
|
@@ -1924,8 +1919,8 @@
|
|
1924
1919
|
],
|
1925
1920
|
"format": "esm"
|
1926
1921
|
},
|
1927
|
-
"src/Prebuilt/common/constants.
|
1928
|
-
"bytes":
|
1922
|
+
"src/Prebuilt/common/constants.ts": {
|
1923
|
+
"bytes": 4234,
|
1929
1924
|
"imports": [
|
1930
1925
|
{
|
1931
1926
|
"path": "@100mslive/react-sdk",
|
@@ -1941,7 +1936,7 @@
|
|
1941
1936
|
"format": "esm"
|
1942
1937
|
},
|
1943
1938
|
"src/Prebuilt/components/AppData/useUISettings.js": {
|
1944
|
-
"bytes":
|
1939
|
+
"bytes": 6040,
|
1945
1940
|
"imports": [
|
1946
1941
|
{
|
1947
1942
|
"path": "react",
|
@@ -1959,7 +1954,7 @@
|
|
1959
1954
|
"original": "../hooks/useUserPreferences"
|
1960
1955
|
},
|
1961
1956
|
{
|
1962
|
-
"path": "src/Prebuilt/common/constants.
|
1957
|
+
"path": "src/Prebuilt/common/constants.ts",
|
1963
1958
|
"kind": "import-statement",
|
1964
1959
|
"original": "../../common/constants"
|
1965
1960
|
},
|
@@ -1995,7 +1990,7 @@
|
|
1995
1990
|
"original": "./useUISettings"
|
1996
1991
|
},
|
1997
1992
|
{
|
1998
|
-
"path": "src/Prebuilt/common/constants.
|
1993
|
+
"path": "src/Prebuilt/common/constants.ts",
|
1999
1994
|
"kind": "import-statement",
|
2000
1995
|
"original": "../../common/constants"
|
2001
1996
|
},
|
@@ -2007,24 +2002,8 @@
|
|
2007
2002
|
],
|
2008
2003
|
"format": "esm"
|
2009
2004
|
},
|
2010
|
-
"src/Prebuilt/components/
|
2011
|
-
"bytes":
|
2012
|
-
"imports": [
|
2013
|
-
{
|
2014
|
-
"path": "@100mslive/hms-virtual-background",
|
2015
|
-
"kind": "import-statement",
|
2016
|
-
"external": true
|
2017
|
-
},
|
2018
|
-
{
|
2019
|
-
"path": "<define:process.env>",
|
2020
|
-
"kind": "import-statement",
|
2021
|
-
"external": true
|
2022
|
-
}
|
2023
|
-
],
|
2024
|
-
"format": "esm"
|
2025
|
-
},
|
2026
|
-
"src/Prebuilt/components/AppData/AppData.jsx": {
|
2027
|
-
"bytes": 5827,
|
2005
|
+
"src/Prebuilt/components/AppData/AppData.tsx": {
|
2006
|
+
"bytes": 5356,
|
2028
2007
|
"imports": [
|
2029
2008
|
{
|
2030
2009
|
"path": "react",
|
@@ -2057,15 +2036,10 @@
|
|
2057
2036
|
"original": "./useUISettings"
|
2058
2037
|
},
|
2059
2038
|
{
|
2060
|
-
"path": "src/Prebuilt/common/constants.
|
2039
|
+
"path": "src/Prebuilt/common/constants.ts",
|
2061
2040
|
"kind": "import-statement",
|
2062
2041
|
"original": "../../common/constants"
|
2063
2042
|
},
|
2064
|
-
{
|
2065
|
-
"path": "src/Prebuilt/components/VirtualBackground/constants.ts",
|
2066
|
-
"kind": "import-statement",
|
2067
|
-
"original": "../VirtualBackground/constants"
|
2068
|
-
},
|
2069
2043
|
{
|
2070
2044
|
"path": "<define:process.env>",
|
2071
2045
|
"kind": "import-statement",
|
@@ -2080,7 +2054,7 @@
|
|
2080
2054
|
"format": "esm"
|
2081
2055
|
},
|
2082
2056
|
"src/Prebuilt/AppContext.tsx": {
|
2083
|
-
"bytes":
|
2057
|
+
"bytes": 869,
|
2084
2058
|
"imports": [
|
2085
2059
|
{
|
2086
2060
|
"path": "react",
|
@@ -2088,7 +2062,7 @@
|
|
2088
2062
|
"external": true
|
2089
2063
|
},
|
2090
2064
|
{
|
2091
|
-
"path": "src/Prebuilt/common/constants.
|
2065
|
+
"path": "src/Prebuilt/common/constants.ts",
|
2092
2066
|
"kind": "import-statement",
|
2093
2067
|
"original": "./common/constants"
|
2094
2068
|
},
|
@@ -2101,7 +2075,7 @@
|
|
2101
2075
|
"format": "esm"
|
2102
2076
|
},
|
2103
2077
|
"src/Prebuilt/primitives/DialogContent.jsx": {
|
2104
|
-
"bytes":
|
2078
|
+
"bytes": 8379,
|
2105
2079
|
"imports": [
|
2106
2080
|
{
|
2107
2081
|
"path": "react",
|
@@ -2182,7 +2156,7 @@
|
|
2182
2156
|
"format": "esm"
|
2183
2157
|
},
|
2184
2158
|
"src/Prebuilt/components/AuthToken.jsx": {
|
2185
|
-
"bytes":
|
2159
|
+
"bytes": 3794,
|
2186
2160
|
"imports": [
|
2187
2161
|
{
|
2188
2162
|
"path": "react",
|
@@ -2215,7 +2189,7 @@
|
|
2215
2189
|
"original": "./AppData/useUISettings"
|
2216
2190
|
},
|
2217
2191
|
{
|
2218
|
-
"path": "src/Prebuilt/common/constants.
|
2192
|
+
"path": "src/Prebuilt/common/constants.ts",
|
2219
2193
|
"kind": "import-statement",
|
2220
2194
|
"original": "../common/constants"
|
2221
2195
|
},
|
@@ -2359,7 +2333,7 @@
|
|
2359
2333
|
"original": "../IconButton"
|
2360
2334
|
},
|
2361
2335
|
{
|
2362
|
-
"path": "src/Prebuilt/common/constants.
|
2336
|
+
"path": "src/Prebuilt/common/constants.ts",
|
2363
2337
|
"kind": "import-statement",
|
2364
2338
|
"original": "../common/constants"
|
2365
2339
|
},
|
@@ -2416,7 +2390,7 @@
|
|
2416
2390
|
"original": "../AppData/useUISettings"
|
2417
2391
|
},
|
2418
2392
|
{
|
2419
|
-
"path": "src/Prebuilt/common/constants.
|
2393
|
+
"path": "src/Prebuilt/common/constants.ts",
|
2420
2394
|
"kind": "import-statement",
|
2421
2395
|
"original": "../../common/constants"
|
2422
2396
|
},
|
@@ -2497,7 +2471,7 @@
|
|
2497
2471
|
"original": "./hooks/useDropdownList"
|
2498
2472
|
},
|
2499
2473
|
{
|
2500
|
-
"path": "src/Prebuilt/common/constants.
|
2474
|
+
"path": "src/Prebuilt/common/constants.ts",
|
2501
2475
|
"kind": "import-statement",
|
2502
2476
|
"original": "../common/constants"
|
2503
2477
|
},
|
@@ -2953,7 +2927,7 @@
|
|
2953
2927
|
"original": "./pipUtils"
|
2954
2928
|
},
|
2955
2929
|
{
|
2956
|
-
"path": "src/Prebuilt/common/constants.
|
2930
|
+
"path": "src/Prebuilt/common/constants.ts",
|
2957
2931
|
"kind": "import-statement",
|
2958
2932
|
"original": "../../common/constants"
|
2959
2933
|
},
|
@@ -3075,7 +3049,7 @@
|
|
3075
3049
|
"format": "esm"
|
3076
3050
|
},
|
3077
3051
|
"src/Prebuilt/provider/roomLayoutProvider/constants/index.ts": {
|
3078
|
-
"bytes":
|
3052
|
+
"bytes": 1516,
|
3079
3053
|
"imports": [
|
3080
3054
|
{
|
3081
3055
|
"path": "@100mslive/types-prebuilt/elements/join_form",
|
@@ -3296,7 +3270,7 @@
|
|
3296
3270
|
"format": "esm"
|
3297
3271
|
},
|
3298
3272
|
"src/Prebuilt/components/Settings/DeviceSettings.jsx": {
|
3299
|
-
"bytes":
|
3273
|
+
"bytes": 7183,
|
3300
3274
|
"imports": [
|
3301
3275
|
{
|
3302
3276
|
"path": "react",
|
@@ -3349,7 +3323,7 @@
|
|
3349
3323
|
"original": "./common.js"
|
3350
3324
|
},
|
3351
3325
|
{
|
3352
|
-
"path": "src/Prebuilt/common/constants.
|
3326
|
+
"path": "src/Prebuilt/common/constants.ts",
|
3353
3327
|
"kind": "import-statement",
|
3354
3328
|
"original": "../../common/constants"
|
3355
3329
|
},
|
@@ -3426,7 +3400,7 @@
|
|
3426
3400
|
"original": "./common.js"
|
3427
3401
|
},
|
3428
3402
|
{
|
3429
|
-
"path": "src/Prebuilt/common/constants.
|
3403
|
+
"path": "src/Prebuilt/common/constants.ts",
|
3430
3404
|
"kind": "import-statement",
|
3431
3405
|
"original": "../../common/constants"
|
3432
3406
|
},
|
@@ -3477,7 +3451,7 @@
|
|
3477
3451
|
"original": "./common.js"
|
3478
3452
|
},
|
3479
3453
|
{
|
3480
|
-
"path": "src/Prebuilt/common/constants.
|
3454
|
+
"path": "src/Prebuilt/common/constants.ts",
|
3481
3455
|
"kind": "import-statement",
|
3482
3456
|
"original": "../../common/constants"
|
3483
3457
|
},
|
@@ -3625,7 +3599,7 @@
|
|
3625
3599
|
"original": "../../primitives/DialogContent"
|
3626
3600
|
},
|
3627
3601
|
{
|
3628
|
-
"path": "src/Prebuilt/common/constants.
|
3602
|
+
"path": "src/Prebuilt/common/constants.ts",
|
3629
3603
|
"kind": "import-statement",
|
3630
3604
|
"original": "../../common/constants"
|
3631
3605
|
},
|
@@ -3676,7 +3650,7 @@
|
|
3676
3650
|
"original": "../AppData/useUISettings"
|
3677
3651
|
},
|
3678
3652
|
{
|
3679
|
-
"path": "src/Prebuilt/common/constants.
|
3653
|
+
"path": "src/Prebuilt/common/constants.ts",
|
3680
3654
|
"kind": "import-statement",
|
3681
3655
|
"original": "../../common/constants"
|
3682
3656
|
},
|
@@ -3757,7 +3731,7 @@
|
|
3757
3731
|
"original": "./hooks/useDropdownSelection"
|
3758
3732
|
},
|
3759
3733
|
{
|
3760
|
-
"path": "src/Prebuilt/common/constants.
|
3734
|
+
"path": "src/Prebuilt/common/constants.ts",
|
3761
3735
|
"kind": "import-statement",
|
3762
3736
|
"original": "../common/constants"
|
3763
3737
|
},
|
@@ -4104,7 +4078,7 @@
|
|
4104
4078
|
"original": "../../hooks/useMetadata"
|
4105
4079
|
},
|
4106
4080
|
{
|
4107
|
-
"path": "src/Prebuilt/common/constants.
|
4081
|
+
"path": "src/Prebuilt/common/constants.ts",
|
4108
4082
|
"kind": "import-statement",
|
4109
4083
|
"original": "../../../common/constants"
|
4110
4084
|
},
|
@@ -4414,7 +4388,7 @@
|
|
4414
4388
|
"format": "cjs"
|
4415
4389
|
},
|
4416
4390
|
"../hms-video-web/dist/index.js": {
|
4417
|
-
"bytes":
|
4391
|
+
"bytes": 254759,
|
4418
4392
|
"imports": [
|
4419
4393
|
{
|
4420
4394
|
"path": "uuid",
|
@@ -4503,7 +4477,7 @@
|
|
4503
4477
|
"bytes": 4325,
|
4504
4478
|
"imports": [
|
4505
4479
|
{
|
4506
|
-
"path": "src/Prebuilt/common/constants.
|
4480
|
+
"path": "src/Prebuilt/common/constants.ts",
|
4507
4481
|
"kind": "import-statement",
|
4508
4482
|
"original": "./constants"
|
4509
4483
|
},
|
@@ -4673,7 +4647,7 @@
|
|
4673
4647
|
"original": "../hooks/useScreenshareAudio"
|
4674
4648
|
},
|
4675
4649
|
{
|
4676
|
-
"path": "src/Prebuilt/common/constants.
|
4650
|
+
"path": "src/Prebuilt/common/constants.ts",
|
4677
4651
|
"kind": "import-statement",
|
4678
4652
|
"original": "../../common/constants"
|
4679
4653
|
},
|
@@ -4686,7 +4660,7 @@
|
|
4686
4660
|
"format": "esm"
|
4687
4661
|
},
|
4688
4662
|
"src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts": {
|
4689
|
-
"bytes":
|
4663
|
+
"bytes": 2131,
|
4690
4664
|
"imports": [
|
4691
4665
|
{
|
4692
4666
|
"path": "@100mslive/types-prebuilt",
|
@@ -4770,7 +4744,7 @@
|
|
4770
4744
|
"original": "../../common/utils"
|
4771
4745
|
},
|
4772
4746
|
{
|
4773
|
-
"path": "src/Prebuilt/common/constants.
|
4747
|
+
"path": "src/Prebuilt/common/constants.ts",
|
4774
4748
|
"kind": "import-statement",
|
4775
4749
|
"original": "../../common/constants"
|
4776
4750
|
},
|
@@ -5029,7 +5003,7 @@
|
|
5029
5003
|
"original": "../../../common/utils"
|
5030
5004
|
},
|
5031
5005
|
{
|
5032
|
-
"path": "src/Prebuilt/common/constants.
|
5006
|
+
"path": "src/Prebuilt/common/constants.ts",
|
5033
5007
|
"kind": "import-statement",
|
5034
5008
|
"original": "../../../common/constants"
|
5035
5009
|
},
|
@@ -5202,7 +5176,7 @@
|
|
5202
5176
|
"original": "../AppData/useUISettings"
|
5203
5177
|
},
|
5204
5178
|
{
|
5205
|
-
"path": "src/Prebuilt/common/constants.
|
5179
|
+
"path": "src/Prebuilt/common/constants.ts",
|
5206
5180
|
"kind": "import-statement",
|
5207
5181
|
"original": "../../common/constants"
|
5208
5182
|
},
|
@@ -5432,7 +5406,7 @@
|
|
5432
5406
|
"original": "../common/utils"
|
5433
5407
|
},
|
5434
5408
|
{
|
5435
|
-
"path": "src/Prebuilt/common/constants.
|
5409
|
+
"path": "src/Prebuilt/common/constants.ts",
|
5436
5410
|
"kind": "import-statement",
|
5437
5411
|
"original": "../common/constants"
|
5438
5412
|
},
|
@@ -5478,7 +5452,7 @@
|
|
5478
5452
|
"original": "../AppData/useSidepane"
|
5479
5453
|
},
|
5480
5454
|
{
|
5481
|
-
"path": "src/Prebuilt/common/constants.
|
5455
|
+
"path": "src/Prebuilt/common/constants.ts",
|
5482
5456
|
"kind": "import-statement",
|
5483
5457
|
"original": "../../common/constants"
|
5484
5458
|
},
|
@@ -5524,7 +5498,7 @@
|
|
5524
5498
|
"original": "../AppData/useSidepane"
|
5525
5499
|
},
|
5526
5500
|
{
|
5527
|
-
"path": "src/Prebuilt/common/constants.
|
5501
|
+
"path": "src/Prebuilt/common/constants.ts",
|
5528
5502
|
"kind": "import-statement",
|
5529
5503
|
"original": "../../common/constants"
|
5530
5504
|
},
|
@@ -5779,7 +5753,7 @@
|
|
5779
5753
|
"original": "../../common/utils"
|
5780
5754
|
},
|
5781
5755
|
{
|
5782
|
-
"path": "src/Prebuilt/common/constants.
|
5756
|
+
"path": "src/Prebuilt/common/constants.ts",
|
5783
5757
|
"kind": "import-statement",
|
5784
5758
|
"original": "../../common/constants"
|
5785
5759
|
},
|
@@ -5825,7 +5799,7 @@
|
|
5825
5799
|
"original": "../AppData/useSidepane"
|
5826
5800
|
},
|
5827
5801
|
{
|
5828
|
-
"path": "src/Prebuilt/common/constants.
|
5802
|
+
"path": "src/Prebuilt/common/constants.ts",
|
5829
5803
|
"kind": "import-statement",
|
5830
5804
|
"original": "../../common/constants"
|
5831
5805
|
},
|
@@ -5838,7 +5812,7 @@
|
|
5838
5812
|
"format": "esm"
|
5839
5813
|
},
|
5840
5814
|
"src/Prebuilt/components/Footer/Footer.tsx": {
|
5841
|
-
"bytes":
|
5815
|
+
"bytes": 3945,
|
5842
5816
|
"imports": [
|
5843
5817
|
{
|
5844
5818
|
"path": "react",
|
@@ -5920,6 +5894,11 @@
|
|
5920
5894
|
"kind": "import-statement",
|
5921
5895
|
"original": "./PollsToggle"
|
5922
5896
|
},
|
5897
|
+
{
|
5898
|
+
"path": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen",
|
5899
|
+
"kind": "import-statement",
|
5900
|
+
"external": true
|
5901
|
+
},
|
5923
5902
|
{
|
5924
5903
|
"path": "src/Prebuilt/components/AppData/useSidepane.js",
|
5925
5904
|
"kind": "import-statement",
|
@@ -5931,7 +5910,7 @@
|
|
5931
5910
|
"original": "../AppData/useUISettings"
|
5932
5911
|
},
|
5933
5912
|
{
|
5934
|
-
"path": "src/Prebuilt/common/constants.
|
5913
|
+
"path": "src/Prebuilt/common/constants.ts",
|
5935
5914
|
"kind": "import-statement",
|
5936
5915
|
"original": "../../common/constants"
|
5937
5916
|
},
|
@@ -5982,7 +5961,7 @@
|
|
5982
5961
|
"original": "../AppData/useUISettings"
|
5983
5962
|
},
|
5984
5963
|
{
|
5985
|
-
"path": "src/Prebuilt/common/constants.
|
5964
|
+
"path": "src/Prebuilt/common/constants.ts",
|
5986
5965
|
"kind": "import-statement",
|
5987
5966
|
"original": "../../common/constants"
|
5988
5967
|
},
|
@@ -6105,7 +6084,7 @@
|
|
6105
6084
|
"original": "../common/StatusIndicator"
|
6106
6085
|
},
|
6107
6086
|
{
|
6108
|
-
"path": "src/Prebuilt/common/constants.
|
6087
|
+
"path": "src/Prebuilt/common/constants.ts",
|
6109
6088
|
"kind": "import-statement",
|
6110
6089
|
"original": "../../../common/constants"
|
6111
6090
|
},
|
@@ -6362,7 +6341,7 @@
|
|
6362
6341
|
"original": "../common/SingleChoiceOptions"
|
6363
6342
|
},
|
6364
6343
|
{
|
6365
|
-
"path": "src/Prebuilt/common/constants.
|
6344
|
+
"path": "src/Prebuilt/common/constants.ts",
|
6366
6345
|
"kind": "import-statement",
|
6367
6346
|
"original": "../../../common/constants"
|
6368
6347
|
},
|
@@ -6403,7 +6382,7 @@
|
|
6403
6382
|
"original": "./DeleteQuestionModal"
|
6404
6383
|
},
|
6405
6384
|
{
|
6406
|
-
"path": "src/Prebuilt/common/constants.
|
6385
|
+
"path": "src/Prebuilt/common/constants.ts",
|
6407
6386
|
"kind": "import-statement",
|
6408
6387
|
"original": "../../../common/constants"
|
6409
6388
|
},
|
@@ -6469,7 +6448,7 @@
|
|
6469
6448
|
"original": "../../AppData/useUISettings"
|
6470
6449
|
},
|
6471
6450
|
{
|
6472
|
-
"path": "src/Prebuilt/common/constants.
|
6451
|
+
"path": "src/Prebuilt/common/constants.ts",
|
6473
6452
|
"kind": "import-statement",
|
6474
6453
|
"original": "../../../common/constants"
|
6475
6454
|
},
|
@@ -6525,7 +6504,7 @@
|
|
6525
6504
|
"original": "../common/SingleChoiceOptions"
|
6526
6505
|
},
|
6527
6506
|
{
|
6528
|
-
"path": "src/Prebuilt/common/constants.
|
6507
|
+
"path": "src/Prebuilt/common/constants.ts",
|
6529
6508
|
"kind": "import-statement",
|
6530
6509
|
"original": "../../../common/constants"
|
6531
6510
|
},
|
@@ -6633,7 +6612,7 @@
|
|
6633
6612
|
"original": "../common/StatusIndicator"
|
6634
6613
|
},
|
6635
6614
|
{
|
6636
|
-
"path": "src/Prebuilt/common/constants.
|
6615
|
+
"path": "src/Prebuilt/common/constants.ts",
|
6637
6616
|
"kind": "import-statement",
|
6638
6617
|
"original": "../../../common/constants"
|
6639
6618
|
},
|
@@ -6679,7 +6658,7 @@
|
|
6679
6658
|
"original": "../AppData/useUISettings"
|
6680
6659
|
},
|
6681
6660
|
{
|
6682
|
-
"path": "src/Prebuilt/common/constants.
|
6661
|
+
"path": "src/Prebuilt/common/constants.ts",
|
6683
6662
|
"kind": "import-statement",
|
6684
6663
|
"original": "../../common/constants"
|
6685
6664
|
},
|
@@ -6691,12 +6670,209 @@
|
|
6691
6670
|
],
|
6692
6671
|
"format": "esm"
|
6693
6672
|
},
|
6673
|
+
"../../node_modules/reselect/es/index.js": {
|
6674
|
+
"bytes": 3975,
|
6675
|
+
"imports": [
|
6676
|
+
{
|
6677
|
+
"path": "<define:process.env>",
|
6678
|
+
"kind": "import-statement",
|
6679
|
+
"external": true
|
6680
|
+
}
|
6681
|
+
],
|
6682
|
+
"format": "esm"
|
6683
|
+
},
|
6684
|
+
"../../node_modules/immer/dist/immer.esm.mjs": {
|
6685
|
+
"bytes": 18424,
|
6686
|
+
"imports": [
|
6687
|
+
{
|
6688
|
+
"path": "<define:process.env>",
|
6689
|
+
"kind": "import-statement",
|
6690
|
+
"external": true
|
6691
|
+
}
|
6692
|
+
],
|
6693
|
+
"format": "esm"
|
6694
|
+
},
|
6695
|
+
"../../node_modules/zustand/esm/shallow.js": {
|
6696
|
+
"bytes": 535,
|
6697
|
+
"imports": [
|
6698
|
+
{
|
6699
|
+
"path": "<define:process.env>",
|
6700
|
+
"kind": "import-statement",
|
6701
|
+
"external": true
|
6702
|
+
}
|
6703
|
+
],
|
6704
|
+
"format": "esm"
|
6705
|
+
},
|
6706
|
+
"../../node_modules/zustand/esm/vanilla.js": {
|
6707
|
+
"bytes": 1346,
|
6708
|
+
"imports": [
|
6709
|
+
{
|
6710
|
+
"path": "<define:process.env>",
|
6711
|
+
"kind": "import-statement",
|
6712
|
+
"external": true
|
6713
|
+
}
|
6714
|
+
],
|
6715
|
+
"format": "esm"
|
6716
|
+
},
|
6717
|
+
"../hms-video-store/dist/index.js": {
|
6718
|
+
"bytes": 66378,
|
6719
|
+
"imports": [
|
6720
|
+
{
|
6721
|
+
"path": "../../node_modules/reselect/es/index.js",
|
6722
|
+
"kind": "import-statement",
|
6723
|
+
"original": "reselect"
|
6724
|
+
},
|
6725
|
+
{
|
6726
|
+
"path": "../../node_modules/reselect/es/index.js",
|
6727
|
+
"kind": "import-statement",
|
6728
|
+
"original": "reselect"
|
6729
|
+
},
|
6730
|
+
{
|
6731
|
+
"path": "../../node_modules/reselect/es/index.js",
|
6732
|
+
"kind": "import-statement",
|
6733
|
+
"original": "reselect"
|
6734
|
+
},
|
6735
|
+
{
|
6736
|
+
"path": "../hms-video-web/dist/index.js",
|
6737
|
+
"kind": "import-statement",
|
6738
|
+
"original": "@100mslive/hms-video"
|
6739
|
+
},
|
6740
|
+
{
|
6741
|
+
"path": "../../node_modules/reselect/es/index.js",
|
6742
|
+
"kind": "import-statement",
|
6743
|
+
"original": "reselect"
|
6744
|
+
},
|
6745
|
+
{
|
6746
|
+
"path": "../../node_modules/reselect/es/index.js",
|
6747
|
+
"kind": "import-statement",
|
6748
|
+
"original": "reselect"
|
6749
|
+
},
|
6750
|
+
{
|
6751
|
+
"path": "../hms-video-web/dist/index.js",
|
6752
|
+
"kind": "import-statement",
|
6753
|
+
"original": "@100mslive/hms-video"
|
6754
|
+
},
|
6755
|
+
{
|
6756
|
+
"path": "../../node_modules/immer/dist/immer.esm.mjs",
|
6757
|
+
"kind": "import-statement",
|
6758
|
+
"original": "immer"
|
6759
|
+
},
|
6760
|
+
{
|
6761
|
+
"path": "../../node_modules/zustand/esm/shallow.js",
|
6762
|
+
"kind": "import-statement",
|
6763
|
+
"original": "zustand/shallow"
|
6764
|
+
},
|
6765
|
+
{
|
6766
|
+
"path": "../../node_modules/zustand/esm/vanilla.js",
|
6767
|
+
"kind": "import-statement",
|
6768
|
+
"original": "zustand/vanilla"
|
6769
|
+
},
|
6770
|
+
{
|
6771
|
+
"path": "../hms-video-web/dist/index.js",
|
6772
|
+
"kind": "import-statement",
|
6773
|
+
"original": "@100mslive/hms-video"
|
6774
|
+
},
|
6775
|
+
{
|
6776
|
+
"path": "eventemitter2",
|
6777
|
+
"kind": "import-statement",
|
6778
|
+
"external": true
|
6779
|
+
},
|
6780
|
+
{
|
6781
|
+
"path": "../hms-video-web/dist/index.js",
|
6782
|
+
"kind": "import-statement",
|
6783
|
+
"original": "@100mslive/hms-video"
|
6784
|
+
},
|
6785
|
+
{
|
6786
|
+
"path": "../hms-video-web/dist/index.js",
|
6787
|
+
"kind": "import-statement",
|
6788
|
+
"original": "@100mslive/hms-video"
|
6789
|
+
},
|
6790
|
+
{
|
6791
|
+
"path": "../hms-video-web/dist/index.js",
|
6792
|
+
"kind": "import-statement",
|
6793
|
+
"original": "@100mslive/hms-video"
|
6794
|
+
},
|
6795
|
+
{
|
6796
|
+
"path": "../../node_modules/reselect/es/index.js",
|
6797
|
+
"kind": "import-statement",
|
6798
|
+
"original": "reselect"
|
6799
|
+
},
|
6800
|
+
{
|
6801
|
+
"path": "<define:process.env>",
|
6802
|
+
"kind": "import-statement",
|
6803
|
+
"external": true
|
6804
|
+
}
|
6805
|
+
],
|
6806
|
+
"format": "esm"
|
6807
|
+
},
|
6694
6808
|
"src/Prebuilt/images/empty-chat.svg": {
|
6695
6809
|
"bytes": 2177,
|
6696
6810
|
"imports": []
|
6697
6811
|
},
|
6698
|
-
"src/Prebuilt/components/
|
6699
|
-
"bytes":
|
6812
|
+
"src/Prebuilt/components/Chat/MwebChatOption.tsx": {
|
6813
|
+
"bytes": 544,
|
6814
|
+
"imports": [
|
6815
|
+
{
|
6816
|
+
"path": "react",
|
6817
|
+
"kind": "import-statement",
|
6818
|
+
"external": true
|
6819
|
+
},
|
6820
|
+
{
|
6821
|
+
"path": "src/Layout/index.tsx",
|
6822
|
+
"kind": "import-statement",
|
6823
|
+
"original": "../../../Layout"
|
6824
|
+
},
|
6825
|
+
{
|
6826
|
+
"path": "src/Text/index.tsx",
|
6827
|
+
"kind": "import-statement",
|
6828
|
+
"original": "../../../Text"
|
6829
|
+
},
|
6830
|
+
{
|
6831
|
+
"path": "<define:process.env>",
|
6832
|
+
"kind": "import-statement",
|
6833
|
+
"external": true
|
6834
|
+
}
|
6835
|
+
],
|
6836
|
+
"format": "esm"
|
6837
|
+
},
|
6838
|
+
"src/Prebuilt/components/hooks/useChatBlacklist.ts": {
|
6839
|
+
"bytes": 745,
|
6840
|
+
"imports": [
|
6841
|
+
{
|
6842
|
+
"path": "react",
|
6843
|
+
"kind": "import-statement",
|
6844
|
+
"external": true
|
6845
|
+
},
|
6846
|
+
{
|
6847
|
+
"path": "@100mslive/react-sdk",
|
6848
|
+
"kind": "import-statement",
|
6849
|
+
"external": true
|
6850
|
+
},
|
6851
|
+
{
|
6852
|
+
"path": "src/Prebuilt/components/Toast/ToastManager.js",
|
6853
|
+
"kind": "import-statement",
|
6854
|
+
"original": "../Toast/ToastManager"
|
6855
|
+
},
|
6856
|
+
{
|
6857
|
+
"path": "../../common/constants",
|
6858
|
+
"kind": "import-statement",
|
6859
|
+
"external": true
|
6860
|
+
},
|
6861
|
+
{
|
6862
|
+
"path": "<define:process.env>",
|
6863
|
+
"kind": "import-statement",
|
6864
|
+
"external": true
|
6865
|
+
},
|
6866
|
+
{
|
6867
|
+
"path": "<runtime>",
|
6868
|
+
"kind": "import-statement",
|
6869
|
+
"external": true
|
6870
|
+
}
|
6871
|
+
],
|
6872
|
+
"format": "esm"
|
6873
|
+
},
|
6874
|
+
"src/Prebuilt/components/hooks/useSetPinnedMessages.ts": {
|
6875
|
+
"bytes": 2831,
|
6700
6876
|
"imports": [
|
6701
6877
|
{
|
6702
6878
|
"path": "react",
|
@@ -6714,7 +6890,7 @@
|
|
6714
6890
|
"original": "../Toast/ToastManager"
|
6715
6891
|
},
|
6716
6892
|
{
|
6717
|
-
"path": "src/Prebuilt/common/constants.
|
6893
|
+
"path": "src/Prebuilt/common/constants.ts",
|
6718
6894
|
"kind": "import-statement",
|
6719
6895
|
"original": "../../common/constants"
|
6720
6896
|
},
|
@@ -6748,7 +6924,7 @@
|
|
6748
6924
|
"format": "esm"
|
6749
6925
|
},
|
6750
6926
|
"src/Prebuilt/components/Chat/ChatBody.jsx": {
|
6751
|
-
"bytes":
|
6927
|
+
"bytes": 19526,
|
6752
6928
|
"imports": [
|
6753
6929
|
{
|
6754
6930
|
"path": "react",
|
@@ -6800,6 +6976,11 @@
|
|
6800
6976
|
"kind": "import-statement",
|
6801
6977
|
"original": "../../../Layout"
|
6802
6978
|
},
|
6979
|
+
{
|
6980
|
+
"path": "src/Sheet/index.ts",
|
6981
|
+
"kind": "import-statement",
|
6982
|
+
"original": "../../../Sheet"
|
6983
|
+
},
|
6803
6984
|
{
|
6804
6985
|
"path": "src/Text/index.tsx",
|
6805
6986
|
"kind": "import-statement",
|
@@ -6820,21 +7001,41 @@
|
|
6820
7001
|
"kind": "import-statement",
|
6821
7002
|
"original": "../../images/empty-chat.svg"
|
6822
7003
|
},
|
7004
|
+
{
|
7005
|
+
"path": "src/Prebuilt/components/Toast/ToastManager.js",
|
7006
|
+
"kind": "import-statement",
|
7007
|
+
"original": "../Toast/ToastManager"
|
7008
|
+
},
|
7009
|
+
{
|
7010
|
+
"path": "src/Prebuilt/components/Chat/MwebChatOption.tsx",
|
7011
|
+
"kind": "import-statement",
|
7012
|
+
"original": "./MwebChatOption"
|
7013
|
+
},
|
6823
7014
|
{
|
6824
7015
|
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
6825
7016
|
"kind": "import-statement",
|
6826
7017
|
"original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
6827
7018
|
},
|
6828
7019
|
{
|
6829
|
-
"path": "src/Prebuilt/components/hooks/
|
7020
|
+
"path": "src/Prebuilt/components/hooks/useChatBlacklist.ts",
|
7021
|
+
"kind": "import-statement",
|
7022
|
+
"original": "../hooks/useChatBlacklist"
|
7023
|
+
},
|
7024
|
+
{
|
7025
|
+
"path": "src/Prebuilt/components/hooks/useSetPinnedMessages.ts",
|
6830
7026
|
"kind": "import-statement",
|
6831
|
-
"original": "../hooks/
|
7027
|
+
"original": "../hooks/useSetPinnedMessages"
|
6832
7028
|
},
|
6833
7029
|
{
|
6834
7030
|
"path": "src/Prebuilt/components/Chat/useUnreadCount.js",
|
6835
7031
|
"kind": "import-statement",
|
6836
7032
|
"original": "./useUnreadCount"
|
6837
7033
|
},
|
7034
|
+
{
|
7035
|
+
"path": "src/Prebuilt/common/constants.ts",
|
7036
|
+
"kind": "import-statement",
|
7037
|
+
"original": "../../common/constants"
|
7038
|
+
},
|
6838
7039
|
{
|
6839
7040
|
"path": "<define:process.env>",
|
6840
7041
|
"kind": "import-statement",
|
@@ -6862,7 +7063,7 @@
|
|
6862
7063
|
"external": true
|
6863
7064
|
},
|
6864
7065
|
{
|
6865
|
-
"path": "src/Prebuilt/common/constants.
|
7066
|
+
"path": "src/Prebuilt/common/constants.ts",
|
6866
7067
|
"kind": "import-statement",
|
6867
7068
|
"original": "../../common/constants"
|
6868
7069
|
},
|
@@ -6891,7 +7092,7 @@
|
|
6891
7092
|
"format": "esm"
|
6892
7093
|
},
|
6893
7094
|
"src/Prebuilt/components/Chat/ChatFooter.tsx": {
|
6894
|
-
"bytes":
|
7095
|
+
"bytes": 7746,
|
6895
7096
|
"imports": [
|
6896
7097
|
{
|
6897
7098
|
"path": "react",
|
@@ -6928,6 +7129,11 @@
|
|
6928
7129
|
"kind": "import-statement",
|
6929
7130
|
"original": "../../.."
|
6930
7131
|
},
|
7132
|
+
{
|
7133
|
+
"path": "src/IconButton/index.tsx",
|
7134
|
+
"kind": "import-statement",
|
7135
|
+
"original": "../../../IconButton"
|
7136
|
+
},
|
6931
7137
|
{
|
6932
7138
|
"path": "src/Prebuilt/components/Toast/ToastManager.js",
|
6933
7139
|
"kind": "import-statement",
|
@@ -6948,6 +7154,11 @@
|
|
6948
7154
|
"kind": "import-statement",
|
6949
7155
|
"original": "./useEmojiPickerStyles"
|
6950
7156
|
},
|
7157
|
+
{
|
7158
|
+
"path": "src/Prebuilt/common/constants.ts",
|
7159
|
+
"kind": "import-statement",
|
7160
|
+
"original": "../../common/constants"
|
7161
|
+
},
|
6951
7162
|
{
|
6952
7163
|
"path": "<define:process.env>",
|
6953
7164
|
"kind": "import-statement",
|
@@ -6961,29 +7172,19 @@
|
|
6961
7172
|
],
|
6962
7173
|
"format": "esm"
|
6963
7174
|
},
|
6964
|
-
"src/Prebuilt/components/Chat/
|
6965
|
-
"bytes":
|
7175
|
+
"src/Prebuilt/components/Chat/ChatStates.jsx": {
|
7176
|
+
"bytes": 2264,
|
6966
7177
|
"imports": [
|
6967
7178
|
{
|
6968
7179
|
"path": "react",
|
6969
7180
|
"kind": "import-statement",
|
6970
7181
|
"external": true
|
6971
7182
|
},
|
6972
|
-
{
|
6973
|
-
"path": "react-use",
|
6974
|
-
"kind": "import-statement",
|
6975
|
-
"external": true
|
6976
|
-
},
|
6977
7183
|
{
|
6978
7184
|
"path": "@100mslive/react-sdk",
|
6979
7185
|
"kind": "import-statement",
|
6980
7186
|
"external": true
|
6981
7187
|
},
|
6982
|
-
{
|
6983
|
-
"path": "@100mslive/react-icons",
|
6984
|
-
"kind": "import-statement",
|
6985
|
-
"external": true
|
6986
|
-
},
|
6987
7188
|
{
|
6988
7189
|
"path": "src/Button/index.tsx",
|
6989
7190
|
"kind": "import-statement",
|
@@ -6999,43 +7200,211 @@
|
|
6999
7200
|
"kind": "import-statement",
|
7000
7201
|
"original": "../../../Text"
|
7001
7202
|
},
|
7002
|
-
{
|
7003
|
-
"path": "src/Theme/index.tsx",
|
7004
|
-
"kind": "import-statement",
|
7005
|
-
"original": "../../../Theme"
|
7006
|
-
},
|
7007
|
-
{
|
7008
|
-
"path": "src/Prebuilt/components/Chat/ChatBody.jsx",
|
7009
|
-
"kind": "import-statement",
|
7010
|
-
"original": "./ChatBody"
|
7011
|
-
},
|
7012
|
-
{
|
7013
|
-
"path": "src/Prebuilt/components/Chat/ChatFooter.tsx",
|
7014
|
-
"kind": "import-statement",
|
7015
|
-
"original": "./ChatFooter"
|
7016
|
-
},
|
7017
7203
|
{
|
7018
7204
|
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
7019
7205
|
"kind": "import-statement",
|
7020
7206
|
"original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
7021
7207
|
},
|
7022
7208
|
{
|
7023
|
-
"path": "src/Prebuilt/
|
7209
|
+
"path": "src/Prebuilt/common/constants.ts",
|
7024
7210
|
"kind": "import-statement",
|
7025
|
-
"original": "
|
7211
|
+
"original": "../../common/constants"
|
7026
7212
|
},
|
7027
7213
|
{
|
7028
|
-
"path": "
|
7214
|
+
"path": "<define:process.env>",
|
7029
7215
|
"kind": "import-statement",
|
7030
|
-
"
|
7216
|
+
"external": true
|
7031
7217
|
},
|
7032
7218
|
{
|
7033
|
-
"path": "
|
7219
|
+
"path": "<runtime>",
|
7034
7220
|
"kind": "import-statement",
|
7035
|
-
"
|
7221
|
+
"external": true
|
7222
|
+
}
|
7223
|
+
],
|
7224
|
+
"format": "esm"
|
7225
|
+
},
|
7226
|
+
"src/Prebuilt/components/Chat/Navigation.tsx": {
|
7227
|
+
"bytes": 1440,
|
7228
|
+
"imports": [
|
7229
|
+
{
|
7230
|
+
"path": "react",
|
7231
|
+
"kind": "import-statement",
|
7232
|
+
"external": true
|
7233
|
+
},
|
7234
|
+
{
|
7235
|
+
"path": "@100mslive/react-icons",
|
7236
|
+
"kind": "import-statement",
|
7237
|
+
"external": true
|
7238
|
+
},
|
7239
|
+
{
|
7240
|
+
"path": "src/Layout/index.tsx",
|
7241
|
+
"kind": "import-statement",
|
7242
|
+
"original": "../../../Layout"
|
7243
|
+
},
|
7244
|
+
{
|
7245
|
+
"path": "<define:process.env>",
|
7246
|
+
"kind": "import-statement",
|
7247
|
+
"external": true
|
7248
|
+
}
|
7249
|
+
],
|
7250
|
+
"format": "esm"
|
7251
|
+
},
|
7252
|
+
"src/Prebuilt/components/Chat/PinnedMessage.tsx": {
|
7253
|
+
"bytes": 4106,
|
7254
|
+
"imports": [
|
7255
|
+
{
|
7256
|
+
"path": "react",
|
7257
|
+
"kind": "import-statement",
|
7258
|
+
"external": true
|
7259
|
+
},
|
7260
|
+
{
|
7261
|
+
"path": "react-swipeable",
|
7262
|
+
"kind": "import-statement",
|
7263
|
+
"external": true
|
7264
|
+
},
|
7265
|
+
{
|
7266
|
+
"path": "react-use",
|
7267
|
+
"kind": "import-statement",
|
7268
|
+
"external": true
|
7269
|
+
},
|
7270
|
+
{
|
7271
|
+
"path": "@100mslive/react-sdk",
|
7272
|
+
"kind": "import-statement",
|
7273
|
+
"external": true
|
7274
|
+
},
|
7275
|
+
{
|
7276
|
+
"path": "@100mslive/react-icons",
|
7277
|
+
"kind": "import-statement",
|
7278
|
+
"external": true
|
7279
|
+
},
|
7280
|
+
{
|
7281
|
+
"path": "src/Layout/index.tsx",
|
7282
|
+
"kind": "import-statement",
|
7283
|
+
"original": "../../../Layout"
|
7284
|
+
},
|
7285
|
+
{
|
7286
|
+
"path": "src/Text/index.tsx",
|
7287
|
+
"kind": "import-statement",
|
7288
|
+
"original": "../../../Text"
|
7289
|
+
},
|
7290
|
+
{
|
7291
|
+
"path": "src/Theme/index.tsx",
|
7292
|
+
"kind": "import-statement",
|
7293
|
+
"original": "../../../Theme"
|
7294
|
+
},
|
7295
|
+
{
|
7296
|
+
"path": "src/Prebuilt/components/Chat/ChatBody.jsx",
|
7297
|
+
"kind": "import-statement",
|
7298
|
+
"original": "./ChatBody"
|
7299
|
+
},
|
7300
|
+
{
|
7301
|
+
"path": "src/Prebuilt/components/Chat/Navigation.tsx",
|
7302
|
+
"kind": "import-statement",
|
7303
|
+
"original": "./Navigation"
|
7036
7304
|
},
|
7037
7305
|
{
|
7038
|
-
"path": "src/Prebuilt/common/constants.
|
7306
|
+
"path": "src/Prebuilt/common/constants.ts",
|
7307
|
+
"kind": "import-statement",
|
7308
|
+
"original": "../../common/constants"
|
7309
|
+
},
|
7310
|
+
{
|
7311
|
+
"path": "<define:process.env>",
|
7312
|
+
"kind": "import-statement",
|
7313
|
+
"external": true
|
7314
|
+
},
|
7315
|
+
{
|
7316
|
+
"path": "<runtime>",
|
7317
|
+
"kind": "import-statement",
|
7318
|
+
"external": true
|
7319
|
+
}
|
7320
|
+
],
|
7321
|
+
"format": "esm"
|
7322
|
+
},
|
7323
|
+
"src/Prebuilt/components/Chat/Chat.jsx": {
|
7324
|
+
"bytes": 6144,
|
7325
|
+
"imports": [
|
7326
|
+
{
|
7327
|
+
"path": "react",
|
7328
|
+
"kind": "import-statement",
|
7329
|
+
"external": true
|
7330
|
+
},
|
7331
|
+
{
|
7332
|
+
"path": "react-use",
|
7333
|
+
"kind": "import-statement",
|
7334
|
+
"external": true
|
7335
|
+
},
|
7336
|
+
{
|
7337
|
+
"path": "../hms-video-store/dist/index.js",
|
7338
|
+
"kind": "import-statement",
|
7339
|
+
"original": "@100mslive/hms-video-store"
|
7340
|
+
},
|
7341
|
+
{
|
7342
|
+
"path": "@100mslive/react-sdk",
|
7343
|
+
"kind": "import-statement",
|
7344
|
+
"external": true
|
7345
|
+
},
|
7346
|
+
{
|
7347
|
+
"path": "@100mslive/react-icons",
|
7348
|
+
"kind": "import-statement",
|
7349
|
+
"external": true
|
7350
|
+
},
|
7351
|
+
{
|
7352
|
+
"path": "src/Button/index.tsx",
|
7353
|
+
"kind": "import-statement",
|
7354
|
+
"original": "../../../Button"
|
7355
|
+
},
|
7356
|
+
{
|
7357
|
+
"path": "src/Layout/index.tsx",
|
7358
|
+
"kind": "import-statement",
|
7359
|
+
"original": "../../../Layout"
|
7360
|
+
},
|
7361
|
+
{
|
7362
|
+
"path": "src/Theme/index.tsx",
|
7363
|
+
"kind": "import-statement",
|
7364
|
+
"original": "../../../Theme"
|
7365
|
+
},
|
7366
|
+
{
|
7367
|
+
"path": "src/Prebuilt/components/Chat/ChatBody.jsx",
|
7368
|
+
"kind": "import-statement",
|
7369
|
+
"original": "./ChatBody"
|
7370
|
+
},
|
7371
|
+
{
|
7372
|
+
"path": "src/Prebuilt/components/Chat/ChatFooter.tsx",
|
7373
|
+
"kind": "import-statement",
|
7374
|
+
"original": "./ChatFooter"
|
7375
|
+
},
|
7376
|
+
{
|
7377
|
+
"path": "src/Prebuilt/components/Chat/ChatStates.jsx",
|
7378
|
+
"kind": "import-statement",
|
7379
|
+
"original": "./ChatStates"
|
7380
|
+
},
|
7381
|
+
{
|
7382
|
+
"path": "src/Prebuilt/components/Chat/PinnedMessage.tsx",
|
7383
|
+
"kind": "import-statement",
|
7384
|
+
"original": "./PinnedMessage"
|
7385
|
+
},
|
7386
|
+
{
|
7387
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
7388
|
+
"kind": "import-statement",
|
7389
|
+
"original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
7390
|
+
},
|
7391
|
+
{
|
7392
|
+
"path": "src/Prebuilt/components/AppData/useUISettings.js",
|
7393
|
+
"kind": "import-statement",
|
7394
|
+
"original": "../AppData/useUISettings"
|
7395
|
+
},
|
7396
|
+
{
|
7397
|
+
"path": "src/Prebuilt/components/hooks/useSetPinnedMessages.ts",
|
7398
|
+
"kind": "import-statement",
|
7399
|
+
"original": "../hooks/useSetPinnedMessages"
|
7400
|
+
},
|
7401
|
+
{
|
7402
|
+
"path": "src/Prebuilt/components/Chat/useUnreadCount.js",
|
7403
|
+
"kind": "import-statement",
|
7404
|
+
"original": "./useUnreadCount"
|
7405
|
+
},
|
7406
|
+
{
|
7407
|
+
"path": "src/Prebuilt/common/constants.ts",
|
7039
7408
|
"kind": "import-statement",
|
7040
7409
|
"original": "../../common/constants"
|
7041
7410
|
},
|
@@ -7129,7 +7498,7 @@
|
|
7129
7498
|
"format": "esm"
|
7130
7499
|
},
|
7131
7500
|
"src/Prebuilt/components/SidePaneTabs.tsx": {
|
7132
|
-
"bytes":
|
7501
|
+
"bytes": 6769,
|
7133
7502
|
"imports": [
|
7134
7503
|
{
|
7135
7504
|
"path": "react",
|
@@ -7197,7 +7566,7 @@
|
|
7197
7566
|
"original": "../common/utils"
|
7198
7567
|
},
|
7199
7568
|
{
|
7200
|
-
"path": "src/Prebuilt/common/constants.
|
7569
|
+
"path": "src/Prebuilt/common/constants.ts",
|
7201
7570
|
"kind": "import-statement",
|
7202
7571
|
"original": "../common/constants"
|
7203
7572
|
},
|
@@ -7314,7 +7683,7 @@
|
|
7314
7683
|
"original": "../hooks/useDropdownSelection"
|
7315
7684
|
},
|
7316
7685
|
{
|
7317
|
-
"path": "src/Prebuilt/common/constants.
|
7686
|
+
"path": "src/Prebuilt/common/constants.ts",
|
7318
7687
|
"kind": "import-statement",
|
7319
7688
|
"original": "../../common/constants"
|
7320
7689
|
},
|
@@ -7502,7 +7871,7 @@
|
|
7502
7871
|
"original": "../common/utils"
|
7503
7872
|
},
|
7504
7873
|
{
|
7505
|
-
"path": "src/Prebuilt/common/constants.
|
7874
|
+
"path": "src/Prebuilt/common/constants.ts",
|
7506
7875
|
"kind": "import-statement",
|
7507
7876
|
"original": "../common/constants"
|
7508
7877
|
},
|
@@ -7551,13 +7920,18 @@
|
|
7551
7920
|
"format": "esm"
|
7552
7921
|
},
|
7553
7922
|
"src/Prebuilt/components/VirtualBackground/VBCollection.tsx": {
|
7554
|
-
"bytes":
|
7923
|
+
"bytes": 1530,
|
7555
7924
|
"imports": [
|
7556
7925
|
{
|
7557
7926
|
"path": "react",
|
7558
7927
|
"kind": "import-statement",
|
7559
7928
|
"external": true
|
7560
7929
|
},
|
7930
|
+
{
|
7931
|
+
"path": "@100mslive/hms-virtual-background",
|
7932
|
+
"kind": "import-statement",
|
7933
|
+
"external": true
|
7934
|
+
},
|
7561
7935
|
{
|
7562
7936
|
"path": "src/Layout/index.tsx",
|
7563
7937
|
"kind": "import-statement",
|
@@ -7574,31 +7948,52 @@
|
|
7574
7948
|
"original": "./VBOption"
|
7575
7949
|
},
|
7576
7950
|
{
|
7577
|
-
"path": "
|
7951
|
+
"path": "<define:process.env>",
|
7578
7952
|
"kind": "import-statement",
|
7579
|
-
"
|
7953
|
+
"external": true
|
7580
7954
|
},
|
7581
7955
|
{
|
7582
|
-
"path": "<
|
7956
|
+
"path": "<runtime>",
|
7957
|
+
"kind": "import-statement",
|
7958
|
+
"external": true
|
7959
|
+
}
|
7960
|
+
],
|
7961
|
+
"format": "esm"
|
7962
|
+
},
|
7963
|
+
"src/Prebuilt/components/VirtualBackground/constants.ts": {
|
7964
|
+
"bytes": 895,
|
7965
|
+
"imports": [
|
7966
|
+
{
|
7967
|
+
"path": "@100mslive/hms-virtual-background",
|
7583
7968
|
"kind": "import-statement",
|
7584
7969
|
"external": true
|
7585
7970
|
},
|
7586
7971
|
{
|
7587
|
-
"path": "<
|
7972
|
+
"path": "<define:process.env>",
|
7588
7973
|
"kind": "import-statement",
|
7589
7974
|
"external": true
|
7590
7975
|
}
|
7591
7976
|
],
|
7592
7977
|
"format": "esm"
|
7593
7978
|
},
|
7594
|
-
"src/Prebuilt/components/VirtualBackground/VBPicker.
|
7595
|
-
"bytes":
|
7979
|
+
"src/Prebuilt/components/VirtualBackground/VBPicker.tsx": {
|
7980
|
+
"bytes": 6309,
|
7596
7981
|
"imports": [
|
7597
7982
|
{
|
7598
7983
|
"path": "react",
|
7599
7984
|
"kind": "import-statement",
|
7600
7985
|
"external": true
|
7601
7986
|
},
|
7987
|
+
{
|
7988
|
+
"path": "@100mslive/hms-virtual-background",
|
7989
|
+
"kind": "import-statement",
|
7990
|
+
"external": true
|
7991
|
+
},
|
7992
|
+
{
|
7993
|
+
"path": "@100mslive/types-prebuilt/elements/virtual_background",
|
7994
|
+
"kind": "import-statement",
|
7995
|
+
"external": true
|
7996
|
+
},
|
7602
7997
|
{
|
7603
7998
|
"path": "@100mslive/react-sdk",
|
7604
7999
|
"kind": "import-statement",
|
@@ -7635,7 +8030,7 @@
|
|
7635
8030
|
"original": "../AppData/useUISettings"
|
7636
8031
|
},
|
7637
8032
|
{
|
7638
|
-
"path": "src/Prebuilt/common/constants.
|
8033
|
+
"path": "src/Prebuilt/common/constants.ts",
|
7639
8034
|
"kind": "import-statement",
|
7640
8035
|
"original": "../../common/constants"
|
7641
8036
|
},
|
@@ -7658,7 +8053,7 @@
|
|
7658
8053
|
"format": "esm"
|
7659
8054
|
},
|
7660
8055
|
"src/Prebuilt/layouts/SidePane.tsx": {
|
7661
|
-
"bytes":
|
8056
|
+
"bytes": 4510,
|
7662
8057
|
"imports": [
|
7663
8058
|
{
|
7664
8059
|
"path": "react",
|
@@ -7701,7 +8096,7 @@
|
|
7701
8096
|
"original": "../components/VideoTile"
|
7702
8097
|
},
|
7703
8098
|
{
|
7704
|
-
"path": "src/Prebuilt/components/VirtualBackground/VBPicker.
|
8099
|
+
"path": "src/Prebuilt/components/VirtualBackground/VBPicker.tsx",
|
7705
8100
|
"kind": "import-statement",
|
7706
8101
|
"original": "../components/VirtualBackground/VBPicker"
|
7707
8102
|
},
|
@@ -7731,7 +8126,7 @@
|
|
7731
8126
|
"original": "../../utils"
|
7732
8127
|
},
|
7733
8128
|
{
|
7734
|
-
"path": "src/Prebuilt/common/constants.
|
8129
|
+
"path": "src/Prebuilt/common/constants.ts",
|
7735
8130
|
"kind": "import-statement",
|
7736
8131
|
"original": "../common/constants"
|
7737
8132
|
},
|
@@ -7913,7 +8308,7 @@
|
|
7913
8308
|
"format": "esm"
|
7914
8309
|
},
|
7915
8310
|
"src/Prebuilt/components/Preview/PreviewJoin.tsx": {
|
7916
|
-
"bytes":
|
8311
|
+
"bytes": 10187,
|
7917
8312
|
"imports": [
|
7918
8313
|
{
|
7919
8314
|
"path": "react",
|
@@ -7960,11 +8355,6 @@
|
|
7960
8355
|
"kind": "import-statement",
|
7961
8356
|
"original": "../../layouts/SidePane"
|
7962
8357
|
},
|
7963
|
-
{
|
7964
|
-
"path": "src/Prebuilt/provider/roomLayoutProvider/index.tsx",
|
7965
|
-
"kind": "import-statement",
|
7966
|
-
"original": "../../provider/roomLayoutProvider"
|
7967
|
-
},
|
7968
8358
|
{
|
7969
8359
|
"path": "src/Prebuilt/components/AudioVideoToggle.jsx",
|
7970
8360
|
"kind": "import-statement",
|
@@ -8005,6 +8395,11 @@
|
|
8005
8395
|
"kind": "import-statement",
|
8006
8396
|
"original": "./PreviewForm"
|
8007
8397
|
},
|
8398
|
+
{
|
8399
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
8400
|
+
"kind": "import-statement",
|
8401
|
+
"original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
8402
|
+
},
|
8008
8403
|
{
|
8009
8404
|
"path": "src/Prebuilt/components/AppData/useUISettings.js",
|
8010
8405
|
"kind": "import-statement",
|
@@ -8021,7 +8416,7 @@
|
|
8021
8416
|
"original": "../../common/utils"
|
8022
8417
|
},
|
8023
8418
|
{
|
8024
|
-
"path": "src/Prebuilt/common/constants.
|
8419
|
+
"path": "src/Prebuilt/common/constants.ts",
|
8025
8420
|
"kind": "import-statement",
|
8026
8421
|
"original": "../../common/constants"
|
8027
8422
|
},
|
@@ -8070,7 +8465,7 @@
|
|
8070
8465
|
"format": "esm"
|
8071
8466
|
},
|
8072
8467
|
"src/Prebuilt/components/RoleChangeRequest/RoleChangeRequestModal.tsx": {
|
8073
|
-
"bytes":
|
8468
|
+
"bytes": 2851,
|
8074
8469
|
"imports": [
|
8075
8470
|
{
|
8076
8471
|
"path": "react",
|
@@ -8097,16 +8492,93 @@
|
|
8097
8492
|
"kind": "import-statement",
|
8098
8493
|
"original": "./RequestPrompt"
|
8099
8494
|
},
|
8495
|
+
{
|
8496
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
8497
|
+
"kind": "import-statement",
|
8498
|
+
"original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
8499
|
+
},
|
8100
8500
|
{
|
8101
8501
|
"path": "src/Prebuilt/components/hooks/useMetadata.jsx",
|
8102
8502
|
"kind": "import-statement",
|
8103
8503
|
"original": "../hooks/useMetadata"
|
8104
8504
|
},
|
8105
8505
|
{
|
8106
|
-
"path": "src/Prebuilt/common/constants.
|
8506
|
+
"path": "src/Prebuilt/common/constants.ts",
|
8507
|
+
"kind": "import-statement",
|
8508
|
+
"original": "../../common/constants"
|
8509
|
+
},
|
8510
|
+
{
|
8511
|
+
"path": "<define:process.env>",
|
8512
|
+
"kind": "import-statement",
|
8513
|
+
"external": true
|
8514
|
+
},
|
8515
|
+
{
|
8516
|
+
"path": "<runtime>",
|
8517
|
+
"kind": "import-statement",
|
8518
|
+
"external": true
|
8519
|
+
}
|
8520
|
+
],
|
8521
|
+
"format": "esm"
|
8522
|
+
},
|
8523
|
+
"src/Prebuilt/components/Toast/ToastConfig.jsx": {
|
8524
|
+
"bytes": 5527,
|
8525
|
+
"imports": [
|
8526
|
+
{
|
8527
|
+
"path": "react",
|
8528
|
+
"kind": "import-statement",
|
8529
|
+
"external": true
|
8530
|
+
},
|
8531
|
+
{
|
8532
|
+
"path": "@100mslive/react-sdk",
|
8533
|
+
"kind": "import-statement",
|
8534
|
+
"external": true
|
8535
|
+
},
|
8536
|
+
{
|
8537
|
+
"path": "@100mslive/react-icons",
|
8538
|
+
"kind": "import-statement",
|
8539
|
+
"external": true
|
8540
|
+
},
|
8541
|
+
{
|
8542
|
+
"path": "src/Button/index.tsx",
|
8543
|
+
"kind": "import-statement",
|
8544
|
+
"original": "../../../Button"
|
8545
|
+
},
|
8546
|
+
{
|
8547
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/index.tsx",
|
8548
|
+
"kind": "import-statement",
|
8549
|
+
"original": "../../provider/roomLayoutProvider"
|
8550
|
+
},
|
8551
|
+
{
|
8552
|
+
"path": "src/Prebuilt/components/AppData/useSidepane.js",
|
8553
|
+
"kind": "import-statement",
|
8554
|
+
"original": "../AppData/useSidepane"
|
8555
|
+
},
|
8556
|
+
{
|
8557
|
+
"path": "src/Prebuilt/common/constants.ts",
|
8107
8558
|
"kind": "import-statement",
|
8108
8559
|
"original": "../../common/constants"
|
8109
8560
|
},
|
8561
|
+
{
|
8562
|
+
"path": "<define:process.env>",
|
8563
|
+
"kind": "import-statement",
|
8564
|
+
"external": true
|
8565
|
+
}
|
8566
|
+
],
|
8567
|
+
"format": "esm"
|
8568
|
+
},
|
8569
|
+
"src/Prebuilt/components/Toast/ToastBatcher.js": {
|
8570
|
+
"bytes": 1839,
|
8571
|
+
"imports": [
|
8572
|
+
{
|
8573
|
+
"path": "src/Prebuilt/components/Toast/ToastConfig.jsx",
|
8574
|
+
"kind": "import-statement",
|
8575
|
+
"original": "./ToastConfig"
|
8576
|
+
},
|
8577
|
+
{
|
8578
|
+
"path": "src/Prebuilt/components/Toast/ToastManager.js",
|
8579
|
+
"kind": "import-statement",
|
8580
|
+
"original": "./ToastManager"
|
8581
|
+
},
|
8110
8582
|
{
|
8111
8583
|
"path": "<define:process.env>",
|
8112
8584
|
"kind": "import-statement",
|
@@ -8205,7 +8677,7 @@
|
|
8205
8677
|
"original": "./hooks/useVideoTileLayout"
|
8206
8678
|
},
|
8207
8679
|
{
|
8208
|
-
"path": "src/Prebuilt/common/constants.
|
8680
|
+
"path": "src/Prebuilt/common/constants.ts",
|
8209
8681
|
"kind": "import-statement",
|
8210
8682
|
"original": "../common/constants"
|
8211
8683
|
},
|
@@ -8379,7 +8851,7 @@
|
|
8379
8851
|
"original": "../hooks/useTileLayout"
|
8380
8852
|
},
|
8381
8853
|
{
|
8382
|
-
"path": "src/Prebuilt/common/constants.
|
8854
|
+
"path": "src/Prebuilt/common/constants.ts",
|
8383
8855
|
"kind": "import-statement",
|
8384
8856
|
"original": "../../common/constants"
|
8385
8857
|
},
|
@@ -8680,7 +9152,7 @@
|
|
8680
9152
|
"original": "./AppData/useUISettings"
|
8681
9153
|
},
|
8682
9154
|
{
|
8683
|
-
"path": "src/Prebuilt/common/constants.
|
9155
|
+
"path": "src/Prebuilt/common/constants.ts",
|
8684
9156
|
"kind": "import-statement",
|
8685
9157
|
"original": "../common/constants"
|
8686
9158
|
},
|
@@ -8746,7 +9218,7 @@
|
|
8746
9218
|
"original": "../AppData/useUISettings"
|
8747
9219
|
},
|
8748
9220
|
{
|
8749
|
-
"path": "src/Prebuilt/common/constants.
|
9221
|
+
"path": "src/Prebuilt/common/constants.ts",
|
8750
9222
|
"kind": "import-statement",
|
8751
9223
|
"original": "../../common/constants"
|
8752
9224
|
},
|
@@ -8869,7 +9341,7 @@
|
|
8869
9341
|
"original": "../components/AppData/useUISettings"
|
8870
9342
|
},
|
8871
9343
|
{
|
8872
|
-
"path": "src/Prebuilt/common/constants.
|
9344
|
+
"path": "src/Prebuilt/common/constants.ts",
|
8873
9345
|
"kind": "import-statement",
|
8874
9346
|
"original": "../common/constants"
|
8875
9347
|
},
|
@@ -9369,7 +9841,7 @@
|
|
9369
9841
|
"original": "../../Tooltip"
|
9370
9842
|
},
|
9371
9843
|
{
|
9372
|
-
"path": "src/Prebuilt/common/constants.
|
9844
|
+
"path": "src/Prebuilt/common/constants.ts",
|
9373
9845
|
"kind": "import-statement",
|
9374
9846
|
"original": "../common/constants"
|
9375
9847
|
},
|
@@ -9387,7 +9859,7 @@
|
|
9387
9859
|
"format": "esm"
|
9388
9860
|
},
|
9389
9861
|
"src/Prebuilt/layouts/VideoStreamingSection.tsx": {
|
9390
|
-
"bytes":
|
9862
|
+
"bytes": 4062,
|
9391
9863
|
"imports": [
|
9392
9864
|
{
|
9393
9865
|
"path": "react",
|
@@ -9399,6 +9871,11 @@
|
|
9399
9871
|
"kind": "import-statement",
|
9400
9872
|
"external": true
|
9401
9873
|
},
|
9874
|
+
{
|
9875
|
+
"path": "uuid",
|
9876
|
+
"kind": "import-statement",
|
9877
|
+
"external": true
|
9878
|
+
},
|
9402
9879
|
{
|
9403
9880
|
"path": "@100mslive/react-sdk",
|
9404
9881
|
"kind": "import-statement",
|
@@ -9409,6 +9886,11 @@
|
|
9409
9886
|
"kind": "import-statement",
|
9410
9887
|
"original": "../components/FullPageProgress"
|
9411
9888
|
},
|
9889
|
+
{
|
9890
|
+
"path": "src/Prebuilt/components/Toast/ToastBatcher.js",
|
9891
|
+
"kind": "import-statement",
|
9892
|
+
"original": "../components/Toast/ToastBatcher"
|
9893
|
+
},
|
9412
9894
|
{
|
9413
9895
|
"path": "src/Prebuilt/components/VideoLayouts/GridLayout.tsx",
|
9414
9896
|
"kind": "import-statement",
|
@@ -9445,7 +9927,7 @@
|
|
9445
9927
|
"original": "../components/AppData/useUISettings"
|
9446
9928
|
},
|
9447
9929
|
{
|
9448
|
-
"path": "src/Prebuilt/common/constants.
|
9930
|
+
"path": "src/Prebuilt/common/constants.ts",
|
9449
9931
|
"kind": "import-statement",
|
9450
9932
|
"original": "../common/constants"
|
9451
9933
|
},
|
@@ -9468,7 +9950,7 @@
|
|
9468
9950
|
"format": "esm"
|
9469
9951
|
},
|
9470
9952
|
"src/Prebuilt/components/Header/common.jsx": {
|
9471
|
-
"bytes":
|
9953
|
+
"bytes": 5673,
|
9472
9954
|
"imports": [
|
9473
9955
|
{
|
9474
9956
|
"path": "react",
|
@@ -9674,7 +10156,7 @@
|
|
9674
10156
|
"original": "./AppData/useUISettings"
|
9675
10157
|
},
|
9676
10158
|
{
|
9677
|
-
"path": "src/Prebuilt/common/constants.
|
10159
|
+
"path": "src/Prebuilt/common/constants.ts",
|
9678
10160
|
"kind": "import-statement",
|
9679
10161
|
"original": "../common/constants"
|
9680
10162
|
},
|
@@ -9772,7 +10254,7 @@
|
|
9772
10254
|
"external": true
|
9773
10255
|
},
|
9774
10256
|
{
|
9775
|
-
"path": "src/Prebuilt/common/constants.
|
10257
|
+
"path": "src/Prebuilt/common/constants.ts",
|
9776
10258
|
"kind": "import-statement",
|
9777
10259
|
"original": "../../common/constants"
|
9778
10260
|
},
|
@@ -9983,78 +10465,6 @@
|
|
9983
10465
|
],
|
9984
10466
|
"format": "esm"
|
9985
10467
|
},
|
9986
|
-
"src/Prebuilt/components/Toast/ToastConfig.jsx": {
|
9987
|
-
"bytes": 5100,
|
9988
|
-
"imports": [
|
9989
|
-
{
|
9990
|
-
"path": "react",
|
9991
|
-
"kind": "import-statement",
|
9992
|
-
"external": true
|
9993
|
-
},
|
9994
|
-
{
|
9995
|
-
"path": "@100mslive/react-sdk",
|
9996
|
-
"kind": "import-statement",
|
9997
|
-
"external": true
|
9998
|
-
},
|
9999
|
-
{
|
10000
|
-
"path": "@100mslive/react-icons",
|
10001
|
-
"kind": "import-statement",
|
10002
|
-
"external": true
|
10003
|
-
},
|
10004
|
-
{
|
10005
|
-
"path": "src/Button/index.tsx",
|
10006
|
-
"kind": "import-statement",
|
10007
|
-
"original": "../../../Button"
|
10008
|
-
},
|
10009
|
-
{
|
10010
|
-
"path": "src/Prebuilt/provider/roomLayoutProvider/index.tsx",
|
10011
|
-
"kind": "import-statement",
|
10012
|
-
"original": "../../provider/roomLayoutProvider"
|
10013
|
-
},
|
10014
|
-
{
|
10015
|
-
"path": "src/Prebuilt/components/AppData/useSidepane.js",
|
10016
|
-
"kind": "import-statement",
|
10017
|
-
"original": "../AppData/useSidepane"
|
10018
|
-
},
|
10019
|
-
{
|
10020
|
-
"path": "src/Prebuilt/common/constants.js",
|
10021
|
-
"kind": "import-statement",
|
10022
|
-
"original": "../../common/constants"
|
10023
|
-
},
|
10024
|
-
{
|
10025
|
-
"path": "<define:process.env>",
|
10026
|
-
"kind": "import-statement",
|
10027
|
-
"external": true
|
10028
|
-
}
|
10029
|
-
],
|
10030
|
-
"format": "esm"
|
10031
|
-
},
|
10032
|
-
"src/Prebuilt/components/Toast/ToastBatcher.js": {
|
10033
|
-
"bytes": 1839,
|
10034
|
-
"imports": [
|
10035
|
-
{
|
10036
|
-
"path": "src/Prebuilt/components/Toast/ToastConfig.jsx",
|
10037
|
-
"kind": "import-statement",
|
10038
|
-
"original": "./ToastConfig"
|
10039
|
-
},
|
10040
|
-
{
|
10041
|
-
"path": "src/Prebuilt/components/Toast/ToastManager.js",
|
10042
|
-
"kind": "import-statement",
|
10043
|
-
"original": "./ToastManager"
|
10044
|
-
},
|
10045
|
-
{
|
10046
|
-
"path": "<define:process.env>",
|
10047
|
-
"kind": "import-statement",
|
10048
|
-
"external": true
|
10049
|
-
},
|
10050
|
-
{
|
10051
|
-
"path": "<runtime>",
|
10052
|
-
"kind": "import-statement",
|
10053
|
-
"external": true
|
10054
|
-
}
|
10055
|
-
],
|
10056
|
-
"format": "esm"
|
10057
|
-
},
|
10058
10468
|
"src/Prebuilt/components/Notifications/AutoplayBlockedModal.tsx": {
|
10059
10469
|
"bytes": 1095,
|
10060
10470
|
"imports": [
|
@@ -10141,7 +10551,7 @@
|
|
10141
10551
|
"original": "../AppData/useUISettings"
|
10142
10552
|
},
|
10143
10553
|
{
|
10144
|
-
"path": "src/Prebuilt/common/constants.
|
10554
|
+
"path": "src/Prebuilt/common/constants.ts",
|
10145
10555
|
"kind": "import-statement",
|
10146
10556
|
"original": "../../common/constants"
|
10147
10557
|
},
|
@@ -10195,7 +10605,7 @@
|
|
10195
10605
|
"original": "../../images/ios-perm-0.png"
|
10196
10606
|
},
|
10197
10607
|
{
|
10198
|
-
"path": "src/Prebuilt/common/constants.
|
10608
|
+
"path": "src/Prebuilt/common/constants.ts",
|
10199
10609
|
"kind": "import-statement",
|
10200
10610
|
"original": "../../common/constants"
|
10201
10611
|
},
|
@@ -10415,7 +10825,7 @@
|
|
10415
10825
|
"original": "../../common/utils"
|
10416
10826
|
},
|
10417
10827
|
{
|
10418
|
-
"path": "src/Prebuilt/common/constants.
|
10828
|
+
"path": "src/Prebuilt/common/constants.ts",
|
10419
10829
|
"kind": "import-statement",
|
10420
10830
|
"original": "../../common/constants"
|
10421
10831
|
},
|
@@ -10492,7 +10902,7 @@
|
|
10492
10902
|
"original": "../AppData/useUISettings"
|
10493
10903
|
},
|
10494
10904
|
{
|
10495
|
-
"path": "src/Prebuilt/common/constants.
|
10905
|
+
"path": "src/Prebuilt/common/constants.ts",
|
10496
10906
|
"kind": "import-statement",
|
10497
10907
|
"original": "../../common/constants"
|
10498
10908
|
},
|
@@ -10559,7 +10969,7 @@
|
|
10559
10969
|
"original": "./ToastManager"
|
10560
10970
|
},
|
10561
10971
|
{
|
10562
|
-
"path": "src/Prebuilt/common/constants.
|
10972
|
+
"path": "src/Prebuilt/common/constants.ts",
|
10563
10973
|
"kind": "import-statement",
|
10564
10974
|
"original": "../../common/constants"
|
10565
10975
|
},
|
@@ -10610,7 +11020,7 @@
|
|
10610
11020
|
"original": "../../Theme"
|
10611
11021
|
},
|
10612
11022
|
{
|
10613
|
-
"path": "src/Prebuilt/common/constants.
|
11023
|
+
"path": "src/Prebuilt/common/constants.ts",
|
10614
11024
|
"kind": "import-statement",
|
10615
11025
|
"original": "../common/constants"
|
10616
11026
|
},
|
@@ -10636,7 +11046,7 @@
|
|
10636
11046
|
"external": true
|
10637
11047
|
},
|
10638
11048
|
{
|
10639
|
-
"path": "src/Prebuilt/common/constants.
|
11049
|
+
"path": "src/Prebuilt/common/constants.ts",
|
10640
11050
|
"kind": "import-statement",
|
10641
11051
|
"original": "../common/constants"
|
10642
11052
|
},
|
@@ -10654,7 +11064,7 @@
|
|
10654
11064
|
"format": "esm"
|
10655
11065
|
},
|
10656
11066
|
"src/Prebuilt/components/hooks/useAutoStartStreaming.tsx": {
|
10657
|
-
"bytes":
|
11067
|
+
"bytes": 2042,
|
10658
11068
|
"imports": [
|
10659
11069
|
{
|
10660
11070
|
"path": "react",
|
@@ -10677,7 +11087,7 @@
|
|
10677
11087
|
"original": "../../common/hooks"
|
10678
11088
|
},
|
10679
11089
|
{
|
10680
|
-
"path": "src/Prebuilt/common/constants.
|
11090
|
+
"path": "src/Prebuilt/common/constants.ts",
|
10681
11091
|
"kind": "import-statement",
|
10682
11092
|
"original": "../../common/constants"
|
10683
11093
|
},
|
@@ -10695,7 +11105,7 @@
|
|
10695
11105
|
"format": "esm"
|
10696
11106
|
},
|
10697
11107
|
"src/Prebuilt/App.tsx": {
|
10698
|
-
"bytes":
|
11108
|
+
"bytes": 10297,
|
10699
11109
|
"imports": [
|
10700
11110
|
{
|
10701
11111
|
"path": "react",
|
@@ -10718,7 +11128,7 @@
|
|
10718
11128
|
"external": true
|
10719
11129
|
},
|
10720
11130
|
{
|
10721
|
-
"path": "src/Prebuilt/components/AppData/AppData.
|
11131
|
+
"path": "src/Prebuilt/components/AppData/AppData.tsx",
|
10722
11132
|
"kind": "import-statement",
|
10723
11133
|
"original": "./components/AppData/AppData"
|
10724
11134
|
},
|
@@ -10833,7 +11243,7 @@
|
|
10833
11243
|
"original": "./services/FeatureFlags"
|
10834
11244
|
},
|
10835
11245
|
{
|
10836
|
-
"path": "src/Prebuilt/common/constants.
|
11246
|
+
"path": "src/Prebuilt/common/constants.ts",
|
10837
11247
|
"kind": "import-statement",
|
10838
11248
|
"original": "./common/constants"
|
10839
11249
|
},
|
@@ -11099,7 +11509,7 @@
|
|
11099
11509
|
"imports": [],
|
11100
11510
|
"exports": [],
|
11101
11511
|
"inputs": {},
|
11102
|
-
"bytes":
|
11512
|
+
"bytes": 2286004
|
11103
11513
|
},
|
11104
11514
|
"dist/index.cjs.js": {
|
11105
11515
|
"imports": [
|
@@ -11118,11 +11528,6 @@
|
|
11118
11528
|
"kind": "require-call",
|
11119
11529
|
"external": true
|
11120
11530
|
},
|
11121
|
-
{
|
11122
|
-
"path": "uuid",
|
11123
|
-
"kind": "require-call",
|
11124
|
-
"external": true
|
11125
|
-
},
|
11126
11531
|
{
|
11127
11532
|
"path": "react",
|
11128
11533
|
"kind": "require-call",
|
@@ -11413,11 +11818,6 @@
|
|
11413
11818
|
"kind": "require-call",
|
11414
11819
|
"external": true
|
11415
11820
|
},
|
11416
|
-
{
|
11417
|
-
"path": "@100mslive/hms-virtual-background",
|
11418
|
-
"kind": "require-call",
|
11419
|
-
"external": true
|
11420
|
-
},
|
11421
11821
|
{
|
11422
11822
|
"path": "react",
|
11423
11823
|
"kind": "require-call",
|
@@ -12453,6 +12853,26 @@
|
|
12453
12853
|
"kind": "require-call",
|
12454
12854
|
"external": true
|
12455
12855
|
},
|
12856
|
+
{
|
12857
|
+
"path": "eventemitter2",
|
12858
|
+
"kind": "require-call",
|
12859
|
+
"external": true
|
12860
|
+
},
|
12861
|
+
{
|
12862
|
+
"path": "react",
|
12863
|
+
"kind": "require-call",
|
12864
|
+
"external": true
|
12865
|
+
},
|
12866
|
+
{
|
12867
|
+
"path": "react",
|
12868
|
+
"kind": "require-call",
|
12869
|
+
"external": true
|
12870
|
+
},
|
12871
|
+
{
|
12872
|
+
"path": "@100mslive/react-sdk",
|
12873
|
+
"kind": "require-call",
|
12874
|
+
"external": true
|
12875
|
+
},
|
12456
12876
|
{
|
12457
12877
|
"path": "react",
|
12458
12878
|
"kind": "require-call",
|
@@ -12553,6 +12973,51 @@
|
|
12553
12973
|
"kind": "require-call",
|
12554
12974
|
"external": true
|
12555
12975
|
},
|
12976
|
+
{
|
12977
|
+
"path": "@100mslive/react-sdk",
|
12978
|
+
"kind": "require-call",
|
12979
|
+
"external": true
|
12980
|
+
},
|
12981
|
+
{
|
12982
|
+
"path": "react",
|
12983
|
+
"kind": "require-call",
|
12984
|
+
"external": true
|
12985
|
+
},
|
12986
|
+
{
|
12987
|
+
"path": "@100mslive/react-icons",
|
12988
|
+
"kind": "require-call",
|
12989
|
+
"external": true
|
12990
|
+
},
|
12991
|
+
{
|
12992
|
+
"path": "react",
|
12993
|
+
"kind": "require-call",
|
12994
|
+
"external": true
|
12995
|
+
},
|
12996
|
+
{
|
12997
|
+
"path": "react-swipeable",
|
12998
|
+
"kind": "require-call",
|
12999
|
+
"external": true
|
13000
|
+
},
|
13001
|
+
{
|
13002
|
+
"path": "react-use",
|
13003
|
+
"kind": "require-call",
|
13004
|
+
"external": true
|
13005
|
+
},
|
13006
|
+
{
|
13007
|
+
"path": "@100mslive/react-sdk",
|
13008
|
+
"kind": "require-call",
|
13009
|
+
"external": true
|
13010
|
+
},
|
13011
|
+
{
|
13012
|
+
"path": "@100mslive/react-icons",
|
13013
|
+
"kind": "require-call",
|
13014
|
+
"external": true
|
13015
|
+
},
|
13016
|
+
{
|
13017
|
+
"path": "react",
|
13018
|
+
"kind": "require-call",
|
13019
|
+
"external": true
|
13020
|
+
},
|
12556
13021
|
{
|
12557
13022
|
"path": "react-use",
|
12558
13023
|
"kind": "require-call",
|
@@ -12698,11 +13163,26 @@
|
|
12698
13163
|
"kind": "require-call",
|
12699
13164
|
"external": true
|
12700
13165
|
},
|
13166
|
+
{
|
13167
|
+
"path": "@100mslive/hms-virtual-background",
|
13168
|
+
"kind": "require-call",
|
13169
|
+
"external": true
|
13170
|
+
},
|
13171
|
+
{
|
13172
|
+
"path": "@100mslive/hms-virtual-background",
|
13173
|
+
"kind": "require-call",
|
13174
|
+
"external": true
|
13175
|
+
},
|
12701
13176
|
{
|
12702
13177
|
"path": "react",
|
12703
13178
|
"kind": "require-call",
|
12704
13179
|
"external": true
|
12705
13180
|
},
|
13181
|
+
{
|
13182
|
+
"path": "@100mslive/hms-virtual-background",
|
13183
|
+
"kind": "require-call",
|
13184
|
+
"external": true
|
13185
|
+
},
|
12706
13186
|
{
|
12707
13187
|
"path": "@100mslive/react-sdk",
|
12708
13188
|
"kind": "require-call",
|
@@ -12823,6 +13303,21 @@
|
|
12823
13303
|
"kind": "require-call",
|
12824
13304
|
"external": true
|
12825
13305
|
},
|
13306
|
+
{
|
13307
|
+
"path": "@100mslive/react-sdk",
|
13308
|
+
"kind": "require-call",
|
13309
|
+
"external": true
|
13310
|
+
},
|
13311
|
+
{
|
13312
|
+
"path": "@100mslive/react-icons",
|
13313
|
+
"kind": "require-call",
|
13314
|
+
"external": true
|
13315
|
+
},
|
13316
|
+
{
|
13317
|
+
"path": "react",
|
13318
|
+
"kind": "require-call",
|
13319
|
+
"external": true
|
13320
|
+
},
|
12826
13321
|
{
|
12827
13322
|
"path": "react",
|
12828
13323
|
"kind": "require-call",
|
@@ -13128,6 +13623,11 @@
|
|
13128
13623
|
"kind": "require-call",
|
13129
13624
|
"external": true
|
13130
13625
|
},
|
13626
|
+
{
|
13627
|
+
"path": "uuid",
|
13628
|
+
"kind": "require-call",
|
13629
|
+
"external": true
|
13630
|
+
},
|
13131
13631
|
{
|
13132
13632
|
"path": "@100mslive/react-sdk",
|
13133
13633
|
"kind": "require-call",
|
@@ -13253,21 +13753,6 @@
|
|
13253
13753
|
"kind": "require-call",
|
13254
13754
|
"external": true
|
13255
13755
|
},
|
13256
|
-
{
|
13257
|
-
"path": "@100mslive/react-icons",
|
13258
|
-
"kind": "require-call",
|
13259
|
-
"external": true
|
13260
|
-
},
|
13261
|
-
{
|
13262
|
-
"path": "react",
|
13263
|
-
"kind": "require-call",
|
13264
|
-
"external": true
|
13265
|
-
},
|
13266
|
-
{
|
13267
|
-
"path": "@100mslive/react-sdk",
|
13268
|
-
"kind": "require-call",
|
13269
|
-
"external": true
|
13270
|
-
},
|
13271
13756
|
{
|
13272
13757
|
"path": "react",
|
13273
13758
|
"kind": "require-call",
|
@@ -13443,13 +13928,13 @@
|
|
13443
13928
|
"entryPoint": "src/index.ts",
|
13444
13929
|
"inputs": {
|
13445
13930
|
"<define:process.env>": {
|
13446
|
-
"bytesInOutput":
|
13931
|
+
"bytesInOutput": 18606
|
13447
13932
|
},
|
13448
13933
|
"src/Theme/base.config.ts": {
|
13449
13934
|
"bytesInOutput": 6104
|
13450
13935
|
},
|
13451
13936
|
"src/Theme/stitches.config.ts": {
|
13452
|
-
"bytesInOutput":
|
13937
|
+
"bytesInOutput": 2282
|
13453
13938
|
},
|
13454
13939
|
"src/Theme/useSSR.tsx": {
|
13455
13940
|
"bytesInOutput": 638
|
@@ -13602,13 +14087,13 @@
|
|
13602
14087
|
"bytesInOutput": 143
|
13603
14088
|
},
|
13604
14089
|
"src/AudioLevel/useBorderAudioLevel.tsx": {
|
13605
|
-
"bytesInOutput":
|
14090
|
+
"bytesInOutput": 970
|
13606
14091
|
},
|
13607
14092
|
"src/AudioLevel/audio-level.png": {
|
13608
14093
|
"bytesInOutput": 983
|
13609
14094
|
},
|
13610
14095
|
"src/AudioLevel/AudioLevel.tsx": {
|
13611
|
-
"bytesInOutput":
|
14096
|
+
"bytesInOutput": 2808
|
13612
14097
|
},
|
13613
14098
|
"src/AudioLevel/index.ts": {
|
13614
14099
|
"bytesInOutput": 175
|
@@ -13706,20 +14191,17 @@
|
|
13706
14191
|
"src/Prebuilt/components/hooks/useUserPreferences.jsx": {
|
13707
14192
|
"bytesInOutput": 1062
|
13708
14193
|
},
|
13709
|
-
"src/Prebuilt/common/constants.
|
13710
|
-
"bytesInOutput":
|
14194
|
+
"src/Prebuilt/common/constants.ts": {
|
14195
|
+
"bytesInOutput": 4578
|
13711
14196
|
},
|
13712
14197
|
"src/Prebuilt/components/AppData/useUISettings.js": {
|
13713
|
-
"bytesInOutput":
|
14198
|
+
"bytesInOutput": 6994
|
13714
14199
|
},
|
13715
14200
|
"src/Prebuilt/components/AppData/useSidepane.js": {
|
13716
14201
|
"bytesInOutput": 2515
|
13717
14202
|
},
|
13718
|
-
"src/Prebuilt/components/
|
13719
|
-
"bytesInOutput":
|
13720
|
-
},
|
13721
|
-
"src/Prebuilt/components/AppData/AppData.jsx": {
|
13722
|
-
"bytesInOutput": 6490
|
14203
|
+
"src/Prebuilt/components/AppData/AppData.tsx": {
|
14204
|
+
"bytesInOutput": 5896
|
13723
14205
|
},
|
13724
14206
|
"src/Prebuilt/AppContext.tsx": {
|
13725
14207
|
"bytesInOutput": 840
|
@@ -13728,7 +14210,7 @@
|
|
13728
14210
|
"bytesInOutput": 9342
|
13729
14211
|
},
|
13730
14212
|
"src/Prebuilt/components/AuthToken.jsx": {
|
13731
|
-
"bytesInOutput":
|
14213
|
+
"bytesInOutput": 3810
|
13732
14214
|
},
|
13733
14215
|
"src/Prebuilt/IconButton.jsx": {
|
13734
14216
|
"bytesInOutput": 845
|
@@ -13737,7 +14219,7 @@
|
|
13737
14219
|
"bytesInOutput": 3794
|
13738
14220
|
},
|
13739
14221
|
"src/Prebuilt/components/Toast/ToastManager.js": {
|
13740
|
-
"bytesInOutput":
|
14222
|
+
"bytesInOutput": 1356
|
13741
14223
|
},
|
13742
14224
|
"src/Prebuilt/components/AudioVideoToggle.jsx": {
|
13743
14225
|
"bytesInOutput": 6734
|
@@ -13797,7 +14279,7 @@
|
|
13797
14279
|
"bytesInOutput": 260
|
13798
14280
|
},
|
13799
14281
|
"src/Prebuilt/provider/roomLayoutProvider/constants/index.ts": {
|
13800
|
-
"bytesInOutput":
|
14282
|
+
"bytesInOutput": 1850
|
13801
14283
|
},
|
13802
14284
|
"src/Prebuilt/provider/roomLayoutProvider/hooks/useFetchRoomLayout.ts": {
|
13803
14285
|
"bytesInOutput": 2742
|
@@ -13863,13 +14345,13 @@
|
|
13863
14345
|
"bytesInOutput": 8156
|
13864
14346
|
},
|
13865
14347
|
"../../node_modules/ua-parser-js/src/ua-parser.js": {
|
13866
|
-
"bytesInOutput":
|
14348
|
+
"bytesInOutput": 42464
|
13867
14349
|
},
|
13868
14350
|
"../../node_modules/webrtc-adapter/src/js/utils.js": {
|
13869
14351
|
"bytesInOutput": 6459
|
13870
14352
|
},
|
13871
14353
|
"../../node_modules/webrtc-adapter/src/js/chrome/getusermedia.js": {
|
13872
|
-
"bytesInOutput":
|
14354
|
+
"bytesInOutput": 6253
|
13873
14355
|
},
|
13874
14356
|
"../../node_modules/webrtc-adapter/src/js/chrome/getdisplaymedia.js": {
|
13875
14357
|
"bytesInOutput": 1396
|
@@ -13890,7 +14372,7 @@
|
|
13890
14372
|
"bytesInOutput": 12017
|
13891
14373
|
},
|
13892
14374
|
"../../node_modules/sdp/sdp.js": {
|
13893
|
-
"bytesInOutput":
|
14375
|
+
"bytesInOutput": 22291
|
13894
14376
|
},
|
13895
14377
|
"../../node_modules/webrtc-adapter/src/js/common_shim.js": {
|
13896
14378
|
"bytesInOutput": 12604
|
@@ -13905,7 +14387,7 @@
|
|
13905
14387
|
"bytesInOutput": 16122
|
13906
14388
|
},
|
13907
14389
|
"../../node_modules/sdp-transform/lib/parser.js": {
|
13908
|
-
"bytesInOutput":
|
14390
|
+
"bytesInOutput": 3488
|
13909
14391
|
},
|
13910
14392
|
"../../node_modules/sdp-transform/lib/writer.js": {
|
13911
14393
|
"bytesInOutput": 3072
|
@@ -13914,10 +14396,10 @@
|
|
13914
14396
|
"bytesInOutput": 615
|
13915
14397
|
},
|
13916
14398
|
"../hms-video-web/dist/index.js": {
|
13917
|
-
"bytesInOutput":
|
14399
|
+
"bytesInOutput": 35195
|
13918
14400
|
},
|
13919
14401
|
"src/Prebuilt/common/utils.js": {
|
13920
|
-
"bytesInOutput":
|
14402
|
+
"bytesInOutput": 2907
|
13921
14403
|
},
|
13922
14404
|
"src/Prebuilt/services/FeatureFlags.jsx": {
|
13923
14405
|
"bytesInOutput": 1701
|
@@ -14013,7 +14495,7 @@
|
|
14013
14495
|
"bytesInOutput": 951
|
14014
14496
|
},
|
14015
14497
|
"src/Prebuilt/components/Footer/Footer.tsx": {
|
14016
|
-
"bytesInOutput":
|
14498
|
+
"bytesInOutput": 4433
|
14017
14499
|
},
|
14018
14500
|
"src/Prebuilt/components/Notifications/HLSFailureModal.tsx": {
|
14019
14501
|
"bytesInOutput": 2811
|
@@ -14025,7 +14507,7 @@
|
|
14025
14507
|
"bytesInOutput": 1548
|
14026
14508
|
},
|
14027
14509
|
"src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx": {
|
14028
|
-
"bytesInOutput":
|
14510
|
+
"bytesInOutput": 9362
|
14029
14511
|
},
|
14030
14512
|
"src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.jsx": {
|
14031
14513
|
"bytesInOutput": 2764
|
@@ -14046,7 +14528,7 @@
|
|
14046
14528
|
"bytesInOutput": 4752
|
14047
14529
|
},
|
14048
14530
|
"src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.jsx": {
|
14049
|
-
"bytesInOutput":
|
14531
|
+
"bytesInOutput": 9395
|
14050
14532
|
},
|
14051
14533
|
"src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.jsx": {
|
14052
14534
|
"bytesInOutput": 2749
|
@@ -14055,7 +14537,7 @@
|
|
14055
14537
|
"bytesInOutput": 5112
|
14056
14538
|
},
|
14057
14539
|
"src/Prebuilt/components/Polls/Voting/QuestionCard.jsx": {
|
14058
|
-
"bytesInOutput":
|
14540
|
+
"bytesInOutput": 9488
|
14059
14541
|
},
|
14060
14542
|
"src/Prebuilt/components/Polls/Voting/StandardVoting.jsx": {
|
14061
14543
|
"bytesInOutput": 1467
|
@@ -14069,17 +14551,29 @@
|
|
14069
14551
|
"src/Prebuilt/components/Polls/Polls.tsx": {
|
14070
14552
|
"bytesInOutput": 996
|
14071
14553
|
},
|
14554
|
+
"../../node_modules/reselect/es/index.js": {
|
14555
|
+
"bytesInOutput": 2639
|
14556
|
+
},
|
14557
|
+
"../hms-video-store/dist/index.js": {
|
14558
|
+
"bytesInOutput": 21581
|
14559
|
+
},
|
14072
14560
|
"src/Prebuilt/images/empty-chat.svg": {
|
14073
14561
|
"bytesInOutput": 2366
|
14074
14562
|
},
|
14075
|
-
"src/Prebuilt/components/
|
14076
|
-
"bytesInOutput":
|
14563
|
+
"src/Prebuilt/components/Chat/MwebChatOption.tsx": {
|
14564
|
+
"bytesInOutput": 688
|
14565
|
+
},
|
14566
|
+
"src/Prebuilt/components/hooks/useChatBlacklist.ts": {
|
14567
|
+
"bytesInOutput": 852
|
14568
|
+
},
|
14569
|
+
"src/Prebuilt/components/hooks/useSetPinnedMessages.ts": {
|
14570
|
+
"bytesInOutput": 2918
|
14077
14571
|
},
|
14078
14572
|
"src/Prebuilt/components/Chat/useUnreadCount.js": {
|
14079
14573
|
"bytesInOutput": 637
|
14080
14574
|
},
|
14081
14575
|
"src/Prebuilt/components/Chat/ChatBody.jsx": {
|
14082
|
-
"bytesInOutput":
|
14576
|
+
"bytesInOutput": 23997
|
14083
14577
|
},
|
14084
14578
|
"src/Prebuilt/components/AppData/useChatState.js": {
|
14085
14579
|
"bytesInOutput": 914
|
@@ -14088,16 +14582,25 @@
|
|
14088
14582
|
"bytesInOutput": 1440
|
14089
14583
|
},
|
14090
14584
|
"src/Prebuilt/components/Chat/ChatFooter.tsx": {
|
14091
|
-
"bytesInOutput":
|
14585
|
+
"bytesInOutput": 8857
|
14586
|
+
},
|
14587
|
+
"src/Prebuilt/components/Chat/ChatStates.jsx": {
|
14588
|
+
"bytesInOutput": 2918
|
14589
|
+
},
|
14590
|
+
"src/Prebuilt/components/Chat/Navigation.tsx": {
|
14591
|
+
"bytesInOutput": 1870
|
14592
|
+
},
|
14593
|
+
"src/Prebuilt/components/Chat/PinnedMessage.tsx": {
|
14594
|
+
"bytesInOutput": 5394
|
14092
14595
|
},
|
14093
14596
|
"src/Prebuilt/components/Chat/Chat.jsx": {
|
14094
|
-
"bytesInOutput":
|
14597
|
+
"bytesInOutput": 7488
|
14095
14598
|
},
|
14096
14599
|
"src/Prebuilt/components/Footer/PaginatedParticipants.tsx": {
|
14097
14600
|
"bytesInOutput": 5307
|
14098
14601
|
},
|
14099
14602
|
"src/Prebuilt/components/SidePaneTabs.tsx": {
|
14100
|
-
"bytesInOutput":
|
14603
|
+
"bytesInOutput": 7736
|
14101
14604
|
},
|
14102
14605
|
"src/Prebuilt/components/Connection/TileConnection.tsx": {
|
14103
14606
|
"bytesInOutput": 2109
|
@@ -14118,13 +14621,16 @@
|
|
14118
14621
|
"bytesInOutput": 1519
|
14119
14622
|
},
|
14120
14623
|
"src/Prebuilt/components/VirtualBackground/VBCollection.tsx": {
|
14121
|
-
"bytesInOutput":
|
14624
|
+
"bytesInOutput": 1873
|
14625
|
+
},
|
14626
|
+
"src/Prebuilt/components/VirtualBackground/constants.ts": {
|
14627
|
+
"bytesInOutput": 1222
|
14122
14628
|
},
|
14123
|
-
"src/Prebuilt/components/VirtualBackground/VBPicker.
|
14124
|
-
"bytesInOutput":
|
14629
|
+
"src/Prebuilt/components/VirtualBackground/VBPicker.tsx": {
|
14630
|
+
"bytesInOutput": 8251
|
14125
14631
|
},
|
14126
14632
|
"src/Prebuilt/layouts/SidePane.tsx": {
|
14127
|
-
"bytesInOutput":
|
14633
|
+
"bytesInOutput": 4947
|
14128
14634
|
},
|
14129
14635
|
"src/Prebuilt/components/Chip.tsx": {
|
14130
14636
|
"bytesInOutput": 1118
|
@@ -14139,13 +14645,19 @@
|
|
14139
14645
|
"bytesInOutput": 3383
|
14140
14646
|
},
|
14141
14647
|
"src/Prebuilt/components/Preview/PreviewJoin.tsx": {
|
14142
|
-
"bytesInOutput":
|
14648
|
+
"bytesInOutput": 12016
|
14143
14649
|
},
|
14144
14650
|
"src/Prebuilt/components/RoleChangeRequest/RequestPrompt.tsx": {
|
14145
14651
|
"bytesInOutput": 2622
|
14146
14652
|
},
|
14147
14653
|
"src/Prebuilt/components/RoleChangeRequest/RoleChangeRequestModal.tsx": {
|
14148
|
-
"bytesInOutput":
|
14654
|
+
"bytesInOutput": 3662
|
14655
|
+
},
|
14656
|
+
"src/Prebuilt/components/Toast/ToastConfig.jsx": {
|
14657
|
+
"bytesInOutput": 8342
|
14658
|
+
},
|
14659
|
+
"src/Prebuilt/components/Toast/ToastBatcher.js": {
|
14660
|
+
"bytesInOutput": 2151
|
14149
14661
|
},
|
14150
14662
|
"src/Prebuilt/components/hooks/useVideoTileLayout.ts": {
|
14151
14663
|
"bytesInOutput": 706
|
@@ -14154,13 +14666,13 @@
|
|
14154
14666
|
"bytesInOutput": 5117
|
14155
14667
|
},
|
14156
14668
|
"src/Prebuilt/components/Pagination.tsx": {
|
14157
|
-
"bytesInOutput":
|
14669
|
+
"bytesInOutput": 2119
|
14158
14670
|
},
|
14159
14671
|
"src/Prebuilt/components/VideoLayouts/Grid.tsx": {
|
14160
14672
|
"bytesInOutput": 1620
|
14161
14673
|
},
|
14162
14674
|
"src/Prebuilt/components/hooks/useTileLayout.tsx": {
|
14163
|
-
"bytesInOutput":
|
14675
|
+
"bytesInOutput": 4490
|
14164
14676
|
},
|
14165
14677
|
"src/Prebuilt/components/VideoLayouts/EqualProminence.tsx": {
|
14166
14678
|
"bytesInOutput": 2420
|
@@ -14187,7 +14699,7 @@
|
|
14187
14699
|
"bytesInOutput": 2494
|
14188
14700
|
},
|
14189
14701
|
"src/Prebuilt/common/PeersSorter.ts": {
|
14190
|
-
"bytesInOutput":
|
14702
|
+
"bytesInOutput": 3229
|
14191
14703
|
},
|
14192
14704
|
"src/Prebuilt/components/VideoLayouts/GridLayout.tsx": {
|
14193
14705
|
"bytesInOutput": 3980
|
@@ -14241,7 +14753,7 @@
|
|
14241
14753
|
"bytesInOutput": 18571
|
14242
14754
|
},
|
14243
14755
|
"src/Prebuilt/layouts/VideoStreamingSection.tsx": {
|
14244
|
-
"bytesInOutput":
|
14756
|
+
"bytesInOutput": 4049
|
14245
14757
|
},
|
14246
14758
|
"src/Prebuilt/components/Header/common.jsx": {
|
14247
14759
|
"bytesInOutput": 7375
|
@@ -14276,12 +14788,6 @@
|
|
14276
14788
|
"src/Prebuilt/components/MwebLandscapePrompt.tsx": {
|
14277
14789
|
"bytesInOutput": 3195
|
14278
14790
|
},
|
14279
|
-
"src/Prebuilt/components/Toast/ToastConfig.jsx": {
|
14280
|
-
"bytesInOutput": 7487
|
14281
|
-
},
|
14282
|
-
"src/Prebuilt/components/Toast/ToastBatcher.js": {
|
14283
|
-
"bytesInOutput": 2151
|
14284
|
-
},
|
14285
14791
|
"src/Prebuilt/components/Notifications/AutoplayBlockedModal.tsx": {
|
14286
14792
|
"bytesInOutput": 1412
|
14287
14793
|
},
|
@@ -14331,13 +14837,13 @@
|
|
14331
14837
|
"bytesInOutput": 4329
|
14332
14838
|
},
|
14333
14839
|
"src/Prebuilt/plugins/RemoteStopScreenshare.jsx": {
|
14334
|
-
"bytesInOutput":
|
14840
|
+
"bytesInOutput": 827
|
14335
14841
|
},
|
14336
14842
|
"src/Prebuilt/components/hooks/useAutoStartStreaming.tsx": {
|
14337
|
-
"bytesInOutput":
|
14843
|
+
"bytesInOutput": 2225
|
14338
14844
|
},
|
14339
14845
|
"src/Prebuilt/App.tsx": {
|
14340
|
-
"bytesInOutput":
|
14846
|
+
"bytesInOutput": 9472
|
14341
14847
|
},
|
14342
14848
|
"src/Prebuilt/index.ts": {
|
14343
14849
|
"bytesInOutput": 131
|
@@ -14349,7 +14855,7 @@
|
|
14349
14855
|
"bytesInOutput": 2930
|
14350
14856
|
}
|
14351
14857
|
},
|
14352
|
-
"bytes":
|
14858
|
+
"bytes": 1155383
|
14353
14859
|
}
|
14354
14860
|
}
|
14355
14861
|
}
|