@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.
Files changed (81) hide show
  1. package/dist/{HLSView-662T7R7H.js → HLSView-EMUOLCTM.js} +128 -39
  2. package/dist/HLSView-EMUOLCTM.js.map +7 -0
  3. package/dist/Prebuilt/common/PeersSorter.d.ts +1 -0
  4. package/dist/Prebuilt/common/constants.d.ts +9 -5
  5. package/dist/Prebuilt/common/hooks.d.ts +1 -0
  6. package/dist/Prebuilt/components/Footer/ParticipantList.d.ts +17 -0
  7. package/dist/Prebuilt/components/Footer/RoleAccordion.d.ts +3 -2
  8. package/dist/Prebuilt/components/Footer/WhiteboardToggle.d.ts +2 -0
  9. package/dist/Prebuilt/components/HMSVideo/HLSCaptionSelector.d.ts +5 -0
  10. package/dist/Prebuilt/components/Notifications/HandRaisedNotifications.d.ts +1 -0
  11. package/dist/Prebuilt/components/Polls/Voting/Leaderboard.d.ts +4 -0
  12. package/dist/Prebuilt/components/Polls/Voting/LeaderboardEntry.d.ts +9 -0
  13. package/dist/Prebuilt/components/Polls/Voting/PeerParticipationSummary.d.ts +5 -0
  14. package/dist/Prebuilt/components/PreviousRoleInMetadata.d.ts +1 -0
  15. package/dist/Prebuilt/components/RemoveParticipant.d.ts +5 -0
  16. package/dist/Prebuilt/components/hooks/useCloseScreenshareWhiteboard.d.ts +4 -0
  17. package/dist/Prebuilt/layouts/WhiteboardView.d.ts +2 -0
  18. package/dist/{chunk-2B7YYNHQ.js → chunk-ZYR4B4KQ.js} +2240 -1767
  19. package/dist/chunk-ZYR4B4KQ.js.map +7 -0
  20. package/dist/index.cjs.js +2805 -2172
  21. package/dist/index.cjs.js.map +4 -4
  22. package/dist/index.js +1 -1
  23. package/dist/meta.cjs.json +739 -177
  24. package/dist/meta.esbuild.json +749 -186
  25. package/package.json +7 -7
  26. package/src/Prebuilt/AppStateContext.tsx +1 -1
  27. package/src/Prebuilt/common/PeersSorter.ts +24 -8
  28. package/src/Prebuilt/common/constants.ts +6 -6
  29. package/src/Prebuilt/common/hooks.ts +16 -0
  30. package/src/Prebuilt/common/utils.js +33 -0
  31. package/src/Prebuilt/components/AppData/AppData.tsx +1 -16
  32. package/src/Prebuilt/components/Chat/Chat.jsx +10 -34
  33. package/src/Prebuilt/components/Chat/ChatBody.jsx +107 -66
  34. package/src/Prebuilt/components/Chat/ChatFooter.tsx +21 -12
  35. package/src/Prebuilt/components/Chat/ChatSelector.tsx +25 -25
  36. package/src/Prebuilt/components/Chat/ChatSelectorContainer.tsx +15 -16
  37. package/src/Prebuilt/components/Chat/PinnedMessage.tsx +7 -2
  38. package/src/Prebuilt/components/ConferenceScreen.tsx +2 -0
  39. package/src/Prebuilt/components/Footer/ChatToggle.tsx +30 -7
  40. package/src/Prebuilt/components/Footer/Footer.tsx +2 -1
  41. package/src/Prebuilt/components/Footer/PaginatedParticipants.tsx +0 -1
  42. package/src/Prebuilt/components/Footer/{ParticipantList.jsx → ParticipantList.tsx} +169 -127
  43. package/src/Prebuilt/components/Footer/RoleAccordion.tsx +23 -13
  44. package/src/Prebuilt/components/Footer/WhiteboardToggle.tsx +34 -0
  45. package/src/Prebuilt/components/HMSVideo/HLSCaptionSelector.tsx +13 -0
  46. package/src/Prebuilt/components/HMSVideo/HMSVideo.jsx +34 -2
  47. package/src/Prebuilt/components/Notifications/HandRaisedNotifications.tsx +35 -0
  48. package/src/Prebuilt/components/Notifications/Notifications.tsx +47 -14
  49. package/src/Prebuilt/components/Notifications/PeerNotifications.tsx +7 -2
  50. package/src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx +3 -9
  51. package/src/Prebuilt/components/Polls/CreateQuestions/CreateQuestions.jsx +21 -1
  52. package/src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.jsx +34 -7
  53. package/src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.jsx +2 -2
  54. package/src/Prebuilt/components/Polls/Polls.tsx +3 -0
  55. package/src/Prebuilt/components/Polls/Voting/Leaderboard.tsx +115 -0
  56. package/src/Prebuilt/components/Polls/Voting/LeaderboardEntry.tsx +63 -0
  57. package/src/Prebuilt/components/Polls/Voting/PeerParticipationSummary.tsx +38 -0
  58. package/src/Prebuilt/components/Polls/Voting/QuestionCard.jsx +33 -8
  59. package/src/Prebuilt/components/Polls/Voting/StandardVoting.jsx +7 -1
  60. package/src/Prebuilt/components/Polls/Voting/Voting.jsx +31 -13
  61. package/src/Prebuilt/components/Polls/common/MultipleChoiceOptions.jsx +33 -21
  62. package/src/Prebuilt/components/Polls/common/SingleChoiceOptions.jsx +47 -35
  63. package/src/Prebuilt/components/Polls/common/StatusIndicator.jsx +2 -22
  64. package/src/Prebuilt/components/Polls/common/VoteCount.jsx +1 -15
  65. package/src/Prebuilt/components/PreviousRoleInMetadata.tsx +21 -0
  66. package/src/Prebuilt/components/RemoveParticipant.tsx +35 -0
  67. package/src/Prebuilt/components/RoleChangeModal.jsx +1 -1
  68. package/src/Prebuilt/components/SidePaneTabs.tsx +0 -1
  69. package/src/Prebuilt/components/TileMenu/TileMenuContent.tsx +1 -1
  70. package/src/Prebuilt/components/Toast/ToastConfig.jsx +15 -3
  71. package/src/Prebuilt/components/VideoLayouts/EqualProminence.tsx +6 -5
  72. package/src/Prebuilt/components/VideoLayouts/GridLayout.tsx +27 -5
  73. package/src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx +0 -1
  74. package/src/Prebuilt/components/hooks/useCloseScreenshareWhiteboard.tsx +24 -0
  75. package/src/Prebuilt/layouts/HLSView.jsx +51 -3
  76. package/src/Prebuilt/layouts/VideoStreamingSection.tsx +20 -3
  77. package/src/Prebuilt/layouts/WhiteboardView.tsx +66 -0
  78. package/dist/HLSView-662T7R7H.js.map +0 -7
  79. package/dist/chunk-2B7YYNHQ.js.map +0 -7
  80. package/src/Prebuilt/components/AppData/useAppLayout.js +0 -6
  81. package/src/Prebuilt/components/init/initUtils.js +0 -67
@@ -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": 4258,
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": 5400,
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": 3363,
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": 6486,
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": 254865,
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": 4325,
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": 1045,
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": 4579,
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.jsx",
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.jsx": {
5708
- "bytes": 11381,
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/Toast/ToastManager.js",
5781
+ "path": "src/Prebuilt/components/RemoveParticipant.tsx",
5747
5782
  "kind": "import-statement",
5748
- "original": "../Toast/ToastManager"
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": 3945,
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.jsx",
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": 1082,
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": 7629,
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": 848,
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": 3365,
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": 4400,
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": 8093,
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": 2057,
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": 4620,
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": 8109,
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": 1052,
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": 3265,
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": 1000,
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": 66662,
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": 21186,
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": 6811,
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.jsx",
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": 5791,
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": 8673,
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": 4933,
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": 5268,
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": 4462,
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.jsx",
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": 6964,
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.jsx",
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": 2328,
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": 2137,
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": 2767,
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": 3819,
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": 415,
9983
+ "bytes": 1039,
9699
9984
  "imports": [
9700
9985
  {
9701
9986
  "path": "react",
@@ -9915,11 +10200,37 @@
9915
10200
  "kind": "import-statement",
9916
10201
  "original": "../../../"
9917
10202
  },
9918
- {
9919
- "path": "src/Prebuilt/primitives/DialogContent.jsx",
9920
- "kind": "import-statement",
9921
- "original": "../../primitives/DialogContent"
9922
- },
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,
10218
+ "imports": [
10219
+ {
10220
+ "path": "react",
10221
+ "kind": "import-statement",
10222
+ "external": true
10223
+ },
10224
+ {
10225
+ "path": "@100mslive/react-icons",
10226
+ "kind": "import-statement",
10227
+ "external": true
10228
+ },
10229
+ {
10230
+ "path": "src/index.ts",
10231
+ "kind": "import-statement",
10232
+ "original": "../../../"
10233
+ },
9923
10234
  {
9924
10235
  "path": "<define:process.env>",
9925
10236
  "kind": "import-statement",
@@ -9955,7 +10266,7 @@
9955
10266
  "format": "esm"
9956
10267
  },
9957
10268
  "src/Prebuilt/layouts/HLSView.jsx": {
9958
- "bytes": 15202,
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": 3397,
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": 6598,
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": 2535,
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": 5101,
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": 1573,
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": 7373,
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",
@@ -11829,7 +12247,7 @@
11829
12247
  "dist/index.js": {
11830
12248
  "imports": [
11831
12249
  {
11832
- "path": "dist/chunk-2B7YYNHQ.js",
12250
+ "path": "dist/chunk-ZYR4B4KQ.js",
11833
12251
  "kind": "import-statement"
11834
12252
  }
11835
12253
  ],
@@ -11901,16 +12319,16 @@
11901
12319
  "inputs": {},
11902
12320
  "bytes": 1798
11903
12321
  },
11904
- "dist/HLSView-662T7R7H.js.map": {
12322
+ "dist/HLSView-EMUOLCTM.js.map": {
11905
12323
  "imports": [],
11906
12324
  "exports": [],
11907
12325
  "inputs": {},
11908
- "bytes": 53187
12326
+ "bytes": 58021
11909
12327
  },
11910
- "dist/HLSView-662T7R7H.js": {
12328
+ "dist/HLSView-EMUOLCTM.js": {
11911
12329
  "imports": [
11912
12330
  {
11913
- "path": "dist/chunk-2B7YYNHQ.js",
12331
+ "path": "dist/chunk-ZYR4B4KQ.js",
11914
12332
  "kind": "import-statement"
11915
12333
  },
11916
12334
  {
@@ -12008,6 +12426,16 @@
12008
12426
  "kind": "import-statement",
12009
12427
  "external": true
12010
12428
  },
12429
+ {
12430
+ "path": "@100mslive/react-icons",
12431
+ "kind": "import-statement",
12432
+ "external": true
12433
+ },
12434
+ {
12435
+ "path": "react",
12436
+ "kind": "import-statement",
12437
+ "external": true
12438
+ },
12011
12439
  {
12012
12440
  "path": "@100mslive/react-icons",
12013
12441
  "kind": "import-statement",
@@ -12020,7 +12448,7 @@
12020
12448
  "entryPoint": "src/Prebuilt/layouts/HLSView.jsx",
12021
12449
  "inputs": {
12022
12450
  "src/Prebuilt/layouts/HLSView.jsx": {
12023
- "bytesInOutput": 15098
12451
+ "bytesInOutput": 16830
12024
12452
  },
12025
12453
  "src/Prebuilt/components/HlsStatsOverlay.jsx": {
12026
12454
  "bytesInOutput": 3521
@@ -12032,7 +12460,7 @@
12032
12460
  "bytesInOutput": 416
12033
12461
  },
12034
12462
  "src/Prebuilt/components/HMSVideo/HMSVideo.jsx": {
12035
- "bytesInOutput": 521
12463
+ "bytesInOutput": 1171
12036
12464
  },
12037
12465
  "src/Prebuilt/components/HMSVideo/PlayButton.jsx": {
12038
12466
  "bytesInOutput": 534
@@ -12055,19 +12483,22 @@
12055
12483
  "src/Prebuilt/components/HMSVideo/HLSAutoplayBlockedPrompt.jsx": {
12056
12484
  "bytesInOutput": 902
12057
12485
  },
12486
+ "src/Prebuilt/components/HMSVideo/HLSCaptionSelector.tsx": {
12487
+ "bytesInOutput": 586
12488
+ },
12058
12489
  "src/Prebuilt/components/HMSVideo/HLSQualitySelector.jsx": {
12059
- "bytesInOutput": 3972
12490
+ "bytesInOutput": 3992
12060
12491
  }
12061
12492
  },
12062
- "bytes": 33380
12493
+ "bytes": 36449
12063
12494
  },
12064
- "dist/chunk-2B7YYNHQ.js.map": {
12495
+ "dist/chunk-ZYR4B4KQ.js.map": {
12065
12496
  "imports": [],
12066
12497
  "exports": [],
12067
12498
  "inputs": {},
12068
- "bytes": 2263043
12499
+ "bytes": 2312452
12069
12500
  },
12070
- "dist/chunk-2B7YYNHQ.js": {
12501
+ "dist/chunk-ZYR4B4KQ.js": {
12071
12502
  "imports": [
12072
12503
  {
12073
12504
  "path": "react",
@@ -13219,6 +13650,21 @@
13219
13650
  "kind": "import-statement",
13220
13651
  "external": true
13221
13652
  },
13653
+ {
13654
+ "path": "@100mslive/react-sdk",
13655
+ "kind": "import-statement",
13656
+ "external": true
13657
+ },
13658
+ {
13659
+ "path": "@100mslive/react-icons",
13660
+ "kind": "import-statement",
13661
+ "external": true
13662
+ },
13663
+ {
13664
+ "path": "react",
13665
+ "kind": "import-statement",
13666
+ "external": true
13667
+ },
13222
13668
  {
13223
13669
  "path": "react-use",
13224
13670
  "kind": "import-statement",
@@ -13274,6 +13720,21 @@
13274
13720
  "kind": "import-statement",
13275
13721
  "external": true
13276
13722
  },
13723
+ {
13724
+ "path": "@100mslive/react-icons",
13725
+ "kind": "import-statement",
13726
+ "external": true
13727
+ },
13728
+ {
13729
+ "path": "react",
13730
+ "kind": "import-statement",
13731
+ "external": true
13732
+ },
13733
+ {
13734
+ "path": "@100mslive/react-sdk",
13735
+ "kind": "import-statement",
13736
+ "external": true
13737
+ },
13277
13738
  {
13278
13739
  "path": "react",
13279
13740
  "kind": "import-statement",
@@ -13434,6 +13895,36 @@
13434
13895
  "kind": "import-statement",
13435
13896
  "external": true
13436
13897
  },
13898
+ {
13899
+ "path": "@100mslive/react-icons",
13900
+ "kind": "import-statement",
13901
+ "external": true
13902
+ },
13903
+ {
13904
+ "path": "react",
13905
+ "kind": "import-statement",
13906
+ "external": true
13907
+ },
13908
+ {
13909
+ "path": "@100mslive/react-icons",
13910
+ "kind": "import-statement",
13911
+ "external": true
13912
+ },
13913
+ {
13914
+ "path": "react",
13915
+ "kind": "import-statement",
13916
+ "external": true
13917
+ },
13918
+ {
13919
+ "path": "@100mslive/react-sdk",
13920
+ "kind": "import-statement",
13921
+ "external": true
13922
+ },
13923
+ {
13924
+ "path": "@100mslive/react-icons",
13925
+ "kind": "import-statement",
13926
+ "external": true
13927
+ },
13437
13928
  {
13438
13929
  "path": "react",
13439
13930
  "kind": "import-statement",
@@ -13474,6 +13965,16 @@
13474
13965
  "kind": "import-statement",
13475
13966
  "external": true
13476
13967
  },
13968
+ {
13969
+ "path": "react",
13970
+ "kind": "import-statement",
13971
+ "external": true
13972
+ },
13973
+ {
13974
+ "path": "@100mslive/react-sdk",
13975
+ "kind": "import-statement",
13976
+ "external": true
13977
+ },
13477
13978
  {
13478
13979
  "path": "@100mslive/react-icons",
13479
13980
  "kind": "import-statement",
@@ -13589,11 +14090,6 @@
13589
14090
  "kind": "import-statement",
13590
14091
  "external": true
13591
14092
  },
13592
- {
13593
- "path": "@100mslive/react-sdk",
13594
- "kind": "import-statement",
13595
- "external": true
13596
- },
13597
14093
  {
13598
14094
  "path": "react",
13599
14095
  "kind": "import-statement",
@@ -13634,11 +14130,6 @@
13634
14130
  "kind": "import-statement",
13635
14131
  "external": true
13636
14132
  },
13637
- {
13638
- "path": "@100mslive/react-sdk",
13639
- "kind": "import-statement",
13640
- "external": true
13641
- },
13642
14133
  {
13643
14134
  "path": "@100mslive/react-icons",
13644
14135
  "kind": "import-statement",
@@ -14160,7 +14651,32 @@
14160
14651
  "external": true
14161
14652
  },
14162
14653
  {
14163
- "path": "dist/HLSView-662T7R7H.js",
14654
+ "path": "react",
14655
+ "kind": "import-statement",
14656
+ "external": true
14657
+ },
14658
+ {
14659
+ "path": "@100mslive/react-sdk",
14660
+ "kind": "import-statement",
14661
+ "external": true
14662
+ },
14663
+ {
14664
+ "path": "react",
14665
+ "kind": "import-statement",
14666
+ "external": true
14667
+ },
14668
+ {
14669
+ "path": "react-use",
14670
+ "kind": "import-statement",
14671
+ "external": true
14672
+ },
14673
+ {
14674
+ "path": "@100mslive/react-sdk",
14675
+ "kind": "import-statement",
14676
+ "external": true
14677
+ },
14678
+ {
14679
+ "path": "dist/HLSView-EMUOLCTM.js",
14164
14680
  "kind": "dynamic-import"
14165
14681
  },
14166
14682
  {
@@ -14198,6 +14714,16 @@
14198
14714
  "kind": "import-statement",
14199
14715
  "external": true
14200
14716
  },
14717
+ {
14718
+ "path": "@100mslive/react-sdk",
14719
+ "kind": "import-statement",
14720
+ "external": true
14721
+ },
14722
+ {
14723
+ "path": "react",
14724
+ "kind": "import-statement",
14725
+ "external": true
14726
+ },
14201
14727
  {
14202
14728
  "path": "@100mslive/react-icons",
14203
14729
  "kind": "import-statement",
@@ -14273,6 +14799,11 @@
14273
14799
  "kind": "import-statement",
14274
14800
  "external": true
14275
14801
  },
14802
+ {
14803
+ "path": "@100mslive/react-icons",
14804
+ "kind": "import-statement",
14805
+ "external": true
14806
+ },
14276
14807
  {
14277
14808
  "path": "react",
14278
14809
  "kind": "import-statement",
@@ -14343,6 +14874,16 @@
14343
14874
  "kind": "import-statement",
14344
14875
  "external": true
14345
14876
  },
14877
+ {
14878
+ "path": "@100mslive/react-sdk",
14879
+ "kind": "import-statement",
14880
+ "external": true
14881
+ },
14882
+ {
14883
+ "path": "react",
14884
+ "kind": "import-statement",
14885
+ "external": true
14886
+ },
14346
14887
  {
14347
14888
  "path": "react-use",
14348
14889
  "kind": "import-statement",
@@ -14541,14 +15082,15 @@
14541
15082
  "textEllipsis",
14542
15083
  "theme",
14543
15084
  "useBorderAudioLevel",
15085
+ "usePollViewToggle",
14544
15086
  "useTheme"
14545
15087
  ],
14546
15088
  "inputs": {
14547
15089
  "<define:process.env>": {
14548
- "bytesInOutput": 18567
15090
+ "bytesInOutput": 18549
14549
15091
  },
14550
15092
  "../../node_modules/ua-parser-js/src/ua-parser.js": {
14551
- "bytesInOutput": 42457
15093
+ "bytesInOutput": 42462
14552
15094
  },
14553
15095
  "../../node_modules/sdp/sdp.js": {
14554
15096
  "bytesInOutput": 22288
@@ -14791,10 +15333,7 @@
14791
15333
  "bytesInOutput": 7591
14792
15334
  },
14793
15335
  "src/Prebuilt/components/AppData/AppData.tsx": {
14794
- "bytesInOutput": 4863
14795
- },
14796
- "src/Prebuilt/components/init/initUtils.js": {
14797
- "bytesInOutput": 1720
15336
+ "bytesInOutput": 4365
14798
15337
  },
14799
15338
  "src/Prebuilt/components/hooks/useUserPreferences.jsx": {
14800
15339
  "bytesInOutput": 748
@@ -14806,7 +15345,7 @@
14806
15345
  "bytesInOutput": 5393
14807
15346
  },
14808
15347
  "src/Prebuilt/common/constants.ts": {
14809
- "bytesInOutput": 3644
15348
+ "bytesInOutput": 3505
14810
15349
  },
14811
15350
  "src/Prebuilt/components/AuthToken.jsx": {
14812
15351
  "bytesInOutput": 3501
@@ -14818,10 +15357,10 @@
14818
15357
  "bytesInOutput": 7656
14819
15358
  },
14820
15359
  "src/Prebuilt/components/ConferenceScreen.tsx": {
14821
- "bytesInOutput": 5960
15360
+ "bytesInOutput": 6030
14822
15361
  },
14823
15362
  "src/Prebuilt/components/Footer/Footer.tsx": {
14824
- "bytesInOutput": 3285
15363
+ "bytesInOutput": 3348
14825
15364
  },
14826
15365
  "src/Prebuilt/components/AudioVideoToggle.jsx": {
14827
15366
  "bytesInOutput": 5480
@@ -14836,7 +15375,7 @@
14836
15375
  "bytesInOutput": 1028
14837
15376
  },
14838
15377
  "src/Prebuilt/components/EmojiReaction.jsx": {
14839
- "bytesInOutput": 2105
15378
+ "bytesInOutput": 2075
14840
15379
  },
14841
15380
  "src/Prebuilt/components/Footer/EmojiCard.jsx": {
14842
15381
  "bytesInOutput": 972
@@ -14845,7 +15384,7 @@
14845
15384
  "bytesInOutput": 604
14846
15385
  },
14847
15386
  "src/Prebuilt/components/Leave/LeaveRoom.tsx": {
14848
- "bytesInOutput": 2182
15387
+ "bytesInOutput": 2162
14849
15388
  },
14850
15389
  "src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx": {
14851
15390
  "bytesInOutput": 5740
@@ -14893,13 +15432,13 @@
14893
15432
  "bytesInOutput": 2476
14894
15433
  },
14895
15434
  "src/Prebuilt/components/RoleChangeModal.jsx": {
14896
- "bytesInOutput": 6088
15435
+ "bytesInOutput": 6094
14897
15436
  },
14898
15437
  "src/Prebuilt/components/hooks/useDropdownSelection.jsx": {
14899
15438
  "bytesInOutput": 93
14900
15439
  },
14901
15440
  "src/Prebuilt/common/hooks.ts": {
14902
- "bytesInOutput": 2324
15441
+ "bytesInOutput": 2675
14903
15442
  },
14904
15443
  "src/Prebuilt/provider/roomLayoutProvider/index.tsx": {
14905
15444
  "bytesInOutput": 896
@@ -14968,7 +15507,7 @@
14968
15507
  "bytesInOutput": 10019
14969
15508
  },
14970
15509
  "../hms-video-web/dist/index.js": {
14971
- "bytesInOutput": 32495
15510
+ "bytesInOutput": 32627
14972
15511
  },
14973
15512
  "../../node_modules/webrtc-adapter/src/js/adapter_core.js": {
14974
15513
  "bytesInOutput": 154
@@ -15010,7 +15549,7 @@
15010
15549
  "bytesInOutput": 1760
15011
15550
  },
15012
15551
  "src/Prebuilt/common/utils.js": {
15013
- "bytesInOutput": 2425
15552
+ "bytesInOutput": 3730
15014
15553
  },
15015
15554
  "src/Prebuilt/services/FeatureFlags.jsx": {
15016
15555
  "bytesInOutput": 1427
@@ -15067,10 +15606,10 @@
15067
15606
  "bytesInOutput": 847
15068
15607
  },
15069
15608
  "src/Prebuilt/components/Footer/ChatToggle.tsx": {
15070
- "bytesInOutput": 888
15609
+ "bytesInOutput": 1404
15071
15610
  },
15072
- "src/Prebuilt/components/Footer/ParticipantList.jsx": {
15073
- "bytesInOutput": 11648
15611
+ "src/Prebuilt/components/Footer/ParticipantList.tsx": {
15612
+ "bytesInOutput": 11538
15074
15613
  },
15075
15614
  "src/Prebuilt/components/Connection/ConnectionIndicator.tsx": {
15076
15615
  "bytesInOutput": 3751
@@ -15078,8 +15617,11 @@
15078
15617
  "src/Prebuilt/components/Connection/connectionQualityUtils.js": {
15079
15618
  "bytesInOutput": 777
15080
15619
  },
15620
+ "src/Prebuilt/components/RemoveParticipant.tsx": {
15621
+ "bytesInOutput": 1290
15622
+ },
15081
15623
  "src/Prebuilt/components/Footer/RoleAccordion.tsx": {
15082
- "bytesInOutput": 4164
15624
+ "bytesInOutput": 4229
15083
15625
  },
15084
15626
  "src/Prebuilt/components/Footer/RoleOptions.tsx": {
15085
15627
  "bytesInOutput": 5852
@@ -15087,6 +15629,9 @@
15087
15629
  "src/Prebuilt/components/Footer/PollsToggle.tsx": {
15088
15630
  "bytesInOutput": 596
15089
15631
  },
15632
+ "src/Prebuilt/components/Footer/WhiteboardToggle.tsx": {
15633
+ "bytesInOutput": 899
15634
+ },
15090
15635
  "src/Prebuilt/components/Notifications/HLSFailureModal.tsx": {
15091
15636
  "bytesInOutput": 2414
15092
15637
  },
@@ -15094,58 +15639,67 @@
15094
15639
  "bytesInOutput": 2968
15095
15640
  },
15096
15641
  "src/Prebuilt/components/Preview/PreviewJoin.tsx": {
15097
- "bytesInOutput": 9823
15642
+ "bytesInOutput": 9825
15098
15643
  },
15099
15644
  "src/Prebuilt/layouts/SidePane.tsx": {
15100
15645
  "bytesInOutput": 3969
15101
15646
  },
15102
15647
  "src/Prebuilt/components/Polls/Polls.tsx": {
15103
- "bytesInOutput": 604
15648
+ "bytesInOutput": 723
15104
15649
  },
15105
15650
  "src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx": {
15106
- "bytesInOutput": 7838
15651
+ "bytesInOutput": 7665
15107
15652
  },
15108
15653
  "src/Prebuilt/components/Streaming/Common.jsx": {
15109
15654
  "bytesInOutput": 2247
15110
15655
  },
15111
15656
  "src/Prebuilt/components/Polls/common/StatusIndicator.jsx": {
15112
- "bytesInOutput": 1103
15657
+ "bytesInOutput": 624
15113
15658
  },
15114
15659
  "src/Prebuilt/components/Polls/CreateQuestions/CreateQuestions.jsx": {
15115
- "bytesInOutput": 4373
15660
+ "bytesInOutput": 4875
15116
15661
  },
15117
15662
  "src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.jsx": {
15118
- "bytesInOutput": 7603
15663
+ "bytesInOutput": 8426
15119
15664
  },
15120
15665
  "src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.jsx": {
15121
15666
  "bytesInOutput": 2077
15122
15667
  },
15123
15668
  "src/Prebuilt/components/Polls/common/MultipleChoiceOptions.jsx": {
15124
- "bytesInOutput": 3188
15669
+ "bytesInOutput": 3595
15125
15670
  },
15126
15671
  "src/Prebuilt/components/Polls/common/OptionInputWithDelete.jsx": {
15127
15672
  "bytesInOutput": 882
15128
15673
  },
15129
15674
  "src/Prebuilt/components/Polls/common/VoteCount.jsx": {
15130
- "bytesInOutput": 781
15675
+ "bytesInOutput": 361
15131
15676
  },
15132
15677
  "src/Prebuilt/components/Polls/common/VoteProgress.jsx": {
15133
15678
  "bytesInOutput": 587
15134
15679
  },
15135
15680
  "src/Prebuilt/components/Polls/common/SingleChoiceOptions.jsx": {
15136
- "bytesInOutput": 3793
15681
+ "bytesInOutput": 4306
15137
15682
  },
15138
15683
  "src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.jsx": {
15139
- "bytesInOutput": 2131
15684
+ "bytesInOutput": 2193
15685
+ },
15686
+ "src/Prebuilt/components/Polls/Voting/Leaderboard.tsx": {
15687
+ "bytesInOutput": 3350
15688
+ },
15689
+ "src/Prebuilt/components/Polls/Voting/LeaderboardEntry.tsx": {
15690
+ "bytesInOutput": 1620
15140
15691
  },
15141
15692
  "src/Prebuilt/components/Polls/Voting/Voting.jsx": {
15142
- "bytesInOutput": 3043
15693
+ "bytesInOutput": 3376
15143
15694
  },
15144
15695
  "src/Prebuilt/components/Polls/Voting/StandardVoting.jsx": {
15145
- "bytesInOutput": 1087
15696
+ "bytesInOutput": 1254
15697
+ },
15698
+ "src/Prebuilt/components/Polls/Voting/PeerParticipationSummary.tsx": {
15699
+ "bytesInOutput": 1342
15146
15700
  },
15147
15701
  "src/Prebuilt/components/Polls/Voting/QuestionCard.jsx": {
15148
- "bytesInOutput": 8244
15702
+ "bytesInOutput": 9109
15149
15703
  },
15150
15704
  "src/Prebuilt/components/Polls/Voting/TimedVoting.jsx": {
15151
15705
  "bytesInOutput": 1101
@@ -15154,16 +15708,16 @@
15154
15708
  "bytesInOutput": 6518
15155
15709
  },
15156
15710
  "src/Prebuilt/components/Chat/Chat.jsx": {
15157
- "bytesInOutput": 5130
15711
+ "bytesInOutput": 4336
15158
15712
  },
15159
15713
  "../hms-video-store/dist/index.js": {
15160
- "bytesInOutput": 19683
15714
+ "bytesInOutput": 19730
15161
15715
  },
15162
15716
  "../../node_modules/reselect/es/index.js": {
15163
15717
  "bytesInOutput": 2537
15164
15718
  },
15165
15719
  "src/Prebuilt/components/Chat/ChatBody.jsx": {
15166
- "bytesInOutput": 21321
15720
+ "bytesInOutput": 23342
15167
15721
  },
15168
15722
  "src/Prebuilt/images/empty-chat.svg": {
15169
15723
  "bytesInOutput": 2261
@@ -15177,17 +15731,14 @@
15177
15731
  "src/Prebuilt/components/hooks/useSetPinnedMessages.ts": {
15178
15732
  "bytesInOutput": 2463
15179
15733
  },
15180
- "src/Prebuilt/components/Chat/useUnreadCount.ts": {
15181
- "bytesInOutput": 598
15182
- },
15183
15734
  "src/Prebuilt/components/Chat/ChatFooter.tsx": {
15184
- "bytesInOutput": 8294
15735
+ "bytesInOutput": 8514
15185
15736
  },
15186
15737
  "src/Prebuilt/components/Chat/ChatSelectorContainer.tsx": {
15187
- "bytesInOutput": 5343
15738
+ "bytesInOutput": 5318
15188
15739
  },
15189
15740
  "src/Prebuilt/components/Chat/ChatSelector.tsx": {
15190
- "bytesInOutput": 6881
15741
+ "bytesInOutput": 6996
15191
15742
  },
15192
15743
  "src/Prebuilt/components/AppData/useChatState.js": {
15193
15744
  "bytesInOutput": 666
@@ -15196,10 +15747,10 @@
15196
15747
  "bytesInOutput": 1202
15197
15748
  },
15198
15749
  "src/Prebuilt/components/Chat/ChatStates.tsx": {
15199
- "bytesInOutput": 2780
15750
+ "bytesInOutput": 2790
15200
15751
  },
15201
15752
  "src/Prebuilt/components/Chat/PinnedMessage.tsx": {
15202
- "bytesInOutput": 4799
15753
+ "bytesInOutput": 4946
15203
15754
  },
15204
15755
  "src/Prebuilt/components/Chat/ArrowNavigation.tsx": {
15205
15756
  "bytesInOutput": 1021
@@ -15208,7 +15759,7 @@
15208
15759
  "bytesInOutput": 543
15209
15760
  },
15210
15761
  "src/Prebuilt/components/Footer/PaginatedParticipants.tsx": {
15211
- "bytesInOutput": 4180
15762
+ "bytesInOutput": 4182
15212
15763
  },
15213
15764
  "src/Prebuilt/components/ChatSettings.tsx": {
15214
15765
  "bytesInOutput": 2469
@@ -15256,13 +15807,13 @@
15256
15807
  "bytesInOutput": 2041
15257
15808
  },
15258
15809
  "src/Prebuilt/layouts/VideoStreamingSection.tsx": {
15259
- "bytesInOutput": 2566
15810
+ "bytesInOutput": 3196
15260
15811
  },
15261
15812
  "src/Prebuilt/components/VideoLayouts/GridLayout.tsx": {
15262
- "bytesInOutput": 3184
15813
+ "bytesInOutput": 3699
15263
15814
  },
15264
15815
  "src/Prebuilt/components/VideoLayouts/EqualProminence.tsx": {
15265
- "bytesInOutput": 1986
15816
+ "bytesInOutput": 2019
15266
15817
  },
15267
15818
  "src/Prebuilt/components/InsetTile.tsx": {
15268
15819
  "bytesInOutput": 4035
@@ -15280,7 +15831,7 @@
15280
15831
  "bytesInOutput": 3836
15281
15832
  },
15282
15833
  "src/Prebuilt/components/VideoLayouts/RoleProminence.tsx": {
15283
- "bytesInOutput": 1735
15834
+ "bytesInOutput": 1737
15284
15835
  },
15285
15836
  "src/Prebuilt/components/SecondaryTiles.tsx": {
15286
15837
  "bytesInOutput": 1069
@@ -15292,7 +15843,7 @@
15292
15843
  "bytesInOutput": 961
15293
15844
  },
15294
15845
  "src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx": {
15295
- "bytesInOutput": 1898
15846
+ "bytesInOutput": 1902
15296
15847
  },
15297
15848
  "src/Prebuilt/components/ScreenshareTile.jsx": {
15298
15849
  "bytesInOutput": 3693
@@ -15301,7 +15852,7 @@
15301
15852
  "bytesInOutput": 1226
15302
15853
  },
15303
15854
  "src/Prebuilt/common/PeersSorter.ts": {
15304
- "bytesInOutput": 2771
15855
+ "bytesInOutput": 3099
15305
15856
  },
15306
15857
  "src/Prebuilt/layouts/EmbedView.jsx": {
15307
15858
  "bytesInOutput": 2785
@@ -15312,6 +15863,12 @@
15312
15863
  "src/Prebuilt/layouts/WaitingView.jsx": {
15313
15864
  "bytesInOutput": 1415
15314
15865
  },
15866
+ "src/Prebuilt/layouts/WhiteboardView.tsx": {
15867
+ "bytesInOutput": 1967
15868
+ },
15869
+ "src/Prebuilt/components/hooks/useCloseScreenshareWhiteboard.tsx": {
15870
+ "bytesInOutput": 1001
15871
+ },
15315
15872
  "src/Prebuilt/components/Header/index.tsx": {
15316
15873
  "bytesInOutput": 27
15317
15874
  },
@@ -15321,6 +15878,9 @@
15321
15878
  "src/Prebuilt/components/Header/common.jsx": {
15322
15879
  "bytesInOutput": 6075
15323
15880
  },
15881
+ "src/Prebuilt/components/PreviousRoleInMetadata.tsx": {
15882
+ "bytesInOutput": 739
15883
+ },
15324
15884
  "src/Prebuilt/components/ErrorBoundary.jsx": {
15325
15885
  "bytesInOutput": 3317
15326
15886
  },
@@ -15334,7 +15894,7 @@
15334
15894
  "bytesInOutput": 2185
15335
15895
  },
15336
15896
  "src/Prebuilt/AppStateContext.tsx": {
15337
- "bytesInOutput": 2106
15897
+ "bytesInOutput": 2132
15338
15898
  },
15339
15899
  "src/Prebuilt/components/hooks/useRedirectToLeave.tsx": {
15340
15900
  "bytesInOutput": 491
@@ -15346,13 +15906,13 @@
15346
15906
  "bytesInOutput": 27
15347
15907
  },
15348
15908
  "src/Prebuilt/components/Notifications/Notifications.tsx": {
15349
- "bytesInOutput": 7083
15909
+ "bytesInOutput": 7342
15350
15910
  },
15351
15911
  "src/Prebuilt/components/Toast/ToastBatcher.js": {
15352
15912
  "bytesInOutput": 1768
15353
15913
  },
15354
15914
  "src/Prebuilt/components/Toast/ToastConfig.jsx": {
15355
- "bytesInOutput": 6226
15915
+ "bytesInOutput": 6475
15356
15916
  },
15357
15917
  "src/Prebuilt/components/Notifications/AutoplayBlockedModal.tsx": {
15358
15918
  "bytesInOutput": 1053
@@ -15360,11 +15920,14 @@
15360
15920
  "src/Prebuilt/components/Notifications/ChatNotifications.tsx": {
15361
15921
  "bytesInOutput": 1368
15362
15922
  },
15923
+ "src/Prebuilt/components/Notifications/HandRaisedNotifications.tsx": {
15924
+ "bytesInOutput": 1172
15925
+ },
15363
15926
  "src/Prebuilt/components/Notifications/InitErrorModal.tsx": {
15364
15927
  "bytesInOutput": 1596
15365
15928
  },
15366
15929
  "src/Prebuilt/components/Notifications/PeerNotifications.tsx": {
15367
- "bytesInOutput": 1404
15930
+ "bytesInOutput": 1593
15368
15931
  },
15369
15932
  "src/Prebuilt/components/Notifications/PermissionErrorModal.tsx": {
15370
15933
  "bytesInOutput": 4382
@@ -15409,7 +15972,7 @@
15409
15972
  "bytesInOutput": 418
15410
15973
  }
15411
15974
  },
15412
- "bytes": 972252
15975
+ "bytes": 992224
15413
15976
  }
15414
15977
  }
15415
15978
  }