@100mslive/roomkit-react 0.1.14 → 0.1.16
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-662T7R7H.js → HLSView-EMUOLCTM.js} +128 -39
- package/dist/HLSView-EMUOLCTM.js.map +7 -0
- package/dist/Prebuilt/common/PeersSorter.d.ts +1 -0
- package/dist/Prebuilt/common/constants.d.ts +9 -5
- package/dist/Prebuilt/common/hooks.d.ts +1 -0
- package/dist/Prebuilt/components/Footer/ParticipantList.d.ts +17 -0
- package/dist/Prebuilt/components/Footer/RoleAccordion.d.ts +3 -2
- package/dist/Prebuilt/components/Footer/WhiteboardToggle.d.ts +2 -0
- package/dist/Prebuilt/components/HMSVideo/HLSCaptionSelector.d.ts +5 -0
- package/dist/Prebuilt/components/Notifications/HandRaisedNotifications.d.ts +1 -0
- package/dist/Prebuilt/components/Polls/Voting/Leaderboard.d.ts +4 -0
- package/dist/Prebuilt/components/Polls/Voting/LeaderboardEntry.d.ts +9 -0
- package/dist/Prebuilt/components/Polls/Voting/PeerParticipationSummary.d.ts +5 -0
- package/dist/Prebuilt/components/PreviousRoleInMetadata.d.ts +1 -0
- package/dist/Prebuilt/components/RemoveParticipant.d.ts +5 -0
- package/dist/Prebuilt/components/hooks/useCloseScreenshareWhiteboard.d.ts +4 -0
- package/dist/Prebuilt/layouts/WhiteboardView.d.ts +2 -0
- package/dist/{chunk-2B7YYNHQ.js → chunk-ZYR4B4KQ.js} +2240 -1767
- package/dist/chunk-ZYR4B4KQ.js.map +7 -0
- package/dist/index.cjs.js +2805 -2172
- package/dist/index.cjs.js.map +4 -4
- package/dist/index.js +1 -1
- package/dist/meta.cjs.json +739 -177
- package/dist/meta.esbuild.json +749 -186
- package/package.json +7 -7
- package/src/Prebuilt/AppStateContext.tsx +1 -1
- package/src/Prebuilt/common/PeersSorter.ts +24 -8
- package/src/Prebuilt/common/constants.ts +6 -6
- package/src/Prebuilt/common/hooks.ts +16 -0
- package/src/Prebuilt/common/utils.js +33 -0
- package/src/Prebuilt/components/AppData/AppData.tsx +1 -16
- package/src/Prebuilt/components/Chat/Chat.jsx +10 -34
- package/src/Prebuilt/components/Chat/ChatBody.jsx +107 -66
- package/src/Prebuilt/components/Chat/ChatFooter.tsx +21 -12
- package/src/Prebuilt/components/Chat/ChatSelector.tsx +25 -25
- package/src/Prebuilt/components/Chat/ChatSelectorContainer.tsx +15 -16
- package/src/Prebuilt/components/Chat/PinnedMessage.tsx +7 -2
- package/src/Prebuilt/components/ConferenceScreen.tsx +2 -0
- package/src/Prebuilt/components/Footer/ChatToggle.tsx +30 -7
- package/src/Prebuilt/components/Footer/Footer.tsx +2 -1
- package/src/Prebuilt/components/Footer/PaginatedParticipants.tsx +0 -1
- package/src/Prebuilt/components/Footer/{ParticipantList.jsx → ParticipantList.tsx} +169 -127
- package/src/Prebuilt/components/Footer/RoleAccordion.tsx +23 -13
- package/src/Prebuilt/components/Footer/WhiteboardToggle.tsx +34 -0
- package/src/Prebuilt/components/HMSVideo/HLSCaptionSelector.tsx +13 -0
- package/src/Prebuilt/components/HMSVideo/HMSVideo.jsx +34 -2
- package/src/Prebuilt/components/Notifications/HandRaisedNotifications.tsx +35 -0
- package/src/Prebuilt/components/Notifications/Notifications.tsx +47 -14
- package/src/Prebuilt/components/Notifications/PeerNotifications.tsx +7 -2
- package/src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx +3 -9
- package/src/Prebuilt/components/Polls/CreateQuestions/CreateQuestions.jsx +21 -1
- package/src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.jsx +34 -7
- package/src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.jsx +2 -2
- package/src/Prebuilt/components/Polls/Polls.tsx +3 -0
- package/src/Prebuilt/components/Polls/Voting/Leaderboard.tsx +115 -0
- package/src/Prebuilt/components/Polls/Voting/LeaderboardEntry.tsx +63 -0
- package/src/Prebuilt/components/Polls/Voting/PeerParticipationSummary.tsx +38 -0
- package/src/Prebuilt/components/Polls/Voting/QuestionCard.jsx +33 -8
- package/src/Prebuilt/components/Polls/Voting/StandardVoting.jsx +7 -1
- package/src/Prebuilt/components/Polls/Voting/Voting.jsx +31 -13
- package/src/Prebuilt/components/Polls/common/MultipleChoiceOptions.jsx +33 -21
- package/src/Prebuilt/components/Polls/common/SingleChoiceOptions.jsx +47 -35
- package/src/Prebuilt/components/Polls/common/StatusIndicator.jsx +2 -22
- package/src/Prebuilt/components/Polls/common/VoteCount.jsx +1 -15
- package/src/Prebuilt/components/PreviousRoleInMetadata.tsx +21 -0
- package/src/Prebuilt/components/RemoveParticipant.tsx +35 -0
- package/src/Prebuilt/components/RoleChangeModal.jsx +1 -1
- package/src/Prebuilt/components/SidePaneTabs.tsx +0 -1
- package/src/Prebuilt/components/TileMenu/TileMenuContent.tsx +1 -1
- package/src/Prebuilt/components/Toast/ToastConfig.jsx +15 -3
- package/src/Prebuilt/components/VideoLayouts/EqualProminence.tsx +6 -5
- package/src/Prebuilt/components/VideoLayouts/GridLayout.tsx +27 -5
- package/src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx +0 -1
- package/src/Prebuilt/components/hooks/useCloseScreenshareWhiteboard.tsx +24 -0
- package/src/Prebuilt/layouts/HLSView.jsx +51 -3
- package/src/Prebuilt/layouts/VideoStreamingSection.tsx +20 -3
- package/src/Prebuilt/layouts/WhiteboardView.tsx +66 -0
- package/dist/HLSView-662T7R7H.js.map +0 -7
- package/dist/chunk-2B7YYNHQ.js.map +0 -7
- package/src/Prebuilt/components/AppData/useAppLayout.js +0 -6
- package/src/Prebuilt/components/init/initUtils.js +0 -67
package/dist/meta.cjs.json
CHANGED
|
@@ -1887,17 +1887,6 @@
|
|
|
1887
1887
|
],
|
|
1888
1888
|
"format": "esm"
|
|
1889
1889
|
},
|
|
1890
|
-
"src/Prebuilt/components/init/initUtils.js": {
|
|
1891
|
-
"bytes": 2311,
|
|
1892
|
-
"imports": [
|
|
1893
|
-
{
|
|
1894
|
-
"path": "<define:process.env>",
|
|
1895
|
-
"kind": "import-statement",
|
|
1896
|
-
"external": true
|
|
1897
|
-
}
|
|
1898
|
-
],
|
|
1899
|
-
"format": "esm"
|
|
1900
|
-
},
|
|
1901
1890
|
"src/Prebuilt/components/hooks/useUserPreferences.jsx": {
|
|
1902
1891
|
"bytes": 737,
|
|
1903
1892
|
"imports": [
|
|
@@ -1920,7 +1909,7 @@
|
|
|
1920
1909
|
"format": "esm"
|
|
1921
1910
|
},
|
|
1922
1911
|
"src/Prebuilt/common/constants.ts": {
|
|
1923
|
-
"bytes":
|
|
1912
|
+
"bytes": 4264,
|
|
1924
1913
|
"imports": [
|
|
1925
1914
|
{
|
|
1926
1915
|
"path": "@100mslive/react-sdk",
|
|
@@ -2003,7 +1992,7 @@
|
|
|
2003
1992
|
"format": "esm"
|
|
2004
1993
|
},
|
|
2005
1994
|
"src/Prebuilt/components/AppData/AppData.tsx": {
|
|
2006
|
-
"bytes":
|
|
1995
|
+
"bytes": 4832,
|
|
2007
1996
|
"imports": [
|
|
2008
1997
|
{
|
|
2009
1998
|
"path": "react",
|
|
@@ -2015,11 +2004,6 @@
|
|
|
2015
2004
|
"kind": "import-statement",
|
|
2016
2005
|
"external": true
|
|
2017
2006
|
},
|
|
2018
|
-
{
|
|
2019
|
-
"path": "src/Prebuilt/components/init/initUtils.js",
|
|
2020
|
-
"kind": "import-statement",
|
|
2021
|
-
"original": "../init/initUtils"
|
|
2022
|
-
},
|
|
2023
2007
|
{
|
|
2024
2008
|
"path": "src/Prebuilt/components/hooks/useUserPreferences.jsx",
|
|
2025
2009
|
"kind": "import-statement",
|
|
@@ -3158,7 +3142,7 @@
|
|
|
3158
3142
|
"format": "esm"
|
|
3159
3143
|
},
|
|
3160
3144
|
"src/Prebuilt/common/hooks.ts": {
|
|
3161
|
-
"bytes":
|
|
3145
|
+
"bytes": 3796,
|
|
3162
3146
|
"imports": [
|
|
3163
3147
|
{
|
|
3164
3148
|
"path": "react",
|
|
@@ -3185,6 +3169,11 @@
|
|
|
3185
3169
|
"kind": "import-statement",
|
|
3186
3170
|
"original": "../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
|
3187
3171
|
},
|
|
3172
|
+
{
|
|
3173
|
+
"path": "src/Prebuilt/common/constants.ts",
|
|
3174
|
+
"kind": "import-statement",
|
|
3175
|
+
"original": "./constants"
|
|
3176
|
+
},
|
|
3188
3177
|
{
|
|
3189
3178
|
"path": "<define:process.env>",
|
|
3190
3179
|
"kind": "import-statement",
|
|
@@ -3194,7 +3183,7 @@
|
|
|
3194
3183
|
"format": "esm"
|
|
3195
3184
|
},
|
|
3196
3185
|
"src/Prebuilt/components/RoleChangeModal.jsx": {
|
|
3197
|
-
"bytes":
|
|
3186
|
+
"bytes": 6492,
|
|
3198
3187
|
"imports": [
|
|
3199
3188
|
{
|
|
3200
3189
|
"path": "react",
|
|
@@ -4429,7 +4418,7 @@
|
|
|
4429
4418
|
"format": "cjs"
|
|
4430
4419
|
},
|
|
4431
4420
|
"../hms-video-web/dist/index.js": {
|
|
4432
|
-
"bytes":
|
|
4421
|
+
"bytes": 260007,
|
|
4433
4422
|
"imports": [
|
|
4434
4423
|
{
|
|
4435
4424
|
"path": "uuid",
|
|
@@ -4515,7 +4504,7 @@
|
|
|
4515
4504
|
"format": "esm"
|
|
4516
4505
|
},
|
|
4517
4506
|
"src/Prebuilt/common/utils.js": {
|
|
4518
|
-
"bytes":
|
|
4507
|
+
"bytes": 5391,
|
|
4519
4508
|
"imports": [
|
|
4520
4509
|
{
|
|
4521
4510
|
"path": "src/Prebuilt/common/constants.ts",
|
|
@@ -5485,7 +5474,7 @@
|
|
|
5485
5474
|
"format": "esm"
|
|
5486
5475
|
},
|
|
5487
5476
|
"src/Prebuilt/components/Footer/ChatToggle.tsx": {
|
|
5488
|
-
"bytes":
|
|
5477
|
+
"bytes": 1559,
|
|
5489
5478
|
"imports": [
|
|
5490
5479
|
{
|
|
5491
5480
|
"path": "react",
|
|
@@ -5577,6 +5566,52 @@
|
|
|
5577
5566
|
],
|
|
5578
5567
|
"format": "esm"
|
|
5579
5568
|
},
|
|
5569
|
+
"src/Prebuilt/components/RemoveParticipant.tsx": {
|
|
5570
|
+
"bytes": 1212,
|
|
5571
|
+
"imports": [
|
|
5572
|
+
{
|
|
5573
|
+
"path": "react",
|
|
5574
|
+
"kind": "import-statement",
|
|
5575
|
+
"external": true
|
|
5576
|
+
},
|
|
5577
|
+
{
|
|
5578
|
+
"path": "@100mslive/react-sdk",
|
|
5579
|
+
"kind": "import-statement",
|
|
5580
|
+
"external": true
|
|
5581
|
+
},
|
|
5582
|
+
{
|
|
5583
|
+
"path": "@100mslive/react-icons",
|
|
5584
|
+
"kind": "import-statement",
|
|
5585
|
+
"external": true
|
|
5586
|
+
},
|
|
5587
|
+
{
|
|
5588
|
+
"path": "src/Prebuilt/components/Toast/ToastManager.js",
|
|
5589
|
+
"kind": "import-statement",
|
|
5590
|
+
"original": "./Toast/ToastManager"
|
|
5591
|
+
},
|
|
5592
|
+
{
|
|
5593
|
+
"path": "src/Dropdown/index.tsx",
|
|
5594
|
+
"kind": "import-statement",
|
|
5595
|
+
"original": "../../Dropdown"
|
|
5596
|
+
},
|
|
5597
|
+
{
|
|
5598
|
+
"path": "src/Text/index.tsx",
|
|
5599
|
+
"kind": "import-statement",
|
|
5600
|
+
"original": "../../Text"
|
|
5601
|
+
},
|
|
5602
|
+
{
|
|
5603
|
+
"path": "<define:process.env>",
|
|
5604
|
+
"kind": "import-statement",
|
|
5605
|
+
"external": true
|
|
5606
|
+
},
|
|
5607
|
+
{
|
|
5608
|
+
"path": "<runtime>",
|
|
5609
|
+
"kind": "import-statement",
|
|
5610
|
+
"external": true
|
|
5611
|
+
}
|
|
5612
|
+
],
|
|
5613
|
+
"format": "esm"
|
|
5614
|
+
},
|
|
5580
5615
|
"src/Prebuilt/components/Footer/RoleOptions.tsx": {
|
|
5581
5616
|
"bytes": 5433,
|
|
5582
5617
|
"imports": [
|
|
@@ -5639,7 +5674,7 @@
|
|
|
5639
5674
|
"format": "esm"
|
|
5640
5675
|
},
|
|
5641
5676
|
"src/Prebuilt/components/Footer/RoleAccordion.tsx": {
|
|
5642
|
-
"bytes":
|
|
5677
|
+
"bytes": 4692,
|
|
5643
5678
|
"imports": [
|
|
5644
5679
|
{
|
|
5645
5680
|
"path": "react",
|
|
@@ -5682,7 +5717,7 @@
|
|
|
5682
5717
|
"original": "../../../Text"
|
|
5683
5718
|
},
|
|
5684
5719
|
{
|
|
5685
|
-
"path": "src/Prebuilt/components/Footer/ParticipantList.
|
|
5720
|
+
"path": "src/Prebuilt/components/Footer/ParticipantList.tsx",
|
|
5686
5721
|
"kind": "import-statement",
|
|
5687
5722
|
"original": "./ParticipantList"
|
|
5688
5723
|
},
|
|
@@ -5704,8 +5739,8 @@
|
|
|
5704
5739
|
],
|
|
5705
5740
|
"format": "esm"
|
|
5706
5741
|
},
|
|
5707
|
-
"src/Prebuilt/components/Footer/ParticipantList.
|
|
5708
|
-
"bytes":
|
|
5742
|
+
"src/Prebuilt/components/Footer/ParticipantList.tsx": {
|
|
5743
|
+
"bytes": 12119,
|
|
5709
5744
|
"imports": [
|
|
5710
5745
|
{
|
|
5711
5746
|
"path": "react",
|
|
@@ -5743,9 +5778,9 @@
|
|
|
5743
5778
|
"original": "../Connection/ConnectionIndicator"
|
|
5744
5779
|
},
|
|
5745
5780
|
{
|
|
5746
|
-
"path": "src/Prebuilt/components/
|
|
5781
|
+
"path": "src/Prebuilt/components/RemoveParticipant.tsx",
|
|
5747
5782
|
"kind": "import-statement",
|
|
5748
|
-
"original": "../
|
|
5783
|
+
"original": "../RemoveParticipant"
|
|
5749
5784
|
},
|
|
5750
5785
|
{
|
|
5751
5786
|
"path": "src/Prebuilt/components/Footer/RoleAccordion.tsx",
|
|
@@ -5831,8 +5866,54 @@
|
|
|
5831
5866
|
],
|
|
5832
5867
|
"format": "esm"
|
|
5833
5868
|
},
|
|
5869
|
+
"src/Prebuilt/components/Footer/WhiteboardToggle.tsx": {
|
|
5870
|
+
"bytes": 964,
|
|
5871
|
+
"imports": [
|
|
5872
|
+
{
|
|
5873
|
+
"path": "react",
|
|
5874
|
+
"kind": "import-statement",
|
|
5875
|
+
"external": true
|
|
5876
|
+
},
|
|
5877
|
+
{
|
|
5878
|
+
"path": "@100mslive/react-sdk",
|
|
5879
|
+
"kind": "import-statement",
|
|
5880
|
+
"external": true
|
|
5881
|
+
},
|
|
5882
|
+
{
|
|
5883
|
+
"path": "@100mslive/react-icons",
|
|
5884
|
+
"kind": "import-statement",
|
|
5885
|
+
"external": true
|
|
5886
|
+
},
|
|
5887
|
+
{
|
|
5888
|
+
"path": "src/index.ts",
|
|
5889
|
+
"kind": "import-statement",
|
|
5890
|
+
"original": "../../.."
|
|
5891
|
+
},
|
|
5892
|
+
{
|
|
5893
|
+
"path": "src/Prebuilt/IconButton.jsx",
|
|
5894
|
+
"kind": "import-statement",
|
|
5895
|
+
"original": "../../IconButton"
|
|
5896
|
+
},
|
|
5897
|
+
{
|
|
5898
|
+
"path": "src/Prebuilt/components/Toast/ToastManager.js",
|
|
5899
|
+
"kind": "import-statement",
|
|
5900
|
+
"original": "../Toast/ToastManager"
|
|
5901
|
+
},
|
|
5902
|
+
{
|
|
5903
|
+
"path": "<define:process.env>",
|
|
5904
|
+
"kind": "import-statement",
|
|
5905
|
+
"external": true
|
|
5906
|
+
},
|
|
5907
|
+
{
|
|
5908
|
+
"path": "<runtime>",
|
|
5909
|
+
"kind": "import-statement",
|
|
5910
|
+
"external": true
|
|
5911
|
+
}
|
|
5912
|
+
],
|
|
5913
|
+
"format": "esm"
|
|
5914
|
+
},
|
|
5834
5915
|
"src/Prebuilt/components/Footer/Footer.tsx": {
|
|
5835
|
-
"bytes":
|
|
5916
|
+
"bytes": 3998,
|
|
5836
5917
|
"imports": [
|
|
5837
5918
|
{
|
|
5838
5919
|
"path": "react",
|
|
@@ -5905,7 +5986,7 @@
|
|
|
5905
5986
|
"original": "./ChatToggle"
|
|
5906
5987
|
},
|
|
5907
5988
|
{
|
|
5908
|
-
"path": "src/Prebuilt/components/Footer/ParticipantList.
|
|
5989
|
+
"path": "src/Prebuilt/components/Footer/ParticipantList.tsx",
|
|
5909
5990
|
"kind": "import-statement",
|
|
5910
5991
|
"original": "./ParticipantList"
|
|
5911
5992
|
},
|
|
@@ -5914,6 +5995,11 @@
|
|
|
5914
5995
|
"kind": "import-statement",
|
|
5915
5996
|
"original": "./PollsToggle"
|
|
5916
5997
|
},
|
|
5998
|
+
{
|
|
5999
|
+
"path": "src/Prebuilt/components/Footer/WhiteboardToggle.tsx",
|
|
6000
|
+
"kind": "import-statement",
|
|
6001
|
+
"original": "./WhiteboardToggle"
|
|
6002
|
+
},
|
|
5917
6003
|
{
|
|
5918
6004
|
"path": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen",
|
|
5919
6005
|
"kind": "import-statement",
|
|
@@ -6035,7 +6121,7 @@
|
|
|
6035
6121
|
"format": "esm"
|
|
6036
6122
|
},
|
|
6037
6123
|
"src/Prebuilt/components/Polls/common/StatusIndicator.jsx": {
|
|
6038
|
-
"bytes":
|
|
6124
|
+
"bytes": 597,
|
|
6039
6125
|
"imports": [
|
|
6040
6126
|
{
|
|
6041
6127
|
"path": "react",
|
|
@@ -6056,7 +6142,7 @@
|
|
|
6056
6142
|
"format": "esm"
|
|
6057
6143
|
},
|
|
6058
6144
|
"src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx": {
|
|
6059
|
-
"bytes":
|
|
6145
|
+
"bytes": 7467,
|
|
6060
6146
|
"imports": [
|
|
6061
6147
|
{
|
|
6062
6148
|
"path": "react",
|
|
@@ -6194,7 +6280,7 @@
|
|
|
6194
6280
|
"format": "esm"
|
|
6195
6281
|
},
|
|
6196
6282
|
"src/Prebuilt/components/Polls/common/VoteCount.jsx": {
|
|
6197
|
-
"bytes":
|
|
6283
|
+
"bytes": 397,
|
|
6198
6284
|
"imports": [
|
|
6199
6285
|
{
|
|
6200
6286
|
"path": "react",
|
|
@@ -6236,7 +6322,7 @@
|
|
|
6236
6322
|
"format": "esm"
|
|
6237
6323
|
},
|
|
6238
6324
|
"src/Prebuilt/components/Polls/common/MultipleChoiceOptions.jsx": {
|
|
6239
|
-
"bytes":
|
|
6325
|
+
"bytes": 3798,
|
|
6240
6326
|
"imports": [
|
|
6241
6327
|
{
|
|
6242
6328
|
"path": "react",
|
|
@@ -6277,13 +6363,18 @@
|
|
|
6277
6363
|
"format": "esm"
|
|
6278
6364
|
},
|
|
6279
6365
|
"src/Prebuilt/components/Polls/common/SingleChoiceOptions.jsx": {
|
|
6280
|
-
"bytes":
|
|
6366
|
+
"bytes": 4926,
|
|
6281
6367
|
"imports": [
|
|
6282
6368
|
{
|
|
6283
6369
|
"path": "react",
|
|
6284
6370
|
"kind": "import-statement",
|
|
6285
6371
|
"external": true
|
|
6286
6372
|
},
|
|
6373
|
+
{
|
|
6374
|
+
"path": "@100mslive/react-icons",
|
|
6375
|
+
"kind": "import-statement",
|
|
6376
|
+
"external": true
|
|
6377
|
+
},
|
|
6287
6378
|
{
|
|
6288
6379
|
"path": "src/index.ts",
|
|
6289
6380
|
"kind": "import-statement",
|
|
@@ -6313,7 +6404,7 @@
|
|
|
6313
6404
|
"format": "esm"
|
|
6314
6405
|
},
|
|
6315
6406
|
"src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.jsx": {
|
|
6316
|
-
"bytes":
|
|
6407
|
+
"bytes": 9040,
|
|
6317
6408
|
"imports": [
|
|
6318
6409
|
{
|
|
6319
6410
|
"path": "react",
|
|
@@ -6379,7 +6470,7 @@
|
|
|
6379
6470
|
"format": "esm"
|
|
6380
6471
|
},
|
|
6381
6472
|
"src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.jsx": {
|
|
6382
|
-
"bytes":
|
|
6473
|
+
"bytes": 2098,
|
|
6383
6474
|
"imports": [
|
|
6384
6475
|
{
|
|
6385
6476
|
"path": "react",
|
|
@@ -6415,7 +6506,7 @@
|
|
|
6415
6506
|
"format": "esm"
|
|
6416
6507
|
},
|
|
6417
6508
|
"src/Prebuilt/components/Polls/CreateQuestions/CreateQuestions.jsx": {
|
|
6418
|
-
"bytes":
|
|
6509
|
+
"bytes": 5120,
|
|
6419
6510
|
"imports": [
|
|
6420
6511
|
{
|
|
6421
6512
|
"path": "react",
|
|
@@ -6485,8 +6576,146 @@
|
|
|
6485
6576
|
],
|
|
6486
6577
|
"format": "esm"
|
|
6487
6578
|
},
|
|
6579
|
+
"src/Prebuilt/components/Polls/Voting/LeaderboardEntry.tsx": {
|
|
6580
|
+
"bytes": 1710,
|
|
6581
|
+
"imports": [
|
|
6582
|
+
{
|
|
6583
|
+
"path": "react",
|
|
6584
|
+
"kind": "import-statement",
|
|
6585
|
+
"external": true
|
|
6586
|
+
},
|
|
6587
|
+
{
|
|
6588
|
+
"path": "@100mslive/react-icons",
|
|
6589
|
+
"kind": "import-statement",
|
|
6590
|
+
"external": true
|
|
6591
|
+
},
|
|
6592
|
+
{
|
|
6593
|
+
"path": "src/Layout/index.tsx",
|
|
6594
|
+
"kind": "import-statement",
|
|
6595
|
+
"original": "../../../../Layout"
|
|
6596
|
+
},
|
|
6597
|
+
{
|
|
6598
|
+
"path": "src/Text/index.tsx",
|
|
6599
|
+
"kind": "import-statement",
|
|
6600
|
+
"original": "../../../../Text"
|
|
6601
|
+
},
|
|
6602
|
+
{
|
|
6603
|
+
"path": "<define:process.env>",
|
|
6604
|
+
"kind": "import-statement",
|
|
6605
|
+
"external": true
|
|
6606
|
+
}
|
|
6607
|
+
],
|
|
6608
|
+
"format": "esm"
|
|
6609
|
+
},
|
|
6610
|
+
"src/Prebuilt/components/Polls/Voting/Leaderboard.tsx": {
|
|
6611
|
+
"bytes": 4333,
|
|
6612
|
+
"imports": [
|
|
6613
|
+
{
|
|
6614
|
+
"path": "react",
|
|
6615
|
+
"kind": "import-statement",
|
|
6616
|
+
"external": true
|
|
6617
|
+
},
|
|
6618
|
+
{
|
|
6619
|
+
"path": "@100mslive/react-sdk",
|
|
6620
|
+
"kind": "import-statement",
|
|
6621
|
+
"external": true
|
|
6622
|
+
},
|
|
6623
|
+
{
|
|
6624
|
+
"path": "@100mslive/react-icons",
|
|
6625
|
+
"kind": "import-statement",
|
|
6626
|
+
"external": true
|
|
6627
|
+
},
|
|
6628
|
+
{
|
|
6629
|
+
"path": "src/Layout/index.tsx",
|
|
6630
|
+
"kind": "import-statement",
|
|
6631
|
+
"original": "../../../../Layout"
|
|
6632
|
+
},
|
|
6633
|
+
{
|
|
6634
|
+
"path": "src/Loading/index.ts",
|
|
6635
|
+
"kind": "import-statement",
|
|
6636
|
+
"original": "../../../../Loading"
|
|
6637
|
+
},
|
|
6638
|
+
{
|
|
6639
|
+
"path": "src/Text/index.tsx",
|
|
6640
|
+
"kind": "import-statement",
|
|
6641
|
+
"original": "../../../../Text"
|
|
6642
|
+
},
|
|
6643
|
+
{
|
|
6644
|
+
"path": "src/Prebuilt/components/Polls/Voting/LeaderboardEntry.tsx",
|
|
6645
|
+
"kind": "import-statement",
|
|
6646
|
+
"original": "./LeaderboardEntry"
|
|
6647
|
+
},
|
|
6648
|
+
{
|
|
6649
|
+
"path": "src/Prebuilt/components/AppData/useSidepane.js",
|
|
6650
|
+
"kind": "import-statement",
|
|
6651
|
+
"original": "../../AppData/useSidepane"
|
|
6652
|
+
},
|
|
6653
|
+
{
|
|
6654
|
+
"path": "src/Prebuilt/components/AppData/useUISettings.js",
|
|
6655
|
+
"kind": "import-statement",
|
|
6656
|
+
"original": "../../AppData/useUISettings"
|
|
6657
|
+
},
|
|
6658
|
+
{
|
|
6659
|
+
"path": "src/Prebuilt/components/Polls/common/StatusIndicator.jsx",
|
|
6660
|
+
"kind": "import-statement",
|
|
6661
|
+
"original": "../common/StatusIndicator"
|
|
6662
|
+
},
|
|
6663
|
+
{
|
|
6664
|
+
"path": "src/Prebuilt/common/constants.ts",
|
|
6665
|
+
"kind": "import-statement",
|
|
6666
|
+
"original": "../../../common/constants"
|
|
6667
|
+
},
|
|
6668
|
+
{
|
|
6669
|
+
"path": "<define:process.env>",
|
|
6670
|
+
"kind": "import-statement",
|
|
6671
|
+
"external": true
|
|
6672
|
+
},
|
|
6673
|
+
{
|
|
6674
|
+
"path": "<runtime>",
|
|
6675
|
+
"kind": "import-statement",
|
|
6676
|
+
"external": true
|
|
6677
|
+
}
|
|
6678
|
+
],
|
|
6679
|
+
"format": "esm"
|
|
6680
|
+
},
|
|
6681
|
+
"src/Prebuilt/components/Polls/Voting/PeerParticipationSummary.tsx": {
|
|
6682
|
+
"bytes": 1361,
|
|
6683
|
+
"imports": [
|
|
6684
|
+
{
|
|
6685
|
+
"path": "react",
|
|
6686
|
+
"kind": "import-statement",
|
|
6687
|
+
"external": true
|
|
6688
|
+
},
|
|
6689
|
+
{
|
|
6690
|
+
"path": "@100mslive/react-sdk",
|
|
6691
|
+
"kind": "import-statement",
|
|
6692
|
+
"external": true
|
|
6693
|
+
},
|
|
6694
|
+
{
|
|
6695
|
+
"path": "src/Layout/index.tsx",
|
|
6696
|
+
"kind": "import-statement",
|
|
6697
|
+
"original": "../../../../Layout"
|
|
6698
|
+
},
|
|
6699
|
+
{
|
|
6700
|
+
"path": "src/Text/index.tsx",
|
|
6701
|
+
"kind": "import-statement",
|
|
6702
|
+
"original": "../../../../Text"
|
|
6703
|
+
},
|
|
6704
|
+
{
|
|
6705
|
+
"path": "src/Prebuilt/common/utils.js",
|
|
6706
|
+
"kind": "import-statement",
|
|
6707
|
+
"original": "../../../common/utils"
|
|
6708
|
+
},
|
|
6709
|
+
{
|
|
6710
|
+
"path": "<define:process.env>",
|
|
6711
|
+
"kind": "import-statement",
|
|
6712
|
+
"external": true
|
|
6713
|
+
}
|
|
6714
|
+
],
|
|
6715
|
+
"format": "esm"
|
|
6716
|
+
},
|
|
6488
6717
|
"src/Prebuilt/components/Polls/Voting/QuestionCard.jsx": {
|
|
6489
|
-
"bytes":
|
|
6718
|
+
"bytes": 8945,
|
|
6490
6719
|
"imports": [
|
|
6491
6720
|
{
|
|
6492
6721
|
"path": "react",
|
|
@@ -6542,13 +6771,18 @@
|
|
|
6542
6771
|
"format": "esm"
|
|
6543
6772
|
},
|
|
6544
6773
|
"src/Prebuilt/components/Polls/Voting/StandardVoting.jsx": {
|
|
6545
|
-
"bytes":
|
|
6774
|
+
"bytes": 1274,
|
|
6546
6775
|
"imports": [
|
|
6547
6776
|
{
|
|
6548
6777
|
"path": "react",
|
|
6549
6778
|
"kind": "import-statement",
|
|
6550
6779
|
"external": true
|
|
6551
6780
|
},
|
|
6781
|
+
{
|
|
6782
|
+
"path": "src/Prebuilt/components/Polls/Voting/PeerParticipationSummary.tsx",
|
|
6783
|
+
"kind": "import-statement",
|
|
6784
|
+
"original": "./PeerParticipationSummary"
|
|
6785
|
+
},
|
|
6552
6786
|
{
|
|
6553
6787
|
"path": "src/Prebuilt/components/Polls/Voting/QuestionCard.jsx",
|
|
6554
6788
|
"kind": "import-statement",
|
|
@@ -6584,7 +6818,7 @@
|
|
|
6584
6818
|
"format": "esm"
|
|
6585
6819
|
},
|
|
6586
6820
|
"src/Prebuilt/components/Polls/Voting/Voting.jsx": {
|
|
6587
|
-
"bytes":
|
|
6821
|
+
"bytes": 3792,
|
|
6588
6822
|
"imports": [
|
|
6589
6823
|
{
|
|
6590
6824
|
"path": "react",
|
|
@@ -6645,7 +6879,7 @@
|
|
|
6645
6879
|
"format": "esm"
|
|
6646
6880
|
},
|
|
6647
6881
|
"src/Prebuilt/components/Polls/Polls.tsx": {
|
|
6648
|
-
"bytes":
|
|
6882
|
+
"bytes": 1140,
|
|
6649
6883
|
"imports": [
|
|
6650
6884
|
{
|
|
6651
6885
|
"path": "react",
|
|
@@ -6662,6 +6896,11 @@
|
|
|
6662
6896
|
"kind": "import-statement",
|
|
6663
6897
|
"original": "./CreateQuestions/CreateQuestions"
|
|
6664
6898
|
},
|
|
6899
|
+
{
|
|
6900
|
+
"path": "src/Prebuilt/components/Polls/Voting/Leaderboard.tsx",
|
|
6901
|
+
"kind": "import-statement",
|
|
6902
|
+
"original": "./Voting/Leaderboard"
|
|
6903
|
+
},
|
|
6665
6904
|
{
|
|
6666
6905
|
"path": "src/Prebuilt/components/Polls/Voting/Voting.jsx",
|
|
6667
6906
|
"kind": "import-statement",
|
|
@@ -6735,7 +6974,7 @@
|
|
|
6735
6974
|
"format": "esm"
|
|
6736
6975
|
},
|
|
6737
6976
|
"../hms-video-store/dist/index.js": {
|
|
6738
|
-
"bytes":
|
|
6977
|
+
"bytes": 67205,
|
|
6739
6978
|
"imports": [
|
|
6740
6979
|
{
|
|
6741
6980
|
"path": "../../node_modules/reselect/es/index.js",
|
|
@@ -6927,24 +7166,8 @@
|
|
|
6927
7166
|
],
|
|
6928
7167
|
"format": "esm"
|
|
6929
7168
|
},
|
|
6930
|
-
"src/Prebuilt/components/Chat/useUnreadCount.ts": {
|
|
6931
|
-
"bytes": 566,
|
|
6932
|
-
"imports": [
|
|
6933
|
-
{
|
|
6934
|
-
"path": "@100mslive/react-sdk",
|
|
6935
|
-
"kind": "import-statement",
|
|
6936
|
-
"external": true
|
|
6937
|
-
},
|
|
6938
|
-
{
|
|
6939
|
-
"path": "<define:process.env>",
|
|
6940
|
-
"kind": "import-statement",
|
|
6941
|
-
"external": true
|
|
6942
|
-
}
|
|
6943
|
-
],
|
|
6944
|
-
"format": "esm"
|
|
6945
|
-
},
|
|
6946
7169
|
"src/Prebuilt/components/Chat/ChatBody.jsx": {
|
|
6947
|
-
"bytes":
|
|
7170
|
+
"bytes": 22510,
|
|
6948
7171
|
"imports": [
|
|
6949
7172
|
{
|
|
6950
7173
|
"path": "react",
|
|
@@ -7051,11 +7274,6 @@
|
|
|
7051
7274
|
"kind": "import-statement",
|
|
7052
7275
|
"original": "../hooks/useSetPinnedMessages"
|
|
7053
7276
|
},
|
|
7054
|
-
{
|
|
7055
|
-
"path": "src/Prebuilt/components/Chat/useUnreadCount.ts",
|
|
7056
|
-
"kind": "import-statement",
|
|
7057
|
-
"original": "./useUnreadCount"
|
|
7058
|
-
},
|
|
7059
7277
|
{
|
|
7060
7278
|
"path": "src/Prebuilt/common/constants.ts",
|
|
7061
7279
|
"kind": "import-statement",
|
|
@@ -7075,7 +7293,7 @@
|
|
|
7075
7293
|
"format": "esm"
|
|
7076
7294
|
},
|
|
7077
7295
|
"src/Prebuilt/components/Chat/ChatSelector.tsx": {
|
|
7078
|
-
"bytes":
|
|
7296
|
+
"bytes": 6998,
|
|
7079
7297
|
"imports": [
|
|
7080
7298
|
{
|
|
7081
7299
|
"path": "react",
|
|
@@ -7108,7 +7326,7 @@
|
|
|
7108
7326
|
"original": "../../../Theme"
|
|
7109
7327
|
},
|
|
7110
7328
|
{
|
|
7111
|
-
"path": "src/Prebuilt/components/Footer/ParticipantList.
|
|
7329
|
+
"path": "src/Prebuilt/components/Footer/ParticipantList.tsx",
|
|
7112
7330
|
"kind": "import-statement",
|
|
7113
7331
|
"original": "../Footer/ParticipantList"
|
|
7114
7332
|
},
|
|
@@ -7146,7 +7364,7 @@
|
|
|
7146
7364
|
"format": "esm"
|
|
7147
7365
|
},
|
|
7148
7366
|
"src/Prebuilt/components/Chat/ChatSelectorContainer.tsx": {
|
|
7149
|
-
"bytes":
|
|
7367
|
+
"bytes": 5829,
|
|
7150
7368
|
"imports": [
|
|
7151
7369
|
{
|
|
7152
7370
|
"path": "react",
|
|
@@ -7158,11 +7376,6 @@
|
|
|
7158
7376
|
"kind": "import-statement",
|
|
7159
7377
|
"external": true
|
|
7160
7378
|
},
|
|
7161
|
-
{
|
|
7162
|
-
"path": "@100mslive/react-sdk",
|
|
7163
|
-
"kind": "import-statement",
|
|
7164
|
-
"external": true
|
|
7165
|
-
},
|
|
7166
7379
|
{
|
|
7167
7380
|
"path": "@100mslive/react-icons",
|
|
7168
7381
|
"kind": "import-statement",
|
|
@@ -7269,7 +7482,7 @@
|
|
|
7269
7482
|
"format": "esm"
|
|
7270
7483
|
},
|
|
7271
7484
|
"src/Prebuilt/components/Chat/ChatFooter.tsx": {
|
|
7272
|
-
"bytes":
|
|
7485
|
+
"bytes": 9022,
|
|
7273
7486
|
"imports": [
|
|
7274
7487
|
{
|
|
7275
7488
|
"path": "react",
|
|
@@ -7341,6 +7554,11 @@
|
|
|
7341
7554
|
"kind": "import-statement",
|
|
7342
7555
|
"original": "./useEmojiPickerStyles"
|
|
7343
7556
|
},
|
|
7557
|
+
{
|
|
7558
|
+
"path": "src/Prebuilt/common/hooks.ts",
|
|
7559
|
+
"kind": "import-statement",
|
|
7560
|
+
"original": "../../common/hooks"
|
|
7561
|
+
},
|
|
7344
7562
|
{
|
|
7345
7563
|
"path": "src/Prebuilt/common/constants.ts",
|
|
7346
7564
|
"kind": "import-statement",
|
|
@@ -7458,7 +7676,7 @@
|
|
|
7458
7676
|
"format": "esm"
|
|
7459
7677
|
},
|
|
7460
7678
|
"src/Prebuilt/components/Chat/PinnedMessage.tsx": {
|
|
7461
|
-
"bytes":
|
|
7679
|
+
"bytes": 5018,
|
|
7462
7680
|
"imports": [
|
|
7463
7681
|
{
|
|
7464
7682
|
"path": "react",
|
|
@@ -7539,7 +7757,7 @@
|
|
|
7539
7757
|
"format": "esm"
|
|
7540
7758
|
},
|
|
7541
7759
|
"src/Prebuilt/components/Chat/Chat.jsx": {
|
|
7542
|
-
"bytes":
|
|
7760
|
+
"bytes": 4353,
|
|
7543
7761
|
"imports": [
|
|
7544
7762
|
{
|
|
7545
7763
|
"path": "react",
|
|
@@ -7606,21 +7824,11 @@
|
|
|
7606
7824
|
"kind": "import-statement",
|
|
7607
7825
|
"original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
|
7608
7826
|
},
|
|
7609
|
-
{
|
|
7610
|
-
"path": "src/Prebuilt/components/AppData/useUISettings.js",
|
|
7611
|
-
"kind": "import-statement",
|
|
7612
|
-
"original": "../AppData/useUISettings"
|
|
7613
|
-
},
|
|
7614
7827
|
{
|
|
7615
7828
|
"path": "src/Prebuilt/components/hooks/useSetPinnedMessages.ts",
|
|
7616
7829
|
"kind": "import-statement",
|
|
7617
7830
|
"original": "../hooks/useSetPinnedMessages"
|
|
7618
7831
|
},
|
|
7619
|
-
{
|
|
7620
|
-
"path": "src/Prebuilt/components/Chat/useUnreadCount.ts",
|
|
7621
|
-
"kind": "import-statement",
|
|
7622
|
-
"original": "./useUnreadCount"
|
|
7623
|
-
},
|
|
7624
7832
|
{
|
|
7625
7833
|
"path": "src/Prebuilt/common/constants.ts",
|
|
7626
7834
|
"kind": "import-statement",
|
|
@@ -7635,7 +7843,7 @@
|
|
|
7635
7843
|
"format": "esm"
|
|
7636
7844
|
},
|
|
7637
7845
|
"src/Prebuilt/components/Footer/PaginatedParticipants.tsx": {
|
|
7638
|
-
"bytes":
|
|
7846
|
+
"bytes": 4431,
|
|
7639
7847
|
"imports": [
|
|
7640
7848
|
{
|
|
7641
7849
|
"path": "react",
|
|
@@ -7688,7 +7896,7 @@
|
|
|
7688
7896
|
"original": "../../../Text"
|
|
7689
7897
|
},
|
|
7690
7898
|
{
|
|
7691
|
-
"path": "src/Prebuilt/components/Footer/ParticipantList.
|
|
7899
|
+
"path": "src/Prebuilt/components/Footer/ParticipantList.tsx",
|
|
7692
7900
|
"kind": "import-statement",
|
|
7693
7901
|
"original": "./ParticipantList"
|
|
7694
7902
|
},
|
|
@@ -7767,7 +7975,7 @@
|
|
|
7767
7975
|
"format": "esm"
|
|
7768
7976
|
},
|
|
7769
7977
|
"src/Prebuilt/components/SidePaneTabs.tsx": {
|
|
7770
|
-
"bytes":
|
|
7978
|
+
"bytes": 6933,
|
|
7771
7979
|
"imports": [
|
|
7772
7980
|
{
|
|
7773
7981
|
"path": "react",
|
|
@@ -7805,7 +8013,7 @@
|
|
|
7805
8013
|
"original": "./Footer/PaginatedParticipants"
|
|
7806
8014
|
},
|
|
7807
8015
|
{
|
|
7808
|
-
"path": "src/Prebuilt/components/Footer/ParticipantList.
|
|
8016
|
+
"path": "src/Prebuilt/components/Footer/ParticipantList.tsx",
|
|
7809
8017
|
"kind": "import-statement",
|
|
7810
8018
|
"original": "./Footer/ParticipantList"
|
|
7811
8019
|
},
|
|
@@ -9000,7 +9208,7 @@
|
|
|
9000
9208
|
"format": "esm"
|
|
9001
9209
|
},
|
|
9002
9210
|
"src/Prebuilt/components/VideoLayouts/EqualProminence.tsx": {
|
|
9003
|
-
"bytes":
|
|
9211
|
+
"bytes": 2325,
|
|
9004
9212
|
"imports": [
|
|
9005
9213
|
{
|
|
9006
9214
|
"path": "react",
|
|
@@ -9372,7 +9580,7 @@
|
|
|
9372
9580
|
"format": "esm"
|
|
9373
9581
|
},
|
|
9374
9582
|
"src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx": {
|
|
9375
|
-
"bytes":
|
|
9583
|
+
"bytes": 2106,
|
|
9376
9584
|
"imports": [
|
|
9377
9585
|
{
|
|
9378
9586
|
"path": "react",
|
|
@@ -9438,7 +9646,7 @@
|
|
|
9438
9646
|
"format": "esm"
|
|
9439
9647
|
},
|
|
9440
9648
|
"src/Prebuilt/common/PeersSorter.ts": {
|
|
9441
|
-
"bytes":
|
|
9649
|
+
"bytes": 3284,
|
|
9442
9650
|
"imports": [
|
|
9443
9651
|
{
|
|
9444
9652
|
"path": "@100mslive/react-sdk",
|
|
@@ -9454,7 +9662,7 @@
|
|
|
9454
9662
|
"format": "esm"
|
|
9455
9663
|
},
|
|
9456
9664
|
"src/Prebuilt/components/VideoLayouts/GridLayout.tsx": {
|
|
9457
|
-
"bytes":
|
|
9665
|
+
"bytes": 4543,
|
|
9458
9666
|
"imports": [
|
|
9459
9667
|
{
|
|
9460
9668
|
"path": "react",
|
|
@@ -9501,6 +9709,11 @@
|
|
|
9501
9709
|
"kind": "import-statement",
|
|
9502
9710
|
"original": "../../common/PeersSorter"
|
|
9503
9711
|
},
|
|
9712
|
+
{
|
|
9713
|
+
"path": "src/Prebuilt/common/constants.ts",
|
|
9714
|
+
"kind": "import-statement",
|
|
9715
|
+
"original": "../../common/constants"
|
|
9716
|
+
},
|
|
9504
9717
|
{
|
|
9505
9718
|
"path": "<define:process.env>",
|
|
9506
9719
|
"kind": "import-statement",
|
|
@@ -9642,6 +9855,78 @@
|
|
|
9642
9855
|
],
|
|
9643
9856
|
"format": "esm"
|
|
9644
9857
|
},
|
|
9858
|
+
"src/Prebuilt/layouts/WhiteboardView.tsx": {
|
|
9859
|
+
"bytes": 1906,
|
|
9860
|
+
"imports": [
|
|
9861
|
+
{
|
|
9862
|
+
"path": "react",
|
|
9863
|
+
"kind": "import-statement",
|
|
9864
|
+
"external": true
|
|
9865
|
+
},
|
|
9866
|
+
{
|
|
9867
|
+
"path": "@100mslive/react-sdk",
|
|
9868
|
+
"kind": "import-statement",
|
|
9869
|
+
"external": true
|
|
9870
|
+
},
|
|
9871
|
+
{
|
|
9872
|
+
"path": "src/Prebuilt/components/SecondaryTiles.tsx",
|
|
9873
|
+
"kind": "import-statement",
|
|
9874
|
+
"original": "../components/SecondaryTiles"
|
|
9875
|
+
},
|
|
9876
|
+
{
|
|
9877
|
+
"path": "src/Prebuilt/components/VideoLayouts/ProminenceLayout.tsx",
|
|
9878
|
+
"kind": "import-statement",
|
|
9879
|
+
"original": "../components/VideoLayouts/ProminenceLayout"
|
|
9880
|
+
},
|
|
9881
|
+
{
|
|
9882
|
+
"path": "src/Layout/index.tsx",
|
|
9883
|
+
"kind": "import-statement",
|
|
9884
|
+
"original": "../../Layout"
|
|
9885
|
+
},
|
|
9886
|
+
{
|
|
9887
|
+
"path": "src/Prebuilt/components/AppData/useUISettings.js",
|
|
9888
|
+
"kind": "import-statement",
|
|
9889
|
+
"original": "../components/AppData/useUISettings"
|
|
9890
|
+
},
|
|
9891
|
+
{
|
|
9892
|
+
"path": "src/Prebuilt/common/constants.ts",
|
|
9893
|
+
"kind": "import-statement",
|
|
9894
|
+
"original": "../common/constants"
|
|
9895
|
+
},
|
|
9896
|
+
{
|
|
9897
|
+
"path": "<define:process.env>",
|
|
9898
|
+
"kind": "import-statement",
|
|
9899
|
+
"external": true
|
|
9900
|
+
}
|
|
9901
|
+
],
|
|
9902
|
+
"format": "esm"
|
|
9903
|
+
},
|
|
9904
|
+
"src/Prebuilt/components/hooks/useCloseScreenshareWhiteboard.tsx": {
|
|
9905
|
+
"bytes": 1020,
|
|
9906
|
+
"imports": [
|
|
9907
|
+
{
|
|
9908
|
+
"path": "react",
|
|
9909
|
+
"kind": "import-statement",
|
|
9910
|
+
"external": true
|
|
9911
|
+
},
|
|
9912
|
+
{
|
|
9913
|
+
"path": "react-use",
|
|
9914
|
+
"kind": "import-statement",
|
|
9915
|
+
"external": true
|
|
9916
|
+
},
|
|
9917
|
+
{
|
|
9918
|
+
"path": "@100mslive/react-sdk",
|
|
9919
|
+
"kind": "import-statement",
|
|
9920
|
+
"external": true
|
|
9921
|
+
},
|
|
9922
|
+
{
|
|
9923
|
+
"path": "<define:process.env>",
|
|
9924
|
+
"kind": "import-statement",
|
|
9925
|
+
"external": true
|
|
9926
|
+
}
|
|
9927
|
+
],
|
|
9928
|
+
"format": "esm"
|
|
9929
|
+
},
|
|
9645
9930
|
"src/Prebuilt/components/HlsStatsOverlay.jsx": {
|
|
9646
9931
|
"bytes": 3131,
|
|
9647
9932
|
"imports": [
|
|
@@ -9695,7 +9980,7 @@
|
|
|
9695
9980
|
"format": "esm"
|
|
9696
9981
|
},
|
|
9697
9982
|
"src/Prebuilt/components/HMSVideo/HMSVideo.jsx": {
|
|
9698
|
-
"bytes":
|
|
9983
|
+
"bytes": 1039,
|
|
9699
9984
|
"imports": [
|
|
9700
9985
|
{
|
|
9701
9986
|
"path": "react",
|
|
@@ -9902,8 +10187,34 @@
|
|
|
9902
10187
|
],
|
|
9903
10188
|
"format": "esm"
|
|
9904
10189
|
},
|
|
9905
|
-
"src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.jsx": {
|
|
9906
|
-
"bytes": 942,
|
|
10190
|
+
"src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.jsx": {
|
|
10191
|
+
"bytes": 942,
|
|
10192
|
+
"imports": [
|
|
10193
|
+
{
|
|
10194
|
+
"path": "react",
|
|
10195
|
+
"kind": "import-statement",
|
|
10196
|
+
"external": true
|
|
10197
|
+
},
|
|
10198
|
+
{
|
|
10199
|
+
"path": "src/index.ts",
|
|
10200
|
+
"kind": "import-statement",
|
|
10201
|
+
"original": "../../../"
|
|
10202
|
+
},
|
|
10203
|
+
{
|
|
10204
|
+
"path": "src/Prebuilt/primitives/DialogContent.jsx",
|
|
10205
|
+
"kind": "import-statement",
|
|
10206
|
+
"original": "../../primitives/DialogContent"
|
|
10207
|
+
},
|
|
10208
|
+
{
|
|
10209
|
+
"path": "<define:process.env>",
|
|
10210
|
+
"kind": "import-statement",
|
|
10211
|
+
"external": true
|
|
10212
|
+
}
|
|
10213
|
+
],
|
|
10214
|
+
"format": "esm"
|
|
10215
|
+
},
|
|
10216
|
+
"src/Prebuilt/components/HMSVideo/HLSCaptionSelector.tsx": {
|
|
10217
|
+
"bytes": 551,
|
|
9907
10218
|
"imports": [
|
|
9908
10219
|
{
|
|
9909
10220
|
"path": "react",
|
|
@@ -9911,14 +10222,14 @@
|
|
|
9911
10222
|
"external": true
|
|
9912
10223
|
},
|
|
9913
10224
|
{
|
|
9914
|
-
"path": "
|
|
10225
|
+
"path": "@100mslive/react-icons",
|
|
9915
10226
|
"kind": "import-statement",
|
|
9916
|
-
"
|
|
10227
|
+
"external": true
|
|
9917
10228
|
},
|
|
9918
10229
|
{
|
|
9919
|
-
"path": "src/
|
|
10230
|
+
"path": "src/index.ts",
|
|
9920
10231
|
"kind": "import-statement",
|
|
9921
|
-
"original": "
|
|
10232
|
+
"original": "../../../"
|
|
9922
10233
|
},
|
|
9923
10234
|
{
|
|
9924
10235
|
"path": "<define:process.env>",
|
|
@@ -9955,7 +10266,7 @@
|
|
|
9955
10266
|
"format": "esm"
|
|
9956
10267
|
},
|
|
9957
10268
|
"src/Prebuilt/layouts/HLSView.jsx": {
|
|
9958
|
-
"bytes":
|
|
10269
|
+
"bytes": 17061,
|
|
9959
10270
|
"imports": [
|
|
9960
10271
|
{
|
|
9961
10272
|
"path": "react",
|
|
@@ -10007,6 +10318,11 @@
|
|
|
10007
10318
|
"kind": "import-statement",
|
|
10008
10319
|
"original": "../components/HMSVideo/HLSAutoplayBlockedPrompt"
|
|
10009
10320
|
},
|
|
10321
|
+
{
|
|
10322
|
+
"path": "src/Prebuilt/components/HMSVideo/HLSCaptionSelector.tsx",
|
|
10323
|
+
"kind": "import-statement",
|
|
10324
|
+
"original": "../components/HMSVideo/HLSCaptionSelector"
|
|
10325
|
+
},
|
|
10010
10326
|
{
|
|
10011
10327
|
"path": "src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx",
|
|
10012
10328
|
"kind": "import-statement",
|
|
@@ -10017,6 +10333,11 @@
|
|
|
10017
10333
|
"kind": "import-statement",
|
|
10018
10334
|
"original": "../components/Toast/ToastManager"
|
|
10019
10335
|
},
|
|
10336
|
+
{
|
|
10337
|
+
"path": "src/Button/index.tsx",
|
|
10338
|
+
"kind": "import-statement",
|
|
10339
|
+
"original": "../../Button"
|
|
10340
|
+
},
|
|
10020
10341
|
{
|
|
10021
10342
|
"path": "src/IconButton/index.tsx",
|
|
10022
10343
|
"kind": "import-statement",
|
|
@@ -10047,6 +10368,11 @@
|
|
|
10047
10368
|
"kind": "import-statement",
|
|
10048
10369
|
"original": "../../Tooltip"
|
|
10049
10370
|
},
|
|
10371
|
+
{
|
|
10372
|
+
"path": "src/Prebuilt/components/AppData/useSidepane.js",
|
|
10373
|
+
"kind": "import-statement",
|
|
10374
|
+
"original": "../components/AppData/useSidepane"
|
|
10375
|
+
},
|
|
10050
10376
|
{
|
|
10051
10377
|
"path": "src/Prebuilt/common/constants.ts",
|
|
10052
10378
|
"kind": "import-statement",
|
|
@@ -10066,7 +10392,7 @@
|
|
|
10066
10392
|
"format": "esm"
|
|
10067
10393
|
},
|
|
10068
10394
|
"src/Prebuilt/layouts/VideoStreamingSection.tsx": {
|
|
10069
|
-
"bytes":
|
|
10395
|
+
"bytes": 3913,
|
|
10070
10396
|
"imports": [
|
|
10071
10397
|
{
|
|
10072
10398
|
"path": "react",
|
|
@@ -10118,11 +10444,21 @@
|
|
|
10118
10444
|
"kind": "import-statement",
|
|
10119
10445
|
"original": "./WaitingView"
|
|
10120
10446
|
},
|
|
10447
|
+
{
|
|
10448
|
+
"path": "src/Prebuilt/layouts/WhiteboardView.tsx",
|
|
10449
|
+
"kind": "import-statement",
|
|
10450
|
+
"original": "./WhiteboardView"
|
|
10451
|
+
},
|
|
10121
10452
|
{
|
|
10122
10453
|
"path": "src/Prebuilt/components/AppData/useUISettings.js",
|
|
10123
10454
|
"kind": "import-statement",
|
|
10124
10455
|
"original": "../components/AppData/useUISettings"
|
|
10125
10456
|
},
|
|
10457
|
+
{
|
|
10458
|
+
"path": "src/Prebuilt/components/hooks/useCloseScreenshareWhiteboard.tsx",
|
|
10459
|
+
"kind": "import-statement",
|
|
10460
|
+
"original": "../components/hooks/useCloseScreenshareWhiteboard"
|
|
10461
|
+
},
|
|
10126
10462
|
{
|
|
10127
10463
|
"path": "src/Prebuilt/common/constants.ts",
|
|
10128
10464
|
"kind": "import-statement",
|
|
@@ -10274,8 +10610,34 @@
|
|
|
10274
10610
|
],
|
|
10275
10611
|
"format": "esm"
|
|
10276
10612
|
},
|
|
10613
|
+
"src/Prebuilt/components/PreviousRoleInMetadata.tsx": {
|
|
10614
|
+
"bytes": 754,
|
|
10615
|
+
"imports": [
|
|
10616
|
+
{
|
|
10617
|
+
"path": "react",
|
|
10618
|
+
"kind": "import-statement",
|
|
10619
|
+
"external": true
|
|
10620
|
+
},
|
|
10621
|
+
{
|
|
10622
|
+
"path": "@100mslive/react-sdk",
|
|
10623
|
+
"kind": "import-statement",
|
|
10624
|
+
"external": true
|
|
10625
|
+
},
|
|
10626
|
+
{
|
|
10627
|
+
"path": "src/Prebuilt/components/hooks/useMetadata.jsx",
|
|
10628
|
+
"kind": "import-statement",
|
|
10629
|
+
"original": "./hooks/useMetadata"
|
|
10630
|
+
},
|
|
10631
|
+
{
|
|
10632
|
+
"path": "<define:process.env>",
|
|
10633
|
+
"kind": "import-statement",
|
|
10634
|
+
"external": true
|
|
10635
|
+
}
|
|
10636
|
+
],
|
|
10637
|
+
"format": "esm"
|
|
10638
|
+
},
|
|
10277
10639
|
"src/Prebuilt/components/ConferenceScreen.tsx": {
|
|
10278
|
-
"bytes":
|
|
10640
|
+
"bytes": 6700,
|
|
10279
10641
|
"imports": [
|
|
10280
10642
|
{
|
|
10281
10643
|
"path": "react",
|
|
@@ -10342,6 +10704,11 @@
|
|
|
10342
10704
|
"kind": "import-statement",
|
|
10343
10705
|
"original": "./Header"
|
|
10344
10706
|
},
|
|
10707
|
+
{
|
|
10708
|
+
"path": "src/Prebuilt/components/PreviousRoleInMetadata.tsx",
|
|
10709
|
+
"kind": "import-statement",
|
|
10710
|
+
"original": "./PreviousRoleInMetadata"
|
|
10711
|
+
},
|
|
10345
10712
|
{
|
|
10346
10713
|
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
|
10347
10714
|
"kind": "import-statement",
|
|
@@ -10500,7 +10867,7 @@
|
|
|
10500
10867
|
"format": "esm"
|
|
10501
10868
|
},
|
|
10502
10869
|
"src/Prebuilt/AppStateContext.tsx": {
|
|
10503
|
-
"bytes":
|
|
10870
|
+
"bytes": 2560,
|
|
10504
10871
|
"imports": [
|
|
10505
10872
|
{
|
|
10506
10873
|
"path": "react",
|
|
@@ -10663,7 +11030,7 @@
|
|
|
10663
11030
|
"format": "esm"
|
|
10664
11031
|
},
|
|
10665
11032
|
"src/Prebuilt/components/Toast/ToastConfig.jsx": {
|
|
10666
|
-
"bytes":
|
|
11033
|
+
"bytes": 5342,
|
|
10667
11034
|
"imports": [
|
|
10668
11035
|
{
|
|
10669
11036
|
"path": "react",
|
|
@@ -10704,6 +11071,11 @@
|
|
|
10704
11071
|
"path": "<define:process.env>",
|
|
10705
11072
|
"kind": "import-statement",
|
|
10706
11073
|
"external": true
|
|
11074
|
+
},
|
|
11075
|
+
{
|
|
11076
|
+
"path": "<runtime>",
|
|
11077
|
+
"kind": "import-statement",
|
|
11078
|
+
"external": true
|
|
10707
11079
|
}
|
|
10708
11080
|
],
|
|
10709
11081
|
"format": "esm"
|
|
@@ -10806,6 +11178,37 @@
|
|
|
10806
11178
|
],
|
|
10807
11179
|
"format": "esm"
|
|
10808
11180
|
},
|
|
11181
|
+
"src/Prebuilt/components/Notifications/HandRaisedNotifications.tsx": {
|
|
11182
|
+
"bytes": 1191,
|
|
11183
|
+
"imports": [
|
|
11184
|
+
{
|
|
11185
|
+
"path": "react",
|
|
11186
|
+
"kind": "import-statement",
|
|
11187
|
+
"external": true
|
|
11188
|
+
},
|
|
11189
|
+
{
|
|
11190
|
+
"path": "@100mslive/react-sdk",
|
|
11191
|
+
"kind": "import-statement",
|
|
11192
|
+
"external": true
|
|
11193
|
+
},
|
|
11194
|
+
{
|
|
11195
|
+
"path": "src/Prebuilt/components/Toast/ToastBatcher.js",
|
|
11196
|
+
"kind": "import-statement",
|
|
11197
|
+
"original": "../Toast/ToastBatcher"
|
|
11198
|
+
},
|
|
11199
|
+
{
|
|
11200
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
|
11201
|
+
"kind": "import-statement",
|
|
11202
|
+
"original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
|
11203
|
+
},
|
|
11204
|
+
{
|
|
11205
|
+
"path": "<define:process.env>",
|
|
11206
|
+
"kind": "import-statement",
|
|
11207
|
+
"external": true
|
|
11208
|
+
}
|
|
11209
|
+
],
|
|
11210
|
+
"format": "esm"
|
|
11211
|
+
},
|
|
10809
11212
|
"src/Prebuilt/components/Notifications/InitErrorModal.tsx": {
|
|
10810
11213
|
"bytes": 1515,
|
|
10811
11214
|
"imports": [
|
|
@@ -10838,7 +11241,7 @@
|
|
|
10838
11241
|
"format": "esm"
|
|
10839
11242
|
},
|
|
10840
11243
|
"src/Prebuilt/components/Notifications/PeerNotifications.tsx": {
|
|
10841
|
-
"bytes":
|
|
11244
|
+
"bytes": 1808,
|
|
10842
11245
|
"imports": [
|
|
10843
11246
|
{
|
|
10844
11247
|
"path": "react",
|
|
@@ -11047,7 +11450,7 @@
|
|
|
11047
11450
|
"format": "esm"
|
|
11048
11451
|
},
|
|
11049
11452
|
"src/Prebuilt/components/Notifications/Notifications.tsx": {
|
|
11050
|
-
"bytes":
|
|
11453
|
+
"bytes": 8689,
|
|
11051
11454
|
"imports": [
|
|
11052
11455
|
{
|
|
11053
11456
|
"path": "react",
|
|
@@ -11059,6 +11462,11 @@
|
|
|
11059
11462
|
"kind": "import-statement",
|
|
11060
11463
|
"external": true
|
|
11061
11464
|
},
|
|
11465
|
+
{
|
|
11466
|
+
"path": "@100mslive/react-icons",
|
|
11467
|
+
"kind": "import-statement",
|
|
11468
|
+
"external": true
|
|
11469
|
+
},
|
|
11062
11470
|
{
|
|
11063
11471
|
"path": "src/index.ts",
|
|
11064
11472
|
"kind": "import-statement",
|
|
@@ -11089,6 +11497,11 @@
|
|
|
11089
11497
|
"kind": "import-statement",
|
|
11090
11498
|
"original": "./ChatNotifications"
|
|
11091
11499
|
},
|
|
11500
|
+
{
|
|
11501
|
+
"path": "src/Prebuilt/components/Notifications/HandRaisedNotifications.tsx",
|
|
11502
|
+
"kind": "import-statement",
|
|
11503
|
+
"original": "./HandRaisedNotifications"
|
|
11504
|
+
},
|
|
11092
11505
|
{
|
|
11093
11506
|
"path": "src/Prebuilt/components/Notifications/InitErrorModal.tsx",
|
|
11094
11507
|
"kind": "import-statement",
|
|
@@ -11124,6 +11537,11 @@
|
|
|
11124
11537
|
"kind": "import-statement",
|
|
11125
11538
|
"original": "./TrackUnmuteModal"
|
|
11126
11539
|
},
|
|
11540
|
+
{
|
|
11541
|
+
"path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
|
|
11542
|
+
"kind": "import-statement",
|
|
11543
|
+
"original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
|
|
11544
|
+
},
|
|
11127
11545
|
{
|
|
11128
11546
|
"path": "src/Prebuilt/components/AppData/useSidepane.js",
|
|
11129
11547
|
"kind": "import-statement",
|
|
@@ -11824,7 +12242,7 @@
|
|
|
11824
12242
|
"imports": [],
|
|
11825
12243
|
"exports": [],
|
|
11826
12244
|
"inputs": {},
|
|
11827
|
-
"bytes":
|
|
12245
|
+
"bytes": 2375110
|
|
11828
12246
|
},
|
|
11829
12247
|
"dist/index.cjs.js": {
|
|
11830
12248
|
"imports": [
|
|
@@ -12933,6 +13351,21 @@
|
|
|
12933
13351
|
"kind": "require-call",
|
|
12934
13352
|
"external": true
|
|
12935
13353
|
},
|
|
13354
|
+
{
|
|
13355
|
+
"path": "@100mslive/react-sdk",
|
|
13356
|
+
"kind": "require-call",
|
|
13357
|
+
"external": true
|
|
13358
|
+
},
|
|
13359
|
+
{
|
|
13360
|
+
"path": "@100mslive/react-icons",
|
|
13361
|
+
"kind": "require-call",
|
|
13362
|
+
"external": true
|
|
13363
|
+
},
|
|
13364
|
+
{
|
|
13365
|
+
"path": "react",
|
|
13366
|
+
"kind": "require-call",
|
|
13367
|
+
"external": true
|
|
13368
|
+
},
|
|
12936
13369
|
{
|
|
12937
13370
|
"path": "react-use",
|
|
12938
13371
|
"kind": "require-call",
|
|
@@ -12988,6 +13421,21 @@
|
|
|
12988
13421
|
"kind": "require-call",
|
|
12989
13422
|
"external": true
|
|
12990
13423
|
},
|
|
13424
|
+
{
|
|
13425
|
+
"path": "@100mslive/react-sdk",
|
|
13426
|
+
"kind": "require-call",
|
|
13427
|
+
"external": true
|
|
13428
|
+
},
|
|
13429
|
+
{
|
|
13430
|
+
"path": "@100mslive/react-icons",
|
|
13431
|
+
"kind": "require-call",
|
|
13432
|
+
"external": true
|
|
13433
|
+
},
|
|
13434
|
+
{
|
|
13435
|
+
"path": "react",
|
|
13436
|
+
"kind": "require-call",
|
|
13437
|
+
"external": true
|
|
13438
|
+
},
|
|
12991
13439
|
{
|
|
12992
13440
|
"path": "react-use",
|
|
12993
13441
|
"kind": "require-call",
|
|
@@ -13093,6 +13541,11 @@
|
|
|
13093
13541
|
"kind": "require-call",
|
|
13094
13542
|
"external": true
|
|
13095
13543
|
},
|
|
13544
|
+
{
|
|
13545
|
+
"path": "@100mslive/react-icons",
|
|
13546
|
+
"kind": "require-call",
|
|
13547
|
+
"external": true
|
|
13548
|
+
},
|
|
13096
13549
|
{
|
|
13097
13550
|
"path": "react",
|
|
13098
13551
|
"kind": "require-call",
|
|
@@ -13138,6 +13591,16 @@
|
|
|
13138
13591
|
"kind": "require-call",
|
|
13139
13592
|
"external": true
|
|
13140
13593
|
},
|
|
13594
|
+
{
|
|
13595
|
+
"path": "@100mslive/react-icons",
|
|
13596
|
+
"kind": "require-call",
|
|
13597
|
+
"external": true
|
|
13598
|
+
},
|
|
13599
|
+
{
|
|
13600
|
+
"path": "react",
|
|
13601
|
+
"kind": "require-call",
|
|
13602
|
+
"external": true
|
|
13603
|
+
},
|
|
13141
13604
|
{
|
|
13142
13605
|
"path": "@100mslive/react-sdk",
|
|
13143
13606
|
"kind": "require-call",
|
|
@@ -13154,7 +13617,7 @@
|
|
|
13154
13617
|
"external": true
|
|
13155
13618
|
},
|
|
13156
13619
|
{
|
|
13157
|
-
"path": "react",
|
|
13620
|
+
"path": "@100mslive/react-sdk",
|
|
13158
13621
|
"kind": "require-call",
|
|
13159
13622
|
"external": true
|
|
13160
13623
|
},
|
|
@@ -13179,7 +13642,7 @@
|
|
|
13179
13642
|
"external": true
|
|
13180
13643
|
},
|
|
13181
13644
|
{
|
|
13182
|
-
"path": "
|
|
13645
|
+
"path": "react",
|
|
13183
13646
|
"kind": "require-call",
|
|
13184
13647
|
"external": true
|
|
13185
13648
|
},
|
|
@@ -13188,13 +13651,28 @@
|
|
|
13188
13651
|
"kind": "require-call",
|
|
13189
13652
|
"external": true
|
|
13190
13653
|
},
|
|
13654
|
+
{
|
|
13655
|
+
"path": "@100mslive/react-sdk",
|
|
13656
|
+
"kind": "require-call",
|
|
13657
|
+
"external": true
|
|
13658
|
+
},
|
|
13659
|
+
{
|
|
13660
|
+
"path": "@100mslive/react-icons",
|
|
13661
|
+
"kind": "require-call",
|
|
13662
|
+
"external": true
|
|
13663
|
+
},
|
|
13191
13664
|
{
|
|
13192
13665
|
"path": "react",
|
|
13193
13666
|
"kind": "require-call",
|
|
13194
13667
|
"external": true
|
|
13195
13668
|
},
|
|
13196
13669
|
{
|
|
13197
|
-
"path": "
|
|
13670
|
+
"path": "eventemitter2",
|
|
13671
|
+
"kind": "require-call",
|
|
13672
|
+
"external": true
|
|
13673
|
+
},
|
|
13674
|
+
{
|
|
13675
|
+
"path": "react",
|
|
13198
13676
|
"kind": "require-call",
|
|
13199
13677
|
"external": true
|
|
13200
13678
|
},
|
|
@@ -13208,6 +13686,11 @@
|
|
|
13208
13686
|
"kind": "require-call",
|
|
13209
13687
|
"external": true
|
|
13210
13688
|
},
|
|
13689
|
+
{
|
|
13690
|
+
"path": "react",
|
|
13691
|
+
"kind": "require-call",
|
|
13692
|
+
"external": true
|
|
13693
|
+
},
|
|
13211
13694
|
{
|
|
13212
13695
|
"path": "@100mslive/react-sdk",
|
|
13213
13696
|
"kind": "require-call",
|
|
@@ -13278,11 +13761,6 @@
|
|
|
13278
13761
|
"kind": "require-call",
|
|
13279
13762
|
"external": true
|
|
13280
13763
|
},
|
|
13281
|
-
{
|
|
13282
|
-
"path": "@100mslive/react-sdk",
|
|
13283
|
-
"kind": "require-call",
|
|
13284
|
-
"external": true
|
|
13285
|
-
},
|
|
13286
13764
|
{
|
|
13287
13765
|
"path": "@100mslive/react-icons",
|
|
13288
13766
|
"kind": "require-call",
|
|
@@ -13893,6 +14371,31 @@
|
|
|
13893
14371
|
"kind": "require-call",
|
|
13894
14372
|
"external": true
|
|
13895
14373
|
},
|
|
14374
|
+
{
|
|
14375
|
+
"path": "@100mslive/react-sdk",
|
|
14376
|
+
"kind": "require-call",
|
|
14377
|
+
"external": true
|
|
14378
|
+
},
|
|
14379
|
+
{
|
|
14380
|
+
"path": "react",
|
|
14381
|
+
"kind": "require-call",
|
|
14382
|
+
"external": true
|
|
14383
|
+
},
|
|
14384
|
+
{
|
|
14385
|
+
"path": "react-use",
|
|
14386
|
+
"kind": "require-call",
|
|
14387
|
+
"external": true
|
|
14388
|
+
},
|
|
14389
|
+
{
|
|
14390
|
+
"path": "@100mslive/react-sdk",
|
|
14391
|
+
"kind": "require-call",
|
|
14392
|
+
"external": true
|
|
14393
|
+
},
|
|
14394
|
+
{
|
|
14395
|
+
"path": "react",
|
|
14396
|
+
"kind": "require-call",
|
|
14397
|
+
"external": true
|
|
14398
|
+
},
|
|
13896
14399
|
{
|
|
13897
14400
|
"path": "@100mslive/react-icons",
|
|
13898
14401
|
"kind": "require-call",
|
|
@@ -13963,6 +14466,16 @@
|
|
|
13963
14466
|
"kind": "require-call",
|
|
13964
14467
|
"external": true
|
|
13965
14468
|
},
|
|
14469
|
+
{
|
|
14470
|
+
"path": "@100mslive/react-icons",
|
|
14471
|
+
"kind": "require-call",
|
|
14472
|
+
"external": true
|
|
14473
|
+
},
|
|
14474
|
+
{
|
|
14475
|
+
"path": "react",
|
|
14476
|
+
"kind": "require-call",
|
|
14477
|
+
"external": true
|
|
14478
|
+
},
|
|
13966
14479
|
{
|
|
13967
14480
|
"path": "react-use",
|
|
13968
14481
|
"kind": "require-call",
|
|
@@ -14043,6 +14556,16 @@
|
|
|
14043
14556
|
"kind": "require-call",
|
|
14044
14557
|
"external": true
|
|
14045
14558
|
},
|
|
14559
|
+
{
|
|
14560
|
+
"path": "@100mslive/react-sdk",
|
|
14561
|
+
"kind": "require-call",
|
|
14562
|
+
"external": true
|
|
14563
|
+
},
|
|
14564
|
+
{
|
|
14565
|
+
"path": "react",
|
|
14566
|
+
"kind": "require-call",
|
|
14567
|
+
"external": true
|
|
14568
|
+
},
|
|
14046
14569
|
{
|
|
14047
14570
|
"path": "@100mslive/react-icons",
|
|
14048
14571
|
"kind": "require-call",
|
|
@@ -14178,6 +14701,16 @@
|
|
|
14178
14701
|
"kind": "require-call",
|
|
14179
14702
|
"external": true
|
|
14180
14703
|
},
|
|
14704
|
+
{
|
|
14705
|
+
"path": "@100mslive/react-sdk",
|
|
14706
|
+
"kind": "require-call",
|
|
14707
|
+
"external": true
|
|
14708
|
+
},
|
|
14709
|
+
{
|
|
14710
|
+
"path": "react",
|
|
14711
|
+
"kind": "require-call",
|
|
14712
|
+
"external": true
|
|
14713
|
+
},
|
|
14181
14714
|
{
|
|
14182
14715
|
"path": "react-use",
|
|
14183
14716
|
"kind": "require-call",
|
|
@@ -14248,6 +14781,11 @@
|
|
|
14248
14781
|
"kind": "require-call",
|
|
14249
14782
|
"external": true
|
|
14250
14783
|
},
|
|
14784
|
+
{
|
|
14785
|
+
"path": "@100mslive/react-icons",
|
|
14786
|
+
"kind": "require-call",
|
|
14787
|
+
"external": true
|
|
14788
|
+
},
|
|
14251
14789
|
{
|
|
14252
14790
|
"path": "react",
|
|
14253
14791
|
"kind": "require-call",
|
|
@@ -14328,7 +14866,7 @@
|
|
|
14328
14866
|
"entryPoint": "src/index.ts",
|
|
14329
14867
|
"inputs": {
|
|
14330
14868
|
"<define:process.env>": {
|
|
14331
|
-
"bytesInOutput":
|
|
14869
|
+
"bytesInOutput": 18549
|
|
14332
14870
|
},
|
|
14333
14871
|
"src/Theme/base.config.ts": {
|
|
14334
14872
|
"bytesInOutput": 6104
|
|
@@ -14585,14 +15123,11 @@
|
|
|
14585
15123
|
"src/Collapsible/index.tsx": {
|
|
14586
15124
|
"bytesInOutput": 147
|
|
14587
15125
|
},
|
|
14588
|
-
"src/Prebuilt/components/init/initUtils.js": {
|
|
14589
|
-
"bytesInOutput": 1995
|
|
14590
|
-
},
|
|
14591
15126
|
"src/Prebuilt/components/hooks/useUserPreferences.jsx": {
|
|
14592
15127
|
"bytesInOutput": 1087
|
|
14593
15128
|
},
|
|
14594
15129
|
"src/Prebuilt/common/constants.ts": {
|
|
14595
|
-
"bytesInOutput":
|
|
15130
|
+
"bytesInOutput": 4440
|
|
14596
15131
|
},
|
|
14597
15132
|
"src/Prebuilt/components/AppData/useUISettings.js": {
|
|
14598
15133
|
"bytesInOutput": 7041
|
|
@@ -14601,7 +15136,7 @@
|
|
|
14601
15136
|
"bytesInOutput": 2515
|
|
14602
15137
|
},
|
|
14603
15138
|
"src/Prebuilt/components/AppData/AppData.tsx": {
|
|
14604
|
-
"bytesInOutput":
|
|
15139
|
+
"bytesInOutput": 5319
|
|
14605
15140
|
},
|
|
14606
15141
|
"src/Prebuilt/AppContext.tsx": {
|
|
14607
15142
|
"bytesInOutput": 840
|
|
@@ -14691,10 +15226,10 @@
|
|
|
14691
15226
|
"bytesInOutput": 1498
|
|
14692
15227
|
},
|
|
14693
15228
|
"src/Prebuilt/common/hooks.ts": {
|
|
14694
|
-
"bytesInOutput":
|
|
15229
|
+
"bytesInOutput": 3054
|
|
14695
15230
|
},
|
|
14696
15231
|
"src/Prebuilt/components/RoleChangeModal.jsx": {
|
|
14697
|
-
"bytesInOutput":
|
|
15232
|
+
"bytesInOutput": 7604
|
|
14698
15233
|
},
|
|
14699
15234
|
"src/Prebuilt/primitives/DropdownTrigger.jsx": {
|
|
14700
15235
|
"bytesInOutput": 1770
|
|
@@ -14748,7 +15283,7 @@
|
|
|
14748
15283
|
"bytesInOutput": 8156
|
|
14749
15284
|
},
|
|
14750
15285
|
"../../node_modules/ua-parser-js/src/ua-parser.js": {
|
|
14751
|
-
"bytesInOutput":
|
|
15286
|
+
"bytesInOutput": 42466
|
|
14752
15287
|
},
|
|
14753
15288
|
"../../node_modules/webrtc-adapter/src/js/utils.js": {
|
|
14754
15289
|
"bytesInOutput": 6459
|
|
@@ -14799,10 +15334,10 @@
|
|
|
14799
15334
|
"bytesInOutput": 615
|
|
14800
15335
|
},
|
|
14801
15336
|
"../hms-video-web/dist/index.js": {
|
|
14802
|
-
"bytesInOutput":
|
|
15337
|
+
"bytesInOutput": 35326
|
|
14803
15338
|
},
|
|
14804
15339
|
"src/Prebuilt/common/utils.js": {
|
|
14805
|
-
"bytesInOutput":
|
|
15340
|
+
"bytesInOutput": 4395
|
|
14806
15341
|
},
|
|
14807
15342
|
"src/Prebuilt/services/FeatureFlags.jsx": {
|
|
14808
15343
|
"bytesInOutput": 1701
|
|
@@ -14874,7 +15409,7 @@
|
|
|
14874
15409
|
"bytesInOutput": 1218
|
|
14875
15410
|
},
|
|
14876
15411
|
"src/Prebuilt/components/Footer/ChatToggle.tsx": {
|
|
14877
|
-
"bytesInOutput":
|
|
15412
|
+
"bytesInOutput": 1939
|
|
14878
15413
|
},
|
|
14879
15414
|
"src/Prebuilt/components/Connection/connectionQualityUtils.js": {
|
|
14880
15415
|
"bytesInOutput": 1059
|
|
@@ -14882,20 +15417,26 @@
|
|
|
14882
15417
|
"src/Prebuilt/components/Connection/ConnectionIndicator.tsx": {
|
|
14883
15418
|
"bytesInOutput": 4492
|
|
14884
15419
|
},
|
|
15420
|
+
"src/Prebuilt/components/RemoveParticipant.tsx": {
|
|
15421
|
+
"bytesInOutput": 1694
|
|
15422
|
+
},
|
|
14885
15423
|
"src/Prebuilt/components/Footer/RoleOptions.tsx": {
|
|
14886
15424
|
"bytesInOutput": 6834
|
|
14887
15425
|
},
|
|
14888
15426
|
"src/Prebuilt/components/Footer/RoleAccordion.tsx": {
|
|
14889
|
-
"bytesInOutput":
|
|
15427
|
+
"bytesInOutput": 5338
|
|
14890
15428
|
},
|
|
14891
|
-
"src/Prebuilt/components/Footer/ParticipantList.
|
|
14892
|
-
"bytesInOutput":
|
|
15429
|
+
"src/Prebuilt/components/Footer/ParticipantList.tsx": {
|
|
15430
|
+
"bytesInOutput": 14004
|
|
14893
15431
|
},
|
|
14894
15432
|
"src/Prebuilt/components/Footer/PollsToggle.tsx": {
|
|
14895
15433
|
"bytesInOutput": 951
|
|
14896
15434
|
},
|
|
15435
|
+
"src/Prebuilt/components/Footer/WhiteboardToggle.tsx": {
|
|
15436
|
+
"bytesInOutput": 1352
|
|
15437
|
+
},
|
|
14897
15438
|
"src/Prebuilt/components/Footer/Footer.tsx": {
|
|
14898
|
-
"bytesInOutput":
|
|
15439
|
+
"bytesInOutput": 4540
|
|
14899
15440
|
},
|
|
14900
15441
|
"src/Prebuilt/components/Notifications/HLSFailureModal.tsx": {
|
|
14901
15442
|
"bytesInOutput": 2811
|
|
@@ -14904,58 +15445,67 @@
|
|
|
14904
15445
|
"bytesInOutput": 2747
|
|
14905
15446
|
},
|
|
14906
15447
|
"src/Prebuilt/components/Polls/common/StatusIndicator.jsx": {
|
|
14907
|
-
"bytesInOutput":
|
|
15448
|
+
"bytesInOutput": 959
|
|
14908
15449
|
},
|
|
14909
15450
|
"src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx": {
|
|
14910
|
-
"bytesInOutput":
|
|
15451
|
+
"bytesInOutput": 9182
|
|
14911
15452
|
},
|
|
14912
15453
|
"src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.jsx": {
|
|
14913
|
-
"bytesInOutput":
|
|
15454
|
+
"bytesInOutput": 2780
|
|
14914
15455
|
},
|
|
14915
15456
|
"src/Prebuilt/components/Polls/common/OptionInputWithDelete.jsx": {
|
|
14916
|
-
"bytesInOutput":
|
|
15457
|
+
"bytesInOutput": 1309
|
|
14917
15458
|
},
|
|
14918
15459
|
"src/Prebuilt/components/Polls/common/VoteCount.jsx": {
|
|
14919
|
-
"bytesInOutput":
|
|
15460
|
+
"bytesInOutput": 587
|
|
14920
15461
|
},
|
|
14921
15462
|
"src/Prebuilt/components/Polls/common/VoteProgress.jsx": {
|
|
14922
15463
|
"bytesInOutput": 858
|
|
14923
15464
|
},
|
|
14924
15465
|
"src/Prebuilt/components/Polls/common/MultipleChoiceOptions.jsx": {
|
|
14925
|
-
"bytesInOutput":
|
|
15466
|
+
"bytesInOutput": 4556
|
|
14926
15467
|
},
|
|
14927
15468
|
"src/Prebuilt/components/Polls/common/SingleChoiceOptions.jsx": {
|
|
14928
|
-
"bytesInOutput":
|
|
15469
|
+
"bytesInOutput": 5343
|
|
14929
15470
|
},
|
|
14930
15471
|
"src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.jsx": {
|
|
14931
|
-
"bytesInOutput":
|
|
15472
|
+
"bytesInOutput": 10397
|
|
14932
15473
|
},
|
|
14933
15474
|
"src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.jsx": {
|
|
14934
|
-
"bytesInOutput":
|
|
15475
|
+
"bytesInOutput": 2790
|
|
14935
15476
|
},
|
|
14936
15477
|
"src/Prebuilt/components/Polls/CreateQuestions/CreateQuestions.jsx": {
|
|
14937
|
-
"bytesInOutput":
|
|
15478
|
+
"bytesInOutput": 5588
|
|
15479
|
+
},
|
|
15480
|
+
"src/Prebuilt/components/Polls/Voting/LeaderboardEntry.tsx": {
|
|
15481
|
+
"bytesInOutput": 2155
|
|
15482
|
+
},
|
|
15483
|
+
"src/Prebuilt/components/Polls/Voting/Leaderboard.tsx": {
|
|
15484
|
+
"bytesInOutput": 4147
|
|
15485
|
+
},
|
|
15486
|
+
"src/Prebuilt/components/Polls/Voting/PeerParticipationSummary.tsx": {
|
|
15487
|
+
"bytesInOutput": 1818
|
|
14938
15488
|
},
|
|
14939
15489
|
"src/Prebuilt/components/Polls/Voting/QuestionCard.jsx": {
|
|
14940
|
-
"bytesInOutput":
|
|
15490
|
+
"bytesInOutput": 10633
|
|
14941
15491
|
},
|
|
14942
15492
|
"src/Prebuilt/components/Polls/Voting/StandardVoting.jsx": {
|
|
14943
|
-
"bytesInOutput":
|
|
15493
|
+
"bytesInOutput": 1695
|
|
14944
15494
|
},
|
|
14945
15495
|
"src/Prebuilt/components/Polls/Voting/TimedVoting.jsx": {
|
|
14946
15496
|
"bytesInOutput": 1419
|
|
14947
15497
|
},
|
|
14948
15498
|
"src/Prebuilt/components/Polls/Voting/Voting.jsx": {
|
|
14949
|
-
"bytesInOutput":
|
|
15499
|
+
"bytesInOutput": 4251
|
|
14950
15500
|
},
|
|
14951
15501
|
"src/Prebuilt/components/Polls/Polls.tsx": {
|
|
14952
|
-
"bytesInOutput":
|
|
15502
|
+
"bytesInOutput": 1163
|
|
14953
15503
|
},
|
|
14954
15504
|
"../../node_modules/reselect/es/index.js": {
|
|
14955
15505
|
"bytesInOutput": 2639
|
|
14956
15506
|
},
|
|
14957
15507
|
"../hms-video-store/dist/index.js": {
|
|
14958
|
-
"bytesInOutput":
|
|
15508
|
+
"bytesInOutput": 21912
|
|
14959
15509
|
},
|
|
14960
15510
|
"src/Prebuilt/images/empty-chat.svg": {
|
|
14961
15511
|
"bytesInOutput": 2366
|
|
@@ -14969,17 +15519,14 @@
|
|
|
14969
15519
|
"src/Prebuilt/components/hooks/useSetPinnedMessages.ts": {
|
|
14970
15520
|
"bytesInOutput": 2849
|
|
14971
15521
|
},
|
|
14972
|
-
"src/Prebuilt/components/Chat/useUnreadCount.ts": {
|
|
14973
|
-
"bytesInOutput": 735
|
|
14974
|
-
},
|
|
14975
15522
|
"src/Prebuilt/components/Chat/ChatBody.jsx": {
|
|
14976
|
-
"bytesInOutput":
|
|
15523
|
+
"bytesInOutput": 27883
|
|
14977
15524
|
},
|
|
14978
15525
|
"src/Prebuilt/components/Chat/ChatSelector.tsx": {
|
|
14979
|
-
"bytesInOutput":
|
|
15526
|
+
"bytesInOutput": 8560
|
|
14980
15527
|
},
|
|
14981
15528
|
"src/Prebuilt/components/Chat/ChatSelectorContainer.tsx": {
|
|
14982
|
-
"bytesInOutput":
|
|
15529
|
+
"bytesInOutput": 6701
|
|
14983
15530
|
},
|
|
14984
15531
|
"src/Prebuilt/components/AppData/useChatState.js": {
|
|
14985
15532
|
"bytesInOutput": 914
|
|
@@ -14988,7 +15535,7 @@
|
|
|
14988
15535
|
"bytesInOutput": 1440
|
|
14989
15536
|
},
|
|
14990
15537
|
"src/Prebuilt/components/Chat/ChatFooter.tsx": {
|
|
14991
|
-
"bytesInOutput":
|
|
15538
|
+
"bytesInOutput": 10218
|
|
14992
15539
|
},
|
|
14993
15540
|
"src/Prebuilt/components/Chat/ChatStates.tsx": {
|
|
14994
15541
|
"bytesInOutput": 3358
|
|
@@ -15000,13 +15547,13 @@
|
|
|
15000
15547
|
"bytesInOutput": 828
|
|
15001
15548
|
},
|
|
15002
15549
|
"src/Prebuilt/components/Chat/PinnedMessage.tsx": {
|
|
15003
|
-
"bytesInOutput":
|
|
15550
|
+
"bytesInOutput": 6082
|
|
15004
15551
|
},
|
|
15005
15552
|
"src/Prebuilt/components/Chat/Chat.jsx": {
|
|
15006
|
-
"bytesInOutput":
|
|
15553
|
+
"bytesInOutput": 5465
|
|
15007
15554
|
},
|
|
15008
15555
|
"src/Prebuilt/components/Footer/PaginatedParticipants.tsx": {
|
|
15009
|
-
"bytesInOutput":
|
|
15556
|
+
"bytesInOutput": 5309
|
|
15010
15557
|
},
|
|
15011
15558
|
"src/Prebuilt/components/ChatSettings.tsx": {
|
|
15012
15559
|
"bytesInOutput": 3060
|
|
@@ -15081,7 +15628,7 @@
|
|
|
15081
15628
|
"bytesInOutput": 4490
|
|
15082
15629
|
},
|
|
15083
15630
|
"src/Prebuilt/components/VideoLayouts/EqualProminence.tsx": {
|
|
15084
|
-
"bytesInOutput":
|
|
15631
|
+
"bytesInOutput": 2453
|
|
15085
15632
|
},
|
|
15086
15633
|
"src/Prebuilt/components/VideoLayouts/ProminenceLayout.tsx": {
|
|
15087
15634
|
"bytesInOutput": 2590
|
|
@@ -15102,13 +15649,13 @@
|
|
|
15102
15649
|
"bytesInOutput": 4656
|
|
15103
15650
|
},
|
|
15104
15651
|
"src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx": {
|
|
15105
|
-
"bytesInOutput":
|
|
15652
|
+
"bytesInOutput": 2498
|
|
15106
15653
|
},
|
|
15107
15654
|
"src/Prebuilt/common/PeersSorter.ts": {
|
|
15108
|
-
"bytesInOutput":
|
|
15655
|
+
"bytesInOutput": 3605
|
|
15109
15656
|
},
|
|
15110
15657
|
"src/Prebuilt/components/VideoLayouts/GridLayout.tsx": {
|
|
15111
|
-
"bytesInOutput":
|
|
15658
|
+
"bytesInOutput": 4546
|
|
15112
15659
|
},
|
|
15113
15660
|
"src/Prebuilt/layouts/EmbedView.jsx": {
|
|
15114
15661
|
"bytesInOutput": 3522
|
|
@@ -15119,6 +15666,12 @@
|
|
|
15119
15666
|
"src/Prebuilt/layouts/WaitingView.jsx": {
|
|
15120
15667
|
"bytesInOutput": 1943
|
|
15121
15668
|
},
|
|
15669
|
+
"src/Prebuilt/layouts/WhiteboardView.tsx": {
|
|
15670
|
+
"bytesInOutput": 2568
|
|
15671
|
+
},
|
|
15672
|
+
"src/Prebuilt/components/hooks/useCloseScreenshareWhiteboard.tsx": {
|
|
15673
|
+
"bytesInOutput": 1360
|
|
15674
|
+
},
|
|
15122
15675
|
"src/Prebuilt/components/HlsStatsOverlay.jsx": {
|
|
15123
15676
|
"bytesInOutput": 4195
|
|
15124
15677
|
},
|
|
@@ -15126,7 +15679,7 @@
|
|
|
15126
15679
|
"bytesInOutput": 656
|
|
15127
15680
|
},
|
|
15128
15681
|
"src/Prebuilt/components/HMSVideo/HMSVideo.jsx": {
|
|
15129
|
-
"bytesInOutput":
|
|
15682
|
+
"bytesInOutput": 1563
|
|
15130
15683
|
},
|
|
15131
15684
|
"src/Prebuilt/components/HMSVideo/PlayButton.jsx": {
|
|
15132
15685
|
"bytesInOutput": 860
|
|
@@ -15152,14 +15705,17 @@
|
|
|
15152
15705
|
"src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.jsx": {
|
|
15153
15706
|
"bytesInOutput": 1233
|
|
15154
15707
|
},
|
|
15708
|
+
"src/Prebuilt/components/HMSVideo/HLSCaptionSelector.tsx": {
|
|
15709
|
+
"bytesInOutput": 893
|
|
15710
|
+
},
|
|
15155
15711
|
"src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx": {
|
|
15156
15712
|
"bytesInOutput": 4598
|
|
15157
15713
|
},
|
|
15158
15714
|
"src/Prebuilt/layouts/HLSView.jsx": {
|
|
15159
|
-
"bytesInOutput":
|
|
15715
|
+
"bytesInOutput": 20620
|
|
15160
15716
|
},
|
|
15161
15717
|
"src/Prebuilt/layouts/VideoStreamingSection.tsx": {
|
|
15162
|
-
"bytesInOutput":
|
|
15718
|
+
"bytesInOutput": 4079
|
|
15163
15719
|
},
|
|
15164
15720
|
"src/Prebuilt/components/Header/common.jsx": {
|
|
15165
15721
|
"bytesInOutput": 7375
|
|
@@ -15170,8 +15726,11 @@
|
|
|
15170
15726
|
"src/Prebuilt/components/Header/index.tsx": {
|
|
15171
15727
|
"bytesInOutput": 152
|
|
15172
15728
|
},
|
|
15729
|
+
"src/Prebuilt/components/PreviousRoleInMetadata.tsx": {
|
|
15730
|
+
"bytesInOutput": 1004
|
|
15731
|
+
},
|
|
15173
15732
|
"src/Prebuilt/components/ConferenceScreen.tsx": {
|
|
15174
|
-
"bytesInOutput":
|
|
15733
|
+
"bytesInOutput": 7414
|
|
15175
15734
|
},
|
|
15176
15735
|
"src/Prebuilt/components/ErrorBoundary.jsx": {
|
|
15177
15736
|
"bytesInOutput": 4181
|
|
@@ -15186,7 +15745,7 @@
|
|
|
15186
15745
|
"bytesInOutput": 789
|
|
15187
15746
|
},
|
|
15188
15747
|
"src/Prebuilt/AppStateContext.tsx": {
|
|
15189
|
-
"bytesInOutput":
|
|
15748
|
+
"bytesInOutput": 2741
|
|
15190
15749
|
},
|
|
15191
15750
|
"src/Prebuilt/components/LeaveScreen.tsx": {
|
|
15192
15751
|
"bytesInOutput": 2925
|
|
@@ -15195,7 +15754,7 @@
|
|
|
15195
15754
|
"bytesInOutput": 3195
|
|
15196
15755
|
},
|
|
15197
15756
|
"src/Prebuilt/components/Toast/ToastConfig.jsx": {
|
|
15198
|
-
"bytesInOutput":
|
|
15757
|
+
"bytesInOutput": 7806
|
|
15199
15758
|
},
|
|
15200
15759
|
"src/Prebuilt/components/Toast/ToastBatcher.js": {
|
|
15201
15760
|
"bytesInOutput": 2151
|
|
@@ -15206,11 +15765,14 @@
|
|
|
15206
15765
|
"src/Prebuilt/components/Notifications/ChatNotifications.tsx": {
|
|
15207
15766
|
"bytesInOutput": 1811
|
|
15208
15767
|
},
|
|
15768
|
+
"src/Prebuilt/components/Notifications/HandRaisedNotifications.tsx": {
|
|
15769
|
+
"bytesInOutput": 1436
|
|
15770
|
+
},
|
|
15209
15771
|
"src/Prebuilt/components/Notifications/InitErrorModal.tsx": {
|
|
15210
|
-
"bytesInOutput":
|
|
15772
|
+
"bytesInOutput": 1964
|
|
15211
15773
|
},
|
|
15212
15774
|
"src/Prebuilt/components/Notifications/PeerNotifications.tsx": {
|
|
15213
|
-
"bytesInOutput":
|
|
15775
|
+
"bytesInOutput": 2112
|
|
15214
15776
|
},
|
|
15215
15777
|
"src/Prebuilt/images/android-perm-1.png": {
|
|
15216
15778
|
"bytesInOutput": 10560
|
|
@@ -15219,22 +15781,22 @@
|
|
|
15219
15781
|
"bytesInOutput": 12068
|
|
15220
15782
|
},
|
|
15221
15783
|
"src/Prebuilt/components/Notifications/PermissionErrorModal.tsx": {
|
|
15222
|
-
"bytesInOutput":
|
|
15784
|
+
"bytesInOutput": 4968
|
|
15223
15785
|
},
|
|
15224
15786
|
"src/Prebuilt/components/Notifications/ReconnectNotifications.tsx": {
|
|
15225
|
-
"bytesInOutput":
|
|
15787
|
+
"bytesInOutput": 2953
|
|
15226
15788
|
},
|
|
15227
15789
|
"src/Prebuilt/components/Notifications/TrackBulkUnmuteModal.tsx": {
|
|
15228
|
-
"bytesInOutput":
|
|
15790
|
+
"bytesInOutput": 2295
|
|
15229
15791
|
},
|
|
15230
15792
|
"src/Prebuilt/components/Notifications/TrackNotifications.tsx": {
|
|
15231
|
-
"bytesInOutput":
|
|
15793
|
+
"bytesInOutput": 948
|
|
15232
15794
|
},
|
|
15233
15795
|
"src/Prebuilt/components/Notifications/TrackUnmuteModal.tsx": {
|
|
15234
15796
|
"bytesInOutput": 2281
|
|
15235
15797
|
},
|
|
15236
15798
|
"src/Prebuilt/components/Notifications/Notifications.tsx": {
|
|
15237
|
-
"bytesInOutput":
|
|
15799
|
+
"bytesInOutput": 8338
|
|
15238
15800
|
},
|
|
15239
15801
|
"src/Prebuilt/components/Notifications/index.tsx": {
|
|
15240
15802
|
"bytesInOutput": 173
|
|
@@ -15270,7 +15832,7 @@
|
|
|
15270
15832
|
"bytesInOutput": 2930
|
|
15271
15833
|
}
|
|
15272
15834
|
},
|
|
15273
|
-
"bytes":
|
|
15835
|
+
"bytes": 1208726
|
|
15274
15836
|
}
|
|
15275
15837
|
}
|
|
15276
15838
|
}
|