@100mslive/roomkit-react 0.1.20-alpha.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/README.md +27 -2
  2. package/dist/{HLSView-PJLISGG4.js → HLSView-ULB4DC6B.js} +2 -2
  3. package/dist/Input/Input.d.ts +3 -3
  4. package/dist/Prebuilt/components/Chat/ChatActions.d.ts +2 -1
  5. package/dist/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.d.ts +6 -0
  6. package/dist/Prebuilt/components/Polls/CreateQuestions/QuestionForm.d.ts +22 -0
  7. package/dist/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.d.ts +11 -0
  8. package/dist/Prebuilt/components/Polls/Voting/StandardVoting.d.ts +5 -0
  9. package/dist/Prebuilt/components/Polls/Voting/TimedVoting.d.ts +5 -0
  10. package/dist/Prebuilt/components/Polls/Voting/Voting.d.ts +5 -0
  11. package/dist/Prebuilt/components/Polls/common/Line.d.ts +2 -0
  12. package/dist/Prebuilt/components/Polls/common/OptionInputWithDelete.d.ts +8 -0
  13. package/dist/Prebuilt/components/Polls/common/StatusIndicator.d.ts +4 -0
  14. package/dist/Prebuilt/components/Polls/common/VoteCount.d.ts +4 -0
  15. package/dist/Prebuilt/components/Polls/common/VoteProgress.d.ts +6 -0
  16. package/dist/Prebuilt/components/Polls/common/VoterList.d.ts +4 -0
  17. package/dist/Prebuilt/components/TileMenu/utils.d.ts +5 -0
  18. package/dist/Prebuilt/components/hooks/usePinnedBy.d.ts +1 -0
  19. package/dist/Prebuilt/components/hooks/{useSetPinnedMessages.d.ts → usePinnedMessages.d.ts} +6 -1
  20. package/dist/TextArea/TextArea.d.ts +441 -0
  21. package/dist/TextArea/index.d.ts +1 -0
  22. package/dist/Toast/Toast.d.ts +1 -1
  23. package/dist/{chunk-QENB2CO7.js → chunk-GVA4I77Z.js} +2803 -2743
  24. package/dist/chunk-GVA4I77Z.js.map +7 -0
  25. package/dist/index.cjs.js +3038 -2969
  26. package/dist/index.cjs.js.map +4 -4
  27. package/dist/index.d.ts +1 -0
  28. package/dist/index.js +3 -1
  29. package/dist/meta.cjs.json +475 -388
  30. package/dist/meta.esbuild.json +485 -396
  31. package/package.json +7 -8
  32. package/src/Button/Button.tsx +4 -4
  33. package/src/Input/Input.tsx +1 -1
  34. package/src/Prebuilt/App.tsx +2 -0
  35. package/src/Prebuilt/components/Chat/ChatActions.tsx +25 -8
  36. package/src/Prebuilt/components/Chat/ChatBody.tsx +64 -21
  37. package/src/Prebuilt/components/Chat/ChatFooter.tsx +1 -0
  38. package/src/Prebuilt/components/Chat/PinnedMessage.tsx +2 -2
  39. package/src/Prebuilt/components/Header/AdditionalRoomState.jsx +1 -38
  40. package/src/Prebuilt/components/Header/StreamActions.tsx +1 -1
  41. package/src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx +11 -1
  42. package/src/Prebuilt/components/Polls/CreateQuestions/{DeleteQuestionModal.jsx → DeleteQuestionModal.tsx} +9 -1
  43. package/src/Prebuilt/components/Polls/CreateQuestions/{QuestionForm.jsx → QuestionForm.tsx} +71 -30
  44. package/src/Prebuilt/components/Polls/CreateQuestions/{SavedQuestion.jsx → SavedQuestion.tsx} +24 -15
  45. package/src/Prebuilt/components/Polls/Voting/LeaderboardSummary.tsx +1 -1
  46. package/src/Prebuilt/components/Polls/Voting/QuestionCard.jsx +61 -80
  47. package/src/Prebuilt/components/Polls/Voting/{StandardVoting.jsx → StandardVoting.tsx} +3 -7
  48. package/src/Prebuilt/components/Polls/Voting/{TimedVoting.jsx → TimedVoting.tsx} +4 -7
  49. package/src/Prebuilt/components/Polls/Voting/{Voting.jsx → Voting.tsx} +4 -3
  50. package/src/Prebuilt/components/Polls/common/Line.tsx +4 -0
  51. package/src/Prebuilt/components/Polls/common/{OptionInputWithDelete.jsx → OptionInputWithDelete.tsx} +14 -2
  52. package/src/Prebuilt/components/Polls/common/SingleChoiceOptions.jsx +1 -1
  53. package/src/Prebuilt/components/Polls/common/{StatusIndicator.jsx → StatusIndicator.tsx} +1 -2
  54. package/src/Prebuilt/components/Polls/common/{VoteCount.jsx → VoteCount.tsx} +1 -2
  55. package/src/Prebuilt/components/Polls/common/{VoteProgress.jsx → VoteProgress.tsx} +3 -2
  56. package/src/Prebuilt/components/Polls/common/{VoterList.jsx → VoterList.tsx} +1 -1
  57. package/src/Prebuilt/components/TileMenu/TileMenu.jsx +3 -1
  58. package/src/Prebuilt/components/TileMenu/TileMenuContent.tsx +15 -3
  59. package/src/Prebuilt/components/TileMenu/utils.ts +7 -0
  60. package/src/Prebuilt/components/VideoLayouts/GridLayout.tsx +7 -3
  61. package/src/Prebuilt/components/VideoTile.jsx +2 -4
  62. package/src/Prebuilt/components/hooks/usePinnedBy.tsx +22 -0
  63. package/src/Prebuilt/components/hooks/{useSetPinnedMessages.ts → usePinnedMessages.ts} +2 -2
  64. package/src/Prebuilt/components/hooks/useUnreadPollQuizPresent.tsx +1 -4
  65. package/src/Prebuilt/layouts/VideoStreamingSection.tsx +0 -1
  66. package/src/TextArea/TextArea.tsx +30 -0
  67. package/src/TextArea/index.tsx +1 -0
  68. package/src/index.ts +1 -0
  69. package/src/store/StorybookSDK.ts +3 -1
  70. package/dist/Prebuilt/plugins/whiteboard/ToggleWhiteboard.d.ts +0 -5
  71. package/dist/chunk-QENB2CO7.js.map +0 -7
  72. package/src/Prebuilt/components/Polls/common/Votes.jsx +0 -72
  73. package/src/Prebuilt/layouts/WhiteboardView.jsx +0 -40
  74. package/src/Prebuilt/plugins/whiteboard/PusherCommunicationProvider.js +0 -110
  75. package/src/Prebuilt/plugins/whiteboard/README.md +0 -29
  76. package/src/Prebuilt/plugins/whiteboard/ToggleWhiteboard.tsx +0 -37
  77. package/src/Prebuilt/plugins/whiteboard/Whiteboard.css +0 -12
  78. package/src/Prebuilt/plugins/whiteboard/Whiteboard.jsx +0 -11
  79. package/src/Prebuilt/plugins/whiteboard/WhiteboardEvents.js +0 -8
  80. package/src/Prebuilt/plugins/whiteboard/index.js +0 -3
  81. package/src/Prebuilt/plugins/whiteboard/useMultiplayerState.js +0 -212
  82. package/src/Prebuilt/plugins/whiteboard/useWhiteboardMetadata.js +0 -47
  83. /package/dist/{HLSView-PJLISGG4.js.map → HLSView-ULB4DC6B.js.map} +0 -0
@@ -242,7 +242,7 @@
242
242
  "format": "esm"
243
243
  },
244
244
  "src/Button/Button.tsx": {
245
- "bytes": 4730,
245
+ "bytes": 4738,
246
246
  "imports": [
247
247
  {
248
248
  "path": "react",
@@ -853,7 +853,7 @@
853
853
  "format": "esm"
854
854
  },
855
855
  "src/Input/Input.tsx": {
856
- "bytes": 2642,
856
+ "bytes": 2628,
857
857
  "imports": [
858
858
  {
859
859
  "path": "react",
@@ -4136,6 +4136,17 @@
4136
4136
  ],
4137
4137
  "format": "esm"
4138
4138
  },
4139
+ "../../node_modules/reselect/es/index.js": {
4140
+ "bytes": 3975,
4141
+ "imports": [
4142
+ {
4143
+ "path": "<define:process.env>",
4144
+ "kind": "import-statement",
4145
+ "external": true
4146
+ }
4147
+ ],
4148
+ "format": "esm"
4149
+ },
4139
4150
  "../../node_modules/ua-parser-js/src/ua-parser.js": {
4140
4151
  "bytes": 48030,
4141
4152
  "imports": [
@@ -4369,6 +4380,39 @@
4369
4380
  ],
4370
4381
  "format": "esm"
4371
4382
  },
4383
+ "../../node_modules/immer/dist/immer.esm.mjs": {
4384
+ "bytes": 18424,
4385
+ "imports": [
4386
+ {
4387
+ "path": "<define:process.env>",
4388
+ "kind": "import-statement",
4389
+ "external": true
4390
+ }
4391
+ ],
4392
+ "format": "esm"
4393
+ },
4394
+ "../../node_modules/zustand/esm/shallow.js": {
4395
+ "bytes": 535,
4396
+ "imports": [
4397
+ {
4398
+ "path": "<define:process.env>",
4399
+ "kind": "import-statement",
4400
+ "external": true
4401
+ }
4402
+ ],
4403
+ "format": "esm"
4404
+ },
4405
+ "../../node_modules/zustand/esm/vanilla.js": {
4406
+ "bytes": 1346,
4407
+ "imports": [
4408
+ {
4409
+ "path": "<define:process.env>",
4410
+ "kind": "import-statement",
4411
+ "external": true
4412
+ }
4413
+ ],
4414
+ "format": "esm"
4415
+ },
4372
4416
  "../../node_modules/sdp-transform/lib/grammar.js": {
4373
4417
  "bytes": 14743,
4374
4418
  "imports": [
@@ -4433,23 +4477,23 @@
4433
4477
  ],
4434
4478
  "format": "cjs"
4435
4479
  },
4436
- "../hms-video-web/dist/index.js": {
4437
- "bytes": 263278,
4480
+ "../hms-video-store/dist/index.js": {
4481
+ "bytes": 320359,
4438
4482
  "imports": [
4439
4483
  {
4440
- "path": "uuid",
4484
+ "path": "../../node_modules/reselect/es/index.js",
4441
4485
  "kind": "import-statement",
4442
- "external": true
4486
+ "original": "reselect"
4443
4487
  },
4444
4488
  {
4445
- "path": "uuid",
4489
+ "path": "../../node_modules/reselect/es/index.js",
4446
4490
  "kind": "import-statement",
4447
- "external": true
4491
+ "original": "reselect"
4448
4492
  },
4449
4493
  {
4450
- "path": "uuid",
4494
+ "path": "../../node_modules/reselect/es/index.js",
4451
4495
  "kind": "import-statement",
4452
- "external": true
4496
+ "original": "reselect"
4453
4497
  },
4454
4498
  {
4455
4499
  "path": "../../node_modules/ua-parser-js/src/ua-parser.js",
@@ -4462,9 +4506,9 @@
4462
4506
  "external": true
4463
4507
  },
4464
4508
  {
4465
- "path": "../../node_modules/webrtc-adapter/src/js/adapter_core.js",
4509
+ "path": "uuid",
4466
4510
  "kind": "import-statement",
4467
- "original": "webrtc-adapter"
4511
+ "external": true
4468
4512
  },
4469
4513
  {
4470
4514
  "path": "../../node_modules/webrtc-adapter/src/js/adapter_core.js",
@@ -4482,7 +4526,7 @@
4482
4526
  "external": true
4483
4527
  },
4484
4528
  {
4485
- "path": "eventemitter2",
4529
+ "path": "uuid",
4486
4530
  "kind": "import-statement",
4487
4531
  "external": true
4488
4532
  },
@@ -4492,112 +4536,74 @@
4492
4536
  "external": true
4493
4537
  },
4494
4538
  {
4495
- "path": "../../node_modules/sdp-transform/lib/index.js",
4539
+ "path": "../../node_modules/reselect/es/index.js",
4496
4540
  "kind": "import-statement",
4497
- "original": "sdp-transform"
4541
+ "original": "reselect"
4498
4542
  },
4499
4543
  {
4500
- "path": "eventemitter2",
4544
+ "path": "../../node_modules/reselect/es/index.js",
4501
4545
  "kind": "import-statement",
4502
- "external": true
4546
+ "original": "reselect"
4503
4547
  },
4504
4548
  {
4505
- "path": "uuid",
4549
+ "path": "../../node_modules/immer/dist/immer.esm.mjs",
4506
4550
  "kind": "import-statement",
4507
- "external": true
4551
+ "original": "immer"
4508
4552
  },
4509
4553
  {
4510
- "path": "uuid",
4554
+ "path": "../../node_modules/zustand/esm/shallow.js",
4511
4555
  "kind": "import-statement",
4512
- "external": true
4556
+ "original": "zustand/shallow"
4513
4557
  },
4514
4558
  {
4515
- "path": "<define:process.env>",
4516
- "kind": "import-statement",
4517
- "external": true
4518
- }
4519
- ],
4520
- "format": "esm"
4521
- },
4522
- "src/Prebuilt/common/utils.js": {
4523
- "bytes": 5391,
4524
- "imports": [
4525
- {
4526
- "path": "src/Prebuilt/common/constants.ts",
4559
+ "path": "../../node_modules/zustand/esm/vanilla.js",
4527
4560
  "kind": "import-statement",
4528
- "original": "./constants"
4561
+ "original": "zustand/vanilla"
4529
4562
  },
4530
4563
  {
4531
- "path": "<define:process.env>",
4532
- "kind": "import-statement",
4533
- "external": true
4534
- }
4535
- ],
4536
- "format": "esm"
4537
- },
4538
- "src/Prebuilt/services/FeatureFlags.jsx": {
4539
- "bytes": 1342,
4540
- "imports": [
4541
- {
4542
- "path": "react",
4564
+ "path": "eventemitter2",
4543
4565
  "kind": "import-statement",
4544
4566
  "external": true
4545
4567
  },
4546
4568
  {
4547
- "path": "@100mslive/react-sdk",
4569
+ "path": "uuid",
4548
4570
  "kind": "import-statement",
4549
4571
  "external": true
4550
4572
  },
4551
4573
  {
4552
- "path": "<define:process.env>",
4574
+ "path": "eventemitter2",
4553
4575
  "kind": "import-statement",
4554
4576
  "external": true
4555
4577
  },
4556
4578
  {
4557
- "path": "<runtime>",
4558
- "kind": "import-statement",
4559
- "external": true
4560
- }
4561
- ],
4562
- "format": "esm"
4563
- },
4564
- "src/Prebuilt/plugins/whiteboard/useWhiteboardMetadata.js": {
4565
- "bytes": 1771,
4566
- "imports": [
4567
- {
4568
- "path": "react",
4579
+ "path": "../../node_modules/sdp-transform/lib/index.js",
4569
4580
  "kind": "import-statement",
4570
- "external": true
4581
+ "original": "sdp-transform"
4571
4582
  },
4572
4583
  {
4573
- "path": "@100mslive/react-sdk",
4584
+ "path": "eventemitter2",
4574
4585
  "kind": "import-statement",
4575
4586
  "external": true
4576
4587
  },
4577
4588
  {
4578
- "path": "src/Prebuilt/components/hooks/useMetadata.jsx",
4589
+ "path": "uuid",
4579
4590
  "kind": "import-statement",
4580
- "original": "../../components/hooks/useMetadata"
4591
+ "external": true
4581
4592
  },
4582
4593
  {
4583
- "path": "src/Prebuilt/common/utils.js",
4594
+ "path": "uuid",
4584
4595
  "kind": "import-statement",
4585
- "original": "../../common/utils"
4596
+ "external": true
4586
4597
  },
4587
4598
  {
4588
- "path": "src/Prebuilt/services/FeatureFlags.jsx",
4599
+ "path": "../../node_modules/reselect/es/index.js",
4589
4600
  "kind": "import-statement",
4590
- "original": "../../services/FeatureFlags"
4601
+ "original": "reselect"
4591
4602
  },
4592
4603
  {
4593
4604
  "path": "<define:process.env>",
4594
4605
  "kind": "import-statement",
4595
4606
  "external": true
4596
- },
4597
- {
4598
- "path": "<runtime>",
4599
- "kind": "import-statement",
4600
- "external": true
4601
4607
  }
4602
4608
  ],
4603
4609
  "format": "esm"
@@ -4650,7 +4656,7 @@
4650
4656
  "format": "esm"
4651
4657
  },
4652
4658
  "src/Prebuilt/components/Header/AdditionalRoomState.jsx": {
4653
- "bytes": 8115,
4659
+ "bytes": 6857,
4654
4660
  "imports": [
4655
4661
  {
4656
4662
  "path": "react",
@@ -4672,11 +4678,6 @@
4672
4678
  "kind": "import-statement",
4673
4679
  "original": "../../../"
4674
4680
  },
4675
- {
4676
- "path": "src/Prebuilt/plugins/whiteboard/useWhiteboardMetadata.js",
4677
- "kind": "import-statement",
4678
- "original": "../../plugins/whiteboard/useWhiteboardMetadata"
4679
- },
4680
4681
  {
4681
4682
  "path": "src/Prebuilt/components/AppData/useUISettings.js",
4682
4683
  "kind": "import-statement",
@@ -4705,8 +4706,24 @@
4705
4706
  ],
4706
4707
  "format": "esm"
4707
4708
  },
4709
+ "src/Prebuilt/common/utils.js": {
4710
+ "bytes": 5391,
4711
+ "imports": [
4712
+ {
4713
+ "path": "src/Prebuilt/common/constants.ts",
4714
+ "kind": "import-statement",
4715
+ "original": "./constants"
4716
+ },
4717
+ {
4718
+ "path": "<define:process.env>",
4719
+ "kind": "import-statement",
4720
+ "external": true
4721
+ }
4722
+ ],
4723
+ "format": "esm"
4724
+ },
4708
4725
  "src/Prebuilt/components/Header/StreamActions.tsx": {
4709
- "bytes": 9374,
4726
+ "bytes": 9380,
4710
4727
  "imports": [
4711
4728
  {
4712
4729
  "path": "react",
@@ -4719,9 +4736,9 @@
4719
4736
  "external": true
4720
4737
  },
4721
4738
  {
4722
- "path": "../hms-video-web/dist/index.js",
4739
+ "path": "../hms-video-store/dist/index.js",
4723
4740
  "kind": "import-statement",
4724
- "original": "@100mslive/hms-video"
4741
+ "original": "@100mslive/hms-video-store"
4725
4742
  },
4726
4743
  {
4727
4744
  "path": "@100mslive/react-sdk",
@@ -4924,143 +4941,8 @@
4924
4941
  ],
4925
4942
  "format": "esm"
4926
4943
  },
4927
- "../../node_modules/reselect/es/index.js": {
4928
- "bytes": 3975,
4929
- "imports": [
4930
- {
4931
- "path": "<define:process.env>",
4932
- "kind": "import-statement",
4933
- "external": true
4934
- }
4935
- ],
4936
- "format": "esm"
4937
- },
4938
- "../../node_modules/immer/dist/immer.esm.mjs": {
4939
- "bytes": 18424,
4940
- "imports": [
4941
- {
4942
- "path": "<define:process.env>",
4943
- "kind": "import-statement",
4944
- "external": true
4945
- }
4946
- ],
4947
- "format": "esm"
4948
- },
4949
- "../../node_modules/zustand/esm/shallow.js": {
4950
- "bytes": 535,
4951
- "imports": [
4952
- {
4953
- "path": "<define:process.env>",
4954
- "kind": "import-statement",
4955
- "external": true
4956
- }
4957
- ],
4958
- "format": "esm"
4959
- },
4960
- "../../node_modules/zustand/esm/vanilla.js": {
4961
- "bytes": 1346,
4962
- "imports": [
4963
- {
4964
- "path": "<define:process.env>",
4965
- "kind": "import-statement",
4966
- "external": true
4967
- }
4968
- ],
4969
- "format": "esm"
4970
- },
4971
- "../hms-video-store/dist/index.js": {
4972
- "bytes": 68804,
4973
- "imports": [
4974
- {
4975
- "path": "../../node_modules/reselect/es/index.js",
4976
- "kind": "import-statement",
4977
- "original": "reselect"
4978
- },
4979
- {
4980
- "path": "../../node_modules/reselect/es/index.js",
4981
- "kind": "import-statement",
4982
- "original": "reselect"
4983
- },
4984
- {
4985
- "path": "../../node_modules/reselect/es/index.js",
4986
- "kind": "import-statement",
4987
- "original": "reselect"
4988
- },
4989
- {
4990
- "path": "../hms-video-web/dist/index.js",
4991
- "kind": "import-statement",
4992
- "original": "@100mslive/hms-video"
4993
- },
4994
- {
4995
- "path": "../../node_modules/reselect/es/index.js",
4996
- "kind": "import-statement",
4997
- "original": "reselect"
4998
- },
4999
- {
5000
- "path": "../../node_modules/reselect/es/index.js",
5001
- "kind": "import-statement",
5002
- "original": "reselect"
5003
- },
5004
- {
5005
- "path": "../hms-video-web/dist/index.js",
5006
- "kind": "import-statement",
5007
- "original": "@100mslive/hms-video"
5008
- },
5009
- {
5010
- "path": "../../node_modules/immer/dist/immer.esm.mjs",
5011
- "kind": "import-statement",
5012
- "original": "immer"
5013
- },
5014
- {
5015
- "path": "../../node_modules/zustand/esm/shallow.js",
5016
- "kind": "import-statement",
5017
- "original": "zustand/shallow"
5018
- },
5019
- {
5020
- "path": "../../node_modules/zustand/esm/vanilla.js",
5021
- "kind": "import-statement",
5022
- "original": "zustand/vanilla"
5023
- },
5024
- {
5025
- "path": "../hms-video-web/dist/index.js",
5026
- "kind": "import-statement",
5027
- "original": "@100mslive/hms-video"
5028
- },
5029
- {
5030
- "path": "eventemitter2",
5031
- "kind": "import-statement",
5032
- "external": true
5033
- },
5034
- {
5035
- "path": "../hms-video-web/dist/index.js",
5036
- "kind": "import-statement",
5037
- "original": "@100mslive/hms-video"
5038
- },
5039
- {
5040
- "path": "../hms-video-web/dist/index.js",
5041
- "kind": "import-statement",
5042
- "original": "@100mslive/hms-video"
5043
- },
5044
- {
5045
- "path": "../hms-video-web/dist/index.js",
5046
- "kind": "import-statement",
5047
- "original": "@100mslive/hms-video"
5048
- },
5049
- {
5050
- "path": "../../node_modules/reselect/es/index.js",
5051
- "kind": "import-statement",
5052
- "original": "reselect"
5053
- },
5054
- {
5055
- "path": "<define:process.env>",
5056
- "kind": "import-statement",
5057
- "external": true
5058
- }
5059
- ],
5060
- "format": "esm"
5061
- },
5062
4944
  "src/Prebuilt/components/hooks/useUnreadPollQuizPresent.tsx": {
5063
- "bytes": 723,
4945
+ "bytes": 669,
5064
4946
  "imports": [
5065
4947
  {
5066
4948
  "path": "react",
@@ -6307,8 +6189,8 @@
6307
6189
  ],
6308
6190
  "format": "esm"
6309
6191
  },
6310
- "src/Prebuilt/components/Polls/common/StatusIndicator.jsx": {
6311
- "bytes": 597,
6192
+ "src/Prebuilt/components/Polls/common/StatusIndicator.tsx": {
6193
+ "bytes": 605,
6312
6194
  "imports": [
6313
6195
  {
6314
6196
  "path": "react",
@@ -6329,7 +6211,7 @@
6329
6211
  "format": "esm"
6330
6212
  },
6331
6213
  "src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx": {
6332
- "bytes": 7467,
6214
+ "bytes": 7706,
6333
6215
  "imports": [
6334
6216
  {
6335
6217
  "path": "react",
@@ -6372,7 +6254,7 @@
6372
6254
  "original": "../../../common/utils"
6373
6255
  },
6374
6256
  {
6375
- "path": "src/Prebuilt/components/Polls/common/StatusIndicator.jsx",
6257
+ "path": "src/Prebuilt/components/Polls/common/StatusIndicator.tsx",
6376
6258
  "kind": "import-statement",
6377
6259
  "original": "../common/StatusIndicator"
6378
6260
  },
@@ -6394,8 +6276,8 @@
6394
6276
  ],
6395
6277
  "format": "esm"
6396
6278
  },
6397
- "src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.jsx": {
6398
- "bytes": 2197,
6279
+ "src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.tsx": {
6280
+ "bytes": 2314,
6399
6281
  "imports": [
6400
6282
  {
6401
6283
  "path": "react",
@@ -6420,12 +6302,33 @@
6420
6302
  {
6421
6303
  "path": "src/Modal/index.ts",
6422
6304
  "kind": "import-statement",
6423
- "original": "../../../../Modal"
6305
+ "original": "../../../../Modal"
6306
+ },
6307
+ {
6308
+ "path": "src/Text/index.tsx",
6309
+ "kind": "import-statement",
6310
+ "original": "../../../../Text"
6311
+ },
6312
+ {
6313
+ "path": "<define:process.env>",
6314
+ "kind": "import-statement",
6315
+ "external": true
6316
+ }
6317
+ ],
6318
+ "format": "esm"
6319
+ },
6320
+ "src/Prebuilt/components/Polls/common/Line.tsx": {
6321
+ "bytes": 189,
6322
+ "imports": [
6323
+ {
6324
+ "path": "react",
6325
+ "kind": "import-statement",
6326
+ "external": true
6424
6327
  },
6425
6328
  {
6426
- "path": "src/Text/index.tsx",
6329
+ "path": "src/Layout/index.tsx",
6427
6330
  "kind": "import-statement",
6428
- "original": "../../../../Text"
6331
+ "original": "../../../../Layout"
6429
6332
  },
6430
6333
  {
6431
6334
  "path": "<define:process.env>",
@@ -6435,14 +6338,19 @@
6435
6338
  ],
6436
6339
  "format": "esm"
6437
6340
  },
6438
- "src/Prebuilt/components/Polls/common/OptionInputWithDelete.jsx": {
6439
- "bytes": 784,
6341
+ "src/Prebuilt/components/Polls/common/OptionInputWithDelete.tsx": {
6342
+ "bytes": 1030,
6440
6343
  "imports": [
6441
6344
  {
6442
6345
  "path": "react",
6443
6346
  "kind": "import-statement",
6444
6347
  "external": true
6445
6348
  },
6349
+ {
6350
+ "path": "@100mslive/react-sdk",
6351
+ "kind": "import-statement",
6352
+ "external": true
6353
+ },
6446
6354
  {
6447
6355
  "path": "@100mslive/react-icons",
6448
6356
  "kind": "import-statement",
@@ -6466,8 +6374,8 @@
6466
6374
  ],
6467
6375
  "format": "esm"
6468
6376
  },
6469
- "src/Prebuilt/components/Polls/common/VoteCount.jsx": {
6470
- "bytes": 397,
6377
+ "src/Prebuilt/components/Polls/common/VoteCount.tsx": {
6378
+ "bytes": 407,
6471
6379
  "imports": [
6472
6380
  {
6473
6381
  "path": "react",
@@ -6487,14 +6395,19 @@
6487
6395
  ],
6488
6396
  "format": "esm"
6489
6397
  },
6490
- "src/Prebuilt/components/Polls/common/VoteProgress.jsx": {
6491
- "bytes": 565,
6398
+ "src/Prebuilt/components/Polls/common/VoteProgress.tsx": {
6399
+ "bytes": 693,
6492
6400
  "imports": [
6493
6401
  {
6494
6402
  "path": "react",
6495
6403
  "kind": "import-statement",
6496
6404
  "external": true
6497
6405
  },
6406
+ {
6407
+ "path": "@100mslive/react-sdk",
6408
+ "kind": "import-statement",
6409
+ "external": true
6410
+ },
6498
6411
  {
6499
6412
  "path": "src/index.ts",
6500
6413
  "kind": "import-statement",
@@ -6527,17 +6440,17 @@
6527
6440
  "original": "../../../../"
6528
6441
  },
6529
6442
  {
6530
- "path": "src/Prebuilt/components/Polls/common/OptionInputWithDelete.jsx",
6443
+ "path": "src/Prebuilt/components/Polls/common/OptionInputWithDelete.tsx",
6531
6444
  "kind": "import-statement",
6532
6445
  "original": "./OptionInputWithDelete"
6533
6446
  },
6534
6447
  {
6535
- "path": "src/Prebuilt/components/Polls/common/VoteCount.jsx",
6448
+ "path": "src/Prebuilt/components/Polls/common/VoteCount.tsx",
6536
6449
  "kind": "import-statement",
6537
6450
  "original": "./VoteCount"
6538
6451
  },
6539
6452
  {
6540
- "path": "src/Prebuilt/components/Polls/common/VoteProgress.jsx",
6453
+ "path": "src/Prebuilt/components/Polls/common/VoteProgress.tsx",
6541
6454
  "kind": "import-statement",
6542
6455
  "original": "./VoteProgress"
6543
6456
  },
@@ -6550,7 +6463,7 @@
6550
6463
  "format": "esm"
6551
6464
  },
6552
6465
  "src/Prebuilt/components/Polls/common/SingleChoiceOptions.jsx": {
6553
- "bytes": 4926,
6466
+ "bytes": 4925,
6554
6467
  "imports": [
6555
6468
  {
6556
6469
  "path": "react",
@@ -6565,20 +6478,20 @@
6565
6478
  {
6566
6479
  "path": "src/index.ts",
6567
6480
  "kind": "import-statement",
6568
- "original": "../../../../"
6481
+ "original": "../../../.."
6569
6482
  },
6570
6483
  {
6571
- "path": "src/Prebuilt/components/Polls/common/OptionInputWithDelete.jsx",
6484
+ "path": "src/Prebuilt/components/Polls/common/OptionInputWithDelete.tsx",
6572
6485
  "kind": "import-statement",
6573
6486
  "original": "./OptionInputWithDelete"
6574
6487
  },
6575
6488
  {
6576
- "path": "src/Prebuilt/components/Polls/common/VoteCount.jsx",
6489
+ "path": "src/Prebuilt/components/Polls/common/VoteCount.tsx",
6577
6490
  "kind": "import-statement",
6578
6491
  "original": "./VoteCount"
6579
6492
  },
6580
6493
  {
6581
- "path": "src/Prebuilt/components/Polls/common/VoteProgress.jsx",
6494
+ "path": "src/Prebuilt/components/Polls/common/VoteProgress.tsx",
6582
6495
  "kind": "import-statement",
6583
6496
  "original": "./VoteProgress"
6584
6497
  },
@@ -6590,14 +6503,19 @@
6590
6503
  ],
6591
6504
  "format": "esm"
6592
6505
  },
6593
- "src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.jsx": {
6594
- "bytes": 9049,
6506
+ "src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.tsx": {
6507
+ "bytes": 9971,
6595
6508
  "imports": [
6596
6509
  {
6597
6510
  "path": "react",
6598
6511
  "kind": "import-statement",
6599
6512
  "external": true
6600
6513
  },
6514
+ {
6515
+ "path": "@100mslive/react-sdk",
6516
+ "kind": "import-statement",
6517
+ "external": true
6518
+ },
6601
6519
  {
6602
6520
  "path": "@100mslive/react-icons",
6603
6521
  "kind": "import-statement",
@@ -6606,7 +6524,7 @@
6606
6524
  {
6607
6525
  "path": "src/index.ts",
6608
6526
  "kind": "import-statement",
6609
- "original": "../../../../"
6527
+ "original": "../../../.."
6610
6528
  },
6611
6529
  {
6612
6530
  "path": "src/Prebuilt/primitives/DropdownTrigger.jsx",
@@ -6614,7 +6532,7 @@
6614
6532
  "original": "../../../primitives/DropdownTrigger"
6615
6533
  },
6616
6534
  {
6617
- "path": "src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.jsx",
6535
+ "path": "src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.tsx",
6618
6536
  "kind": "import-statement",
6619
6537
  "original": "./DeleteQuestionModal"
6620
6538
  },
@@ -6628,6 +6546,11 @@
6628
6546
  "kind": "import-statement",
6629
6547
  "original": "../../../common/utils"
6630
6548
  },
6549
+ {
6550
+ "path": "src/Prebuilt/components/Polls/common/Line.tsx",
6551
+ "kind": "import-statement",
6552
+ "original": "../common/Line"
6553
+ },
6631
6554
  {
6632
6555
  "path": "src/Prebuilt/components/Polls/common/MultipleChoiceOptions.jsx",
6633
6556
  "kind": "import-statement",
@@ -6656,14 +6579,19 @@
6656
6579
  ],
6657
6580
  "format": "esm"
6658
6581
  },
6659
- "src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.jsx": {
6660
- "bytes": 2098,
6582
+ "src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.tsx": {
6583
+ "bytes": 2317,
6661
6584
  "imports": [
6662
6585
  {
6663
6586
  "path": "react",
6664
6587
  "kind": "import-statement",
6665
6588
  "external": true
6666
6589
  },
6590
+ {
6591
+ "path": "@100mslive/react-sdk",
6592
+ "kind": "import-statement",
6593
+ "external": true
6594
+ },
6667
6595
  {
6668
6596
  "path": "@100mslive/react-icons",
6669
6597
  "kind": "import-statement",
@@ -6675,7 +6603,12 @@
6675
6603
  "original": "../../../../"
6676
6604
  },
6677
6605
  {
6678
- "path": "src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.jsx",
6606
+ "path": "src/Prebuilt/IconButton.jsx",
6607
+ "kind": "import-statement",
6608
+ "original": "../../../IconButton"
6609
+ },
6610
+ {
6611
+ "path": "src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.tsx",
6679
6612
  "kind": "import-statement",
6680
6613
  "original": "./DeleteQuestionModal"
6681
6614
  },
@@ -6726,12 +6659,12 @@
6726
6659
  "original": "../../Streaming/Common"
6727
6660
  },
6728
6661
  {
6729
- "path": "src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.jsx",
6662
+ "path": "src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.tsx",
6730
6663
  "kind": "import-statement",
6731
6664
  "original": "./QuestionForm"
6732
6665
  },
6733
6666
  {
6734
- "path": "src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.jsx",
6667
+ "path": "src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.tsx",
6735
6668
  "kind": "import-statement",
6736
6669
  "original": "./SavedQuestion"
6737
6670
  },
@@ -6821,7 +6754,7 @@
6821
6754
  "format": "esm"
6822
6755
  },
6823
6756
  "src/Prebuilt/components/Polls/Voting/LeaderboardSummary.tsx": {
6824
- "bytes": 5839,
6757
+ "bytes": 5842,
6825
6758
  "imports": [
6826
6759
  {
6827
6760
  "path": "react",
@@ -6874,7 +6807,7 @@
6874
6807
  "original": "../../AppData/useUISettings"
6875
6808
  },
6876
6809
  {
6877
- "path": "src/Prebuilt/components/Polls/common/StatusIndicator.jsx",
6810
+ "path": "src/Prebuilt/components/Polls/common/StatusIndicator.tsx",
6878
6811
  "kind": "import-statement",
6879
6812
  "original": "../common/StatusIndicator"
6880
6813
  },
@@ -6938,7 +6871,7 @@
6938
6871
  "format": "esm"
6939
6872
  },
6940
6873
  "src/Prebuilt/components/Polls/Voting/QuestionCard.jsx": {
6941
- "bytes": 8835,
6874
+ "bytes": 8553,
6942
6875
  "imports": [
6943
6876
  {
6944
6877
  "path": "react",
@@ -6993,14 +6926,19 @@
6993
6926
  ],
6994
6927
  "format": "esm"
6995
6928
  },
6996
- "src/Prebuilt/components/Polls/Voting/StandardVoting.jsx": {
6997
- "bytes": 1274,
6929
+ "src/Prebuilt/components/Polls/Voting/StandardVoting.tsx": {
6930
+ "bytes": 1253,
6998
6931
  "imports": [
6999
6932
  {
7000
6933
  "path": "react",
7001
6934
  "kind": "import-statement",
7002
6935
  "external": true
7003
6936
  },
6937
+ {
6938
+ "path": "@100mslive/react-sdk",
6939
+ "kind": "import-statement",
6940
+ "external": true
6941
+ },
7004
6942
  {
7005
6943
  "path": "src/Prebuilt/components/Polls/Voting/PeerParticipationSummary.tsx",
7006
6944
  "kind": "import-statement",
@@ -7019,14 +6957,19 @@
7019
6957
  ],
7020
6958
  "format": "esm"
7021
6959
  },
7022
- "src/Prebuilt/components/Polls/Voting/TimedVoting.jsx": {
7023
- "bytes": 1110,
6960
+ "src/Prebuilt/components/Polls/Voting/TimedVoting.tsx": {
6961
+ "bytes": 1090,
7024
6962
  "imports": [
7025
6963
  {
7026
6964
  "path": "react",
7027
6965
  "kind": "import-statement",
7028
6966
  "external": true
7029
6967
  },
6968
+ {
6969
+ "path": "@100mslive/react-sdk",
6970
+ "kind": "import-statement",
6971
+ "external": true
6972
+ },
7030
6973
  {
7031
6974
  "path": "src/Prebuilt/components/Polls/Voting/QuestionCard.jsx",
7032
6975
  "kind": "import-statement",
@@ -7040,8 +6983,8 @@
7040
6983
  ],
7041
6984
  "format": "esm"
7042
6985
  },
7043
- "src/Prebuilt/components/Polls/Voting/Voting.jsx": {
7044
- "bytes": 3188,
6986
+ "src/Prebuilt/components/Polls/Voting/Voting.tsx": {
6987
+ "bytes": 3244,
7045
6988
  "imports": [
7046
6989
  {
7047
6990
  "path": "react",
@@ -7061,7 +7004,7 @@
7061
7004
  {
7062
7005
  "path": "src/index.ts",
7063
7006
  "kind": "import-statement",
7064
- "original": "../../../../"
7007
+ "original": "../../../.."
7065
7008
  },
7066
7009
  {
7067
7010
  "path": "src/Prebuilt/components/Streaming/Common.jsx",
@@ -7069,12 +7012,12 @@
7069
7012
  "original": "../../Streaming/Common"
7070
7013
  },
7071
7014
  {
7072
- "path": "src/Prebuilt/components/Polls/Voting/StandardVoting.jsx",
7015
+ "path": "src/Prebuilt/components/Polls/Voting/StandardVoting.tsx",
7073
7016
  "kind": "import-statement",
7074
7017
  "original": "./StandardVoting"
7075
7018
  },
7076
7019
  {
7077
- "path": "src/Prebuilt/components/Polls/Voting/TimedVoting.jsx",
7020
+ "path": "src/Prebuilt/components/Polls/Voting/TimedVoting.tsx",
7078
7021
  "kind": "import-statement",
7079
7022
  "original": "./TimedVoting"
7080
7023
  },
@@ -7084,7 +7027,7 @@
7084
7027
  "original": "../../AppData/useUISettings"
7085
7028
  },
7086
7029
  {
7087
- "path": "src/Prebuilt/components/Polls/common/StatusIndicator.jsx",
7030
+ "path": "src/Prebuilt/components/Polls/common/StatusIndicator.tsx",
7088
7031
  "kind": "import-statement",
7089
7032
  "original": "../common/StatusIndicator"
7090
7033
  },
@@ -7125,7 +7068,7 @@
7125
7068
  "original": "./Voting/LeaderboardSummary"
7126
7069
  },
7127
7070
  {
7128
- "path": "src/Prebuilt/components/Polls/Voting/Voting.jsx",
7071
+ "path": "src/Prebuilt/components/Polls/Voting/Voting.tsx",
7129
7072
  "kind": "import-statement",
7130
7073
  "original": "./Voting/Voting"
7131
7074
  },
@@ -7214,8 +7157,8 @@
7214
7157
  ],
7215
7158
  "format": "esm"
7216
7159
  },
7217
- "src/Prebuilt/components/hooks/useSetPinnedMessages.ts": {
7218
- "bytes": 2850,
7160
+ "src/Prebuilt/components/hooks/usePinnedMessages.ts": {
7161
+ "bytes": 2854,
7219
7162
  "imports": [
7220
7163
  {
7221
7164
  "path": "react",
@@ -7251,7 +7194,7 @@
7251
7194
  "format": "esm"
7252
7195
  },
7253
7196
  "src/Prebuilt/components/Chat/ChatActions.tsx": {
7254
- "bytes": 9609,
7197
+ "bytes": 10168,
7255
7198
  "imports": [
7256
7199
  {
7257
7200
  "path": "react",
@@ -7319,9 +7262,9 @@
7319
7262
  "original": "../hooks/useChatBlacklist"
7320
7263
  },
7321
7264
  {
7322
- "path": "src/Prebuilt/components/hooks/useSetPinnedMessages.ts",
7265
+ "path": "src/Prebuilt/components/hooks/usePinnedMessages.ts",
7323
7266
  "kind": "import-statement",
7324
- "original": "../hooks/useSetPinnedMessages"
7267
+ "original": "../hooks/usePinnedMessages"
7325
7268
  },
7326
7269
  {
7327
7270
  "path": "src/Prebuilt/common/constants.ts",
@@ -7396,8 +7339,39 @@
7396
7339
  ],
7397
7340
  "format": "esm"
7398
7341
  },
7342
+ "src/Prebuilt/components/hooks/usePinnedBy.tsx": {
7343
+ "bytes": 712,
7344
+ "imports": [
7345
+ {
7346
+ "path": "react",
7347
+ "kind": "import-statement",
7348
+ "external": true
7349
+ },
7350
+ {
7351
+ "path": "@100mslive/react-sdk",
7352
+ "kind": "import-statement",
7353
+ "external": true
7354
+ },
7355
+ {
7356
+ "path": "./usePinnedMessages",
7357
+ "kind": "import-statement",
7358
+ "external": true
7359
+ },
7360
+ {
7361
+ "path": "src/Prebuilt/common/constants.ts",
7362
+ "kind": "import-statement",
7363
+ "original": "../../common/constants"
7364
+ },
7365
+ {
7366
+ "path": "<define:process.env>",
7367
+ "kind": "import-statement",
7368
+ "external": true
7369
+ }
7370
+ ],
7371
+ "format": "esm"
7372
+ },
7399
7373
  "src/Prebuilt/components/Chat/ChatBody.tsx": {
7400
- "bytes": 13390,
7374
+ "bytes": 14641,
7401
7375
  "imports": [
7402
7376
  {
7403
7377
  "path": "react",
@@ -7424,6 +7398,11 @@
7424
7398
  "kind": "import-statement",
7425
7399
  "external": true
7426
7400
  },
7401
+ {
7402
+ "path": "@100mslive/react-icons",
7403
+ "kind": "import-statement",
7404
+ "external": true
7405
+ },
7427
7406
  {
7428
7407
  "path": "src/Layout/index.tsx",
7429
7408
  "kind": "import-statement",
@@ -7464,6 +7443,11 @@
7464
7443
  "kind": "import-statement",
7465
7444
  "original": "../AppData/useUISettings"
7466
7445
  },
7446
+ {
7447
+ "path": "src/Prebuilt/components/hooks/usePinnedBy.tsx",
7448
+ "kind": "import-statement",
7449
+ "original": "../hooks/usePinnedBy"
7450
+ },
7467
7451
  {
7468
7452
  "path": "src/Prebuilt/common/constants.ts",
7469
7453
  "kind": "import-statement",
@@ -7667,7 +7651,7 @@
7667
7651
  "format": "esm"
7668
7652
  },
7669
7653
  "src/Prebuilt/components/Chat/ChatFooter.tsx": {
7670
- "bytes": 9161,
7654
+ "bytes": 9193,
7671
7655
  "imports": [
7672
7656
  {
7673
7657
  "path": "react",
@@ -7871,7 +7855,7 @@
7871
7855
  "format": "esm"
7872
7856
  },
7873
7857
  "src/Prebuilt/components/Chat/PinnedMessage.tsx": {
7874
- "bytes": 5076,
7858
+ "bytes": 5067,
7875
7859
  "imports": [
7876
7860
  {
7877
7861
  "path": "react",
@@ -7934,9 +7918,9 @@
7934
7918
  "original": "../../provider/roomLayoutProvider/hooks/useRoomLayoutScreen"
7935
7919
  },
7936
7920
  {
7937
- "path": "src/Prebuilt/components/hooks/useSetPinnedMessages.ts",
7921
+ "path": "src/Prebuilt/components/hooks/usePinnedMessages.ts",
7938
7922
  "kind": "import-statement",
7939
- "original": "../hooks/useSetPinnedMessages"
7923
+ "original": "../hooks/usePinnedMessages"
7940
7924
  },
7941
7925
  {
7942
7926
  "path": "src/Prebuilt/common/constants.ts",
@@ -8301,8 +8285,19 @@
8301
8285
  ],
8302
8286
  "format": "esm"
8303
8287
  },
8288
+ "src/Prebuilt/components/TileMenu/utils.ts": {
8289
+ "bytes": 214,
8290
+ "imports": [
8291
+ {
8292
+ "path": "<define:process.env>",
8293
+ "kind": "import-statement",
8294
+ "external": true
8295
+ }
8296
+ ],
8297
+ "format": "esm"
8298
+ },
8304
8299
  "src/Prebuilt/components/TileMenu/TileMenuContent.tsx": {
8305
- "bytes": 10834,
8300
+ "bytes": 11390,
8306
8301
  "imports": [
8307
8302
  {
8308
8303
  "path": "react",
@@ -8369,6 +8364,11 @@
8369
8364
  "kind": "import-statement",
8370
8365
  "original": "../hooks/useDropdownSelection"
8371
8366
  },
8367
+ {
8368
+ "path": "src/Prebuilt/components/TileMenu/utils.ts",
8369
+ "kind": "import-statement",
8370
+ "original": "./utils"
8371
+ },
8372
8372
  {
8373
8373
  "path": "src/Prebuilt/common/constants.ts",
8374
8374
  "kind": "import-statement",
@@ -8388,7 +8388,7 @@
8388
8388
  "format": "esm"
8389
8389
  },
8390
8390
  "src/Prebuilt/components/TileMenu/TileMenu.jsx": {
8391
- "bytes": 4567,
8391
+ "bytes": 4631,
8392
8392
  "imports": [
8393
8393
  {
8394
8394
  "path": "react",
@@ -8450,6 +8450,11 @@
8450
8450
  "kind": "import-statement",
8451
8451
  "original": "../hooks/useDropdownList"
8452
8452
  },
8453
+ {
8454
+ "path": "src/Prebuilt/components/TileMenu/utils.ts",
8455
+ "kind": "import-statement",
8456
+ "original": "./utils"
8457
+ },
8453
8458
  {
8454
8459
  "path": "src/Prebuilt/components/TileMenu/TileMenuContent.tsx",
8455
8460
  "kind": "import-statement",
@@ -8480,7 +8485,7 @@
8480
8485
  "format": "esm"
8481
8486
  },
8482
8487
  "src/Prebuilt/components/VideoTile.jsx": {
8483
- "bytes": 6791,
8488
+ "bytes": 6701,
8484
8489
  "imports": [
8485
8490
  {
8486
8491
  "path": "react",
@@ -8527,11 +8532,6 @@
8527
8532
  "kind": "import-statement",
8528
8533
  "original": "../../Stats"
8529
8534
  },
8530
- {
8531
- "path": "src/Theme/index.tsx",
8532
- "kind": "import-statement",
8533
- "original": "../../Theme"
8534
- },
8535
8535
  {
8536
8536
  "path": "src/Video/index.tsx",
8537
8537
  "kind": "import-statement",
@@ -9883,7 +9883,7 @@
9883
9883
  "format": "esm"
9884
9884
  },
9885
9885
  "src/Prebuilt/components/VideoLayouts/GridLayout.tsx": {
9886
- "bytes": 4465,
9886
+ "bytes": 4683,
9887
9887
  "imports": [
9888
9888
  {
9889
9889
  "path": "react",
@@ -10613,7 +10613,7 @@
10613
10613
  "format": "esm"
10614
10614
  },
10615
10615
  "src/Prebuilt/layouts/VideoStreamingSection.tsx": {
10616
- "bytes": 3913,
10616
+ "bytes": 3841,
10617
10617
  "imports": [
10618
10618
  {
10619
10619
  "path": "react",
@@ -10999,6 +10999,32 @@
10999
10999
  ],
11000
11000
  "format": "esm"
11001
11001
  },
11002
+ "src/Prebuilt/services/FeatureFlags.jsx": {
11003
+ "bytes": 1342,
11004
+ "imports": [
11005
+ {
11006
+ "path": "react",
11007
+ "kind": "import-statement",
11008
+ "external": true
11009
+ },
11010
+ {
11011
+ "path": "@100mslive/react-sdk",
11012
+ "kind": "import-statement",
11013
+ "external": true
11014
+ },
11015
+ {
11016
+ "path": "<define:process.env>",
11017
+ "kind": "import-statement",
11018
+ "external": true
11019
+ },
11020
+ {
11021
+ "path": "<runtime>",
11022
+ "kind": "import-statement",
11023
+ "external": true
11024
+ }
11025
+ ],
11026
+ "format": "esm"
11027
+ },
11002
11028
  "src/Prebuilt/components/init/Init.jsx": {
11003
11029
  "bytes": 1114,
11004
11030
  "imports": [
@@ -12064,7 +12090,7 @@
12064
12090
  "format": "esm"
12065
12091
  },
12066
12092
  "src/Prebuilt/App.tsx": {
12067
- "bytes": 10349,
12093
+ "bytes": 10446,
12068
12094
  "imports": [
12069
12095
  {
12070
12096
  "path": "react",
@@ -12141,6 +12167,11 @@
12141
12167
  "kind": "import-statement",
12142
12168
  "original": "./components/Toast/ToastContainer"
12143
12169
  },
12170
+ {
12171
+ "path": "src/Prebuilt/components/VirtualBackground/VBHandler.tsx",
12172
+ "kind": "import-statement",
12173
+ "original": "./components/VirtualBackground/VBHandler"
12174
+ },
12144
12175
  {
12145
12176
  "path": "src/Prebuilt/provider/roomLayoutProvider/index.tsx",
12146
12177
  "kind": "import-statement",
@@ -12256,8 +12287,40 @@
12256
12287
  ],
12257
12288
  "format": "esm"
12258
12289
  },
12290
+ "src/TextArea/TextArea.tsx": {
12291
+ "bytes": 676,
12292
+ "imports": [
12293
+ {
12294
+ "path": "src/Theme/index.tsx",
12295
+ "kind": "import-statement",
12296
+ "original": "../Theme"
12297
+ },
12298
+ {
12299
+ "path": "<define:process.env>",
12300
+ "kind": "import-statement",
12301
+ "external": true
12302
+ }
12303
+ ],
12304
+ "format": "esm"
12305
+ },
12306
+ "src/TextArea/index.tsx": {
12307
+ "bytes": 39,
12308
+ "imports": [
12309
+ {
12310
+ "path": "src/TextArea/TextArea.tsx",
12311
+ "kind": "import-statement",
12312
+ "original": "./TextArea"
12313
+ },
12314
+ {
12315
+ "path": "<define:process.env>",
12316
+ "kind": "import-statement",
12317
+ "external": true
12318
+ }
12319
+ ],
12320
+ "format": "esm"
12321
+ },
12259
12322
  "src/index.ts": {
12260
- "bytes": 1124,
12323
+ "bytes": 1152,
12261
12324
  "imports": [
12262
12325
  {
12263
12326
  "path": "src/Button/index.tsx",
@@ -12454,6 +12517,11 @@
12454
12517
  "kind": "import-statement",
12455
12518
  "original": "./context/DialogContext"
12456
12519
  },
12520
+ {
12521
+ "path": "src/TextArea/index.tsx",
12522
+ "kind": "import-statement",
12523
+ "original": "./TextArea"
12524
+ },
12457
12525
  {
12458
12526
  "path": "<define:process.env>",
12459
12527
  "kind": "import-statement",
@@ -12473,7 +12541,7 @@
12473
12541
  "dist/index.js": {
12474
12542
  "imports": [
12475
12543
  {
12476
- "path": "dist/chunk-QENB2CO7.js",
12544
+ "path": "dist/chunk-GVA4I77Z.js",
12477
12545
  "kind": "import-statement"
12478
12546
  }
12479
12547
  ],
@@ -12517,6 +12585,7 @@
12517
12585
  "Switch",
12518
12586
  "Tabs",
12519
12587
  "Text",
12588
+ "TextArea",
12520
12589
  "ThemeContext",
12521
12590
  "ThemeTypes",
12522
12591
  "Toast",
@@ -12543,18 +12612,18 @@
12543
12612
  ],
12544
12613
  "entryPoint": "src/index.ts",
12545
12614
  "inputs": {},
12546
- "bytes": 1798
12615
+ "bytes": 1822
12547
12616
  },
12548
- "dist/HLSView-PJLISGG4.js.map": {
12617
+ "dist/HLSView-ULB4DC6B.js.map": {
12549
12618
  "imports": [],
12550
12619
  "exports": [],
12551
12620
  "inputs": {},
12552
12621
  "bytes": 58021
12553
12622
  },
12554
- "dist/HLSView-PJLISGG4.js": {
12623
+ "dist/HLSView-ULB4DC6B.js": {
12555
12624
  "imports": [
12556
12625
  {
12557
- "path": "dist/chunk-QENB2CO7.js",
12626
+ "path": "dist/chunk-GVA4I77Z.js",
12558
12627
  "kind": "import-statement"
12559
12628
  },
12560
12629
  {
@@ -12718,13 +12787,13 @@
12718
12787
  },
12719
12788
  "bytes": 36449
12720
12789
  },
12721
- "dist/chunk-QENB2CO7.js.map": {
12790
+ "dist/chunk-GVA4I77Z.js.map": {
12722
12791
  "imports": [],
12723
12792
  "exports": [],
12724
12793
  "inputs": {},
12725
- "bytes": 3035562
12794
+ "bytes": 3002612
12726
12795
  },
12727
- "dist/chunk-QENB2CO7.js": {
12796
+ "dist/chunk-GVA4I77Z.js": {
12728
12797
  "imports": [
12729
12798
  {
12730
12799
  "path": "react",
@@ -13601,16 +13670,6 @@
13601
13670
  "kind": "import-statement",
13602
13671
  "external": true
13603
13672
  },
13604
- {
13605
- "path": "uuid",
13606
- "kind": "import-statement",
13607
- "external": true
13608
- },
13609
- {
13610
- "path": "eventemitter2",
13611
- "kind": "import-statement",
13612
- "external": true
13613
- },
13614
13673
  {
13615
13674
  "path": "eventemitter2",
13616
13675
  "kind": "import-statement",
@@ -13627,22 +13686,22 @@
13627
13686
  "external": true
13628
13687
  },
13629
13688
  {
13630
- "path": "uuid",
13689
+ "path": "eventemitter2",
13631
13690
  "kind": "import-statement",
13632
13691
  "external": true
13633
13692
  },
13634
13693
  {
13635
- "path": "@100mslive/react-sdk",
13694
+ "path": "eventemitter2",
13636
13695
  "kind": "import-statement",
13637
13696
  "external": true
13638
13697
  },
13639
13698
  {
13640
- "path": "@100mslive/react-icons",
13699
+ "path": "uuid",
13641
13700
  "kind": "import-statement",
13642
13701
  "external": true
13643
13702
  },
13644
13703
  {
13645
- "path": "react",
13704
+ "path": "uuid",
13646
13705
  "kind": "import-statement",
13647
13706
  "external": true
13648
13707
  },
@@ -13667,12 +13726,7 @@
13667
13726
  "external": true
13668
13727
  },
13669
13728
  {
13670
- "path": "react",
13671
- "kind": "import-statement",
13672
- "external": true
13673
- },
13674
- {
13675
- "path": "@100mslive/react-sdk",
13729
+ "path": "@100mslive/react-icons",
13676
13730
  "kind": "import-statement",
13677
13731
  "external": true
13678
13732
  },
@@ -13731,11 +13785,6 @@
13731
13785
  "kind": "import-statement",
13732
13786
  "external": true
13733
13787
  },
13734
- {
13735
- "path": "eventemitter2",
13736
- "kind": "import-statement",
13737
- "external": true
13738
- },
13739
13788
  {
13740
13789
  "path": "@100mslive/react-sdk",
13741
13790
  "kind": "import-statement",
@@ -14101,6 +14150,11 @@
14101
14150
  "kind": "import-statement",
14102
14151
  "external": true
14103
14152
  },
14153
+ {
14154
+ "path": "react",
14155
+ "kind": "import-statement",
14156
+ "external": true
14157
+ },
14104
14158
  {
14105
14159
  "path": "@100mslive/react-icons",
14106
14160
  "kind": "import-statement",
@@ -14291,6 +14345,11 @@
14291
14345
  "kind": "import-statement",
14292
14346
  "external": true
14293
14347
  },
14348
+ {
14349
+ "path": "@100mslive/react-icons",
14350
+ "kind": "import-statement",
14351
+ "external": true
14352
+ },
14294
14353
  {
14295
14354
  "path": "react",
14296
14355
  "kind": "import-statement",
@@ -14346,6 +14405,16 @@
14346
14405
  "kind": "import-statement",
14347
14406
  "external": true
14348
14407
  },
14408
+ {
14409
+ "path": "@100mslive/react-sdk",
14410
+ "kind": "import-statement",
14411
+ "external": true
14412
+ },
14413
+ {
14414
+ "path": "react",
14415
+ "kind": "import-statement",
14416
+ "external": true
14417
+ },
14349
14418
  {
14350
14419
  "path": "react-use",
14351
14420
  "kind": "import-statement",
@@ -14927,7 +14996,7 @@
14927
14996
  "external": true
14928
14997
  },
14929
14998
  {
14930
- "path": "dist/HLSView-PJLISGG4.js",
14999
+ "path": "dist/HLSView-ULB4DC6B.js",
14931
15000
  "kind": "dynamic-import"
14932
15001
  },
14933
15002
  {
@@ -15000,6 +15069,16 @@
15000
15069
  "kind": "import-statement",
15001
15070
  "external": true
15002
15071
  },
15072
+ {
15073
+ "path": "@100mslive/react-sdk",
15074
+ "kind": "import-statement",
15075
+ "external": true
15076
+ },
15077
+ {
15078
+ "path": "react",
15079
+ "kind": "import-statement",
15080
+ "external": true
15081
+ },
15003
15082
  {
15004
15083
  "path": "@100mslive/react-icons",
15005
15084
  "kind": "import-statement",
@@ -15306,6 +15385,7 @@
15306
15385
  "Switch",
15307
15386
  "Tabs",
15308
15387
  "Text",
15388
+ "TextArea",
15309
15389
  "ThemeContext",
15310
15390
  "ThemeTypes",
15311
15391
  "Toast",
@@ -15338,25 +15418,25 @@
15338
15418
  ],
15339
15419
  "inputs": {
15340
15420
  "<define:process.env>": {
15341
- "bytesInOutput": 18657
15421
+ "bytesInOutput": 18293
15342
15422
  },
15343
15423
  "../../node_modules/lodash/lodash.js": {
15344
- "bytesInOutput": 224380
15424
+ "bytesInOutput": 224275
15345
15425
  },
15346
15426
  "../../node_modules/ua-parser-js/src/ua-parser.js": {
15347
- "bytesInOutput": 42460
15427
+ "bytesInOutput": 42479
15348
15428
  },
15349
15429
  "../../node_modules/sdp/sdp.js": {
15350
- "bytesInOutput": 22288
15430
+ "bytesInOutput": 22279
15351
15431
  },
15352
15432
  "../../node_modules/sdp-transform/lib/grammar.js": {
15353
15433
  "bytesInOutput": 16120
15354
15434
  },
15355
15435
  "../../node_modules/sdp-transform/lib/parser.js": {
15356
- "bytesInOutput": 3480
15436
+ "bytesInOutput": 3489
15357
15437
  },
15358
15438
  "../../node_modules/sdp-transform/lib/writer.js": {
15359
- "bytesInOutput": 3070
15439
+ "bytesInOutput": 3068
15360
15440
  },
15361
15441
  "../../node_modules/sdp-transform/lib/index.js": {
15362
15442
  "bytesInOutput": 615
@@ -15368,7 +15448,7 @@
15368
15448
  "bytesInOutput": 27
15369
15449
  },
15370
15450
  "src/Button/Button.tsx": {
15371
- "bytesInOutput": 4331
15451
+ "bytesInOutput": 4339
15372
15452
  },
15373
15453
  "src/Layout/index.tsx": {
15374
15454
  "bytesInOutput": 27
@@ -15473,7 +15553,7 @@
15473
15553
  "bytesInOutput": 330
15474
15554
  },
15475
15555
  "src/Input/Input.tsx": {
15476
- "bytesInOutput": 2614
15556
+ "bytesInOutput": 2600
15477
15557
  },
15478
15558
  "src/VideoTile/index.tsx": {
15479
15559
  "bytesInOutput": 27
@@ -15518,7 +15598,7 @@
15518
15598
  "bytesInOutput": 755
15519
15599
  },
15520
15600
  "src/AudioLevel/AudioLevel.tsx": {
15521
- "bytesInOutput": 2196
15601
+ "bytesInOutput": 2195
15522
15602
  },
15523
15603
  "src/AudioLevel/audio-level.png": {
15524
15604
  "bytesInOutput": 880
@@ -15587,7 +15667,7 @@
15587
15667
  "bytesInOutput": 887
15588
15668
  },
15589
15669
  "src/Prebuilt/App.tsx": {
15590
- "bytesInOutput": 7598
15670
+ "bytesInOutput": 7625
15591
15671
  },
15592
15672
  "src/Prebuilt/components/AppData/AppData.tsx": {
15593
15673
  "bytesInOutput": 4365
@@ -15677,7 +15757,7 @@
15677
15757
  "bytesInOutput": 2336
15678
15758
  },
15679
15759
  "src/Prebuilt/components/PIP/PIPManager.js": {
15680
- "bytesInOutput": 9162
15760
+ "bytesInOutput": 9164
15681
15761
  },
15682
15762
  "src/Prebuilt/components/PIP/pipUtils.js": {
15683
15763
  "bytesInOutput": 4289
@@ -15734,7 +15814,7 @@
15734
15814
  "bytesInOutput": 2940
15735
15815
  },
15736
15816
  "src/Prebuilt/components/StatsForNerds.jsx": {
15737
- "bytesInOutput": 9588
15817
+ "bytesInOutput": 9585
15738
15818
  },
15739
15819
  "src/Prebuilt/components/MoreSettings/BulkRoleChangeModal.jsx": {
15740
15820
  "bytesInOutput": 5008
@@ -15760,11 +15840,14 @@
15760
15840
  "src/Prebuilt/components/Header/StreamActions.tsx": {
15761
15841
  "bytesInOutput": 10019
15762
15842
  },
15763
- "../hms-video-web/dist/index.js": {
15764
- "bytesInOutput": 32760
15843
+ "../hms-video-store/dist/index.js": {
15844
+ "bytesInOutput": 47974
15845
+ },
15846
+ "../../node_modules/reselect/es/index.js": {
15847
+ "bytesInOutput": 2537
15765
15848
  },
15766
15849
  "../../node_modules/webrtc-adapter/src/js/adapter_core.js": {
15767
- "bytesInOutput": 154
15850
+ "bytesInOutput": 118
15768
15851
  },
15769
15852
  "../../node_modules/webrtc-adapter/src/js/adapter_factory.js": {
15770
15853
  "bytesInOutput": 4335
@@ -15773,10 +15856,10 @@
15773
15856
  "bytesInOutput": 6305
15774
15857
  },
15775
15858
  "../../node_modules/webrtc-adapter/src/js/chrome/chrome_shim.js": {
15776
- "bytesInOutput": 22680
15859
+ "bytesInOutput": 22676
15777
15860
  },
15778
15861
  "../../node_modules/webrtc-adapter/src/js/chrome/getusermedia.js": {
15779
- "bytesInOutput": 6087
15862
+ "bytesInOutput": 6083
15780
15863
  },
15781
15864
  "../../node_modules/webrtc-adapter/src/js/chrome/getdisplaymedia.js": {
15782
15865
  "bytesInOutput": 1256
@@ -15785,7 +15868,7 @@
15785
15868
  "bytesInOutput": 9143
15786
15869
  },
15787
15870
  "../../node_modules/webrtc-adapter/src/js/firefox/getusermedia.js": {
15788
- "bytesInOutput": 2136
15871
+ "bytesInOutput": 2122
15789
15872
  },
15790
15873
  "../../node_modules/webrtc-adapter/src/js/firefox/getdisplaymedia.js": {
15791
15874
  "bytesInOutput": 842
@@ -15794,19 +15877,10 @@
15794
15877
  "bytesInOutput": 11866
15795
15878
  },
15796
15879
  "../../node_modules/webrtc-adapter/src/js/common_shim.js": {
15797
- "bytesInOutput": 12444
15880
+ "bytesInOutput": 12446
15798
15881
  },
15799
15882
  "src/Prebuilt/components/Header/AdditionalRoomState.jsx": {
15800
- "bytesInOutput": 7897
15801
- },
15802
- "src/Prebuilt/plugins/whiteboard/useWhiteboardMetadata.js": {
15803
- "bytesInOutput": 1760
15804
- },
15805
- "src/Prebuilt/common/utils.js": {
15806
- "bytesInOutput": 3730
15807
- },
15808
- "src/Prebuilt/services/FeatureFlags.jsx": {
15809
- "bytesInOutput": 1427
15883
+ "bytesInOutput": 6823
15810
15884
  },
15811
15885
  "src/Prebuilt/components/hooks/usePlaylistMusic.js": {
15812
15886
  "bytesInOutput": 1071
@@ -15814,6 +15888,9 @@
15814
15888
  "src/Prebuilt/components/hooks/useScreenshareAudio.js": {
15815
15889
  "bytesInOutput": 907
15816
15890
  },
15891
+ "src/Prebuilt/common/utils.js": {
15892
+ "bytesInOutput": 3731
15893
+ },
15817
15894
  "src/Prebuilt/components/MoreSettings/ActionTile.jsx": {
15818
15895
  "bytesInOutput": 1390
15819
15896
  },
@@ -15824,13 +15901,7 @@
15824
15901
  "bytesInOutput": 3219
15825
15902
  },
15826
15903
  "src/Prebuilt/components/hooks/useUnreadPollQuizPresent.tsx": {
15827
- "bytesInOutput": 712
15828
- },
15829
- "../hms-video-store/dist/index.js": {
15830
- "bytesInOutput": 19867
15831
- },
15832
- "../../node_modules/reselect/es/index.js": {
15833
- "bytesInOutput": 2537
15904
+ "bytesInOutput": 658
15834
15905
  },
15835
15906
  "src/Prebuilt/components/RaiseHand.jsx": {
15836
15907
  "bytesInOutput": 589
@@ -15893,7 +15964,7 @@
15893
15964
  "bytesInOutput": 1073
15894
15965
  },
15895
15966
  "src/Prebuilt/components/Footer/WhiteboardToggle.tsx": {
15896
- "bytesInOutput": 899
15967
+ "bytesInOutput": 879
15897
15968
  },
15898
15969
  "src/Prebuilt/components/Notifications/HLSFailureModal.tsx": {
15899
15970
  "bytesInOutput": 2414
@@ -15902,52 +15973,55 @@
15902
15973
  "bytesInOutput": 2968
15903
15974
  },
15904
15975
  "src/Prebuilt/components/Preview/PreviewJoin.tsx": {
15905
- "bytesInOutput": 9825
15976
+ "bytesInOutput": 9824
15906
15977
  },
15907
15978
  "src/Prebuilt/layouts/SidePane.tsx": {
15908
15979
  "bytesInOutput": 4443
15909
15980
  },
15910
15981
  "src/Prebuilt/components/Polls/Polls.tsx": {
15911
- "bytesInOutput": 730
15982
+ "bytesInOutput": 735
15912
15983
  },
15913
15984
  "src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx": {
15914
- "bytesInOutput": 7665
15985
+ "bytesInOutput": 7927
15915
15986
  },
15916
15987
  "src/Prebuilt/components/Streaming/Common.jsx": {
15917
15988
  "bytesInOutput": 2247
15918
15989
  },
15919
- "src/Prebuilt/components/Polls/common/StatusIndicator.jsx": {
15990
+ "src/Prebuilt/components/Polls/common/StatusIndicator.tsx": {
15920
15991
  "bytesInOutput": 624
15921
15992
  },
15922
15993
  "src/Prebuilt/components/Polls/CreateQuestions/CreateQuestions.jsx": {
15923
15994
  "bytesInOutput": 4875
15924
15995
  },
15925
- "src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.jsx": {
15926
- "bytesInOutput": 8301
15996
+ "src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.tsx": {
15997
+ "bytesInOutput": 8578
15998
+ },
15999
+ "src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.tsx": {
16000
+ "bytesInOutput": 2083
15927
16001
  },
15928
- "src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.jsx": {
15929
- "bytesInOutput": 2077
16002
+ "src/Prebuilt/components/Polls/common/Line.tsx": {
16003
+ "bytesInOutput": 204
15930
16004
  },
15931
16005
  "src/Prebuilt/components/Polls/common/MultipleChoiceOptions.jsx": {
15932
16006
  "bytesInOutput": 3637
15933
16007
  },
15934
- "src/Prebuilt/components/Polls/common/OptionInputWithDelete.jsx": {
15935
- "bytesInOutput": 882
16008
+ "src/Prebuilt/components/Polls/common/OptionInputWithDelete.tsx": {
16009
+ "bytesInOutput": 889
15936
16010
  },
15937
- "src/Prebuilt/components/Polls/common/VoteCount.jsx": {
16011
+ "src/Prebuilt/components/Polls/common/VoteCount.tsx": {
15938
16012
  "bytesInOutput": 361
15939
16013
  },
15940
- "src/Prebuilt/components/Polls/common/VoteProgress.jsx": {
15941
- "bytesInOutput": 587
16014
+ "src/Prebuilt/components/Polls/common/VoteProgress.tsx": {
16015
+ "bytesInOutput": 594
15942
16016
  },
15943
16017
  "src/Prebuilt/components/Polls/common/SingleChoiceOptions.jsx": {
15944
16018
  "bytesInOutput": 4306
15945
16019
  },
15946
- "src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.jsx": {
15947
- "bytesInOutput": 2193
16020
+ "src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.tsx": {
16021
+ "bytesInOutput": 2116
15948
16022
  },
15949
16023
  "src/Prebuilt/components/Polls/Voting/LeaderboardSummary.tsx": {
15950
- "bytesInOutput": 6213
16024
+ "bytesInOutput": 6216
15951
16025
  },
15952
16026
  "src/Prebuilt/components/Polls/Voting/LeaderboardEntry.tsx": {
15953
16027
  "bytesInOutput": 1683
@@ -15955,32 +16029,32 @@
15955
16029
  "src/Prebuilt/components/Polls/Voting/StatisticBox.tsx": {
15956
16030
  "bytesInOutput": 512
15957
16031
  },
15958
- "src/Prebuilt/components/Polls/Voting/Voting.jsx": {
16032
+ "src/Prebuilt/components/Polls/Voting/Voting.tsx": {
15959
16033
  "bytesInOutput": 3216
15960
16034
  },
15961
- "src/Prebuilt/components/Polls/Voting/StandardVoting.jsx": {
16035
+ "src/Prebuilt/components/Polls/Voting/StandardVoting.tsx": {
15962
16036
  "bytesInOutput": 1254
15963
16037
  },
15964
16038
  "src/Prebuilt/components/Polls/Voting/PeerParticipationSummary.tsx": {
15965
16039
  "bytesInOutput": 1013
15966
16040
  },
15967
16041
  "src/Prebuilt/components/Polls/Voting/QuestionCard.jsx": {
15968
- "bytesInOutput": 7826
16042
+ "bytesInOutput": 8548
15969
16043
  },
15970
- "src/Prebuilt/components/Polls/Voting/TimedVoting.jsx": {
16044
+ "src/Prebuilt/components/Polls/Voting/TimedVoting.tsx": {
15971
16045
  "bytesInOutput": 1101
15972
16046
  },
15973
16047
  "src/Prebuilt/components/SidePaneTabs.tsx": {
15974
16048
  "bytesInOutput": 7277
15975
16049
  },
15976
16050
  "src/Prebuilt/components/Chat/Chat.tsx": {
15977
- "bytesInOutput": 3442
16051
+ "bytesInOutput": 3444
15978
16052
  },
15979
16053
  "src/Prebuilt/components/Chat/ChatBody.tsx": {
15980
- "bytesInOutput": 13096
16054
+ "bytesInOutput": 14276
15981
16055
  },
15982
16056
  "src/Prebuilt/components/Chat/ChatActions.tsx": {
15983
- "bytesInOutput": 9254
16057
+ "bytesInOutput": 9777
15984
16058
  },
15985
16059
  "src/Prebuilt/components/Chat/MwebChatOption.tsx": {
15986
16060
  "bytesInOutput": 417
@@ -15988,8 +16062,8 @@
15988
16062
  "src/Prebuilt/components/hooks/useChatBlacklist.ts": {
15989
16063
  "bytesInOutput": 1210
15990
16064
  },
15991
- "src/Prebuilt/components/hooks/useSetPinnedMessages.ts": {
15992
- "bytesInOutput": 2761
16065
+ "src/Prebuilt/components/hooks/usePinnedMessages.ts": {
16066
+ "bytesInOutput": 2757
15993
16067
  },
15994
16068
  "src/Prebuilt/components/Chat/EmptyChat.tsx": {
15995
16069
  "bytesInOutput": 1642
@@ -15997,8 +16071,11 @@
15997
16071
  "src/Prebuilt/images/empty-chat.svg": {
15998
16072
  "bytesInOutput": 2261
15999
16073
  },
16074
+ "src/Prebuilt/components/hooks/usePinnedBy.tsx": {
16075
+ "bytesInOutput": 704
16076
+ },
16000
16077
  "src/Prebuilt/components/Chat/ChatFooter.tsx": {
16001
- "bytesInOutput": 8638
16078
+ "bytesInOutput": 8666
16002
16079
  },
16003
16080
  "src/Prebuilt/components/Chat/ChatSelectorContainer.tsx": {
16004
16081
  "bytesInOutput": 5318
@@ -16016,13 +16093,13 @@
16016
16093
  "bytesInOutput": 2916
16017
16094
  },
16018
16095
  "src/Prebuilt/components/Chat/PinnedMessage.tsx": {
16019
- "bytesInOutput": 4983
16096
+ "bytesInOutput": 4980
16020
16097
  },
16021
16098
  "src/Prebuilt/components/Chat/ArrowNavigation.tsx": {
16022
16099
  "bytesInOutput": 1021
16023
16100
  },
16024
16101
  "src/Prebuilt/components/Chat/StickIndicator.tsx": {
16025
- "bytesInOutput": 543
16102
+ "bytesInOutput": 542
16026
16103
  },
16027
16104
  "src/Prebuilt/components/Footer/PaginatedParticipants.tsx": {
16028
16105
  "bytesInOutput": 4205
@@ -16031,22 +16108,25 @@
16031
16108
  "bytesInOutput": 2469
16032
16109
  },
16033
16110
  "src/Prebuilt/components/VideoTile.jsx": {
16034
- "bytesInOutput": 6794
16111
+ "bytesInOutput": 6742
16035
16112
  },
16036
16113
  "src/Prebuilt/components/Connection/TileConnection.tsx": {
16037
16114
  "bytesInOutput": 1506
16038
16115
  },
16039
16116
  "src/Prebuilt/components/TileMenu/TileMenu.jsx": {
16040
- "bytesInOutput": 4453
16117
+ "bytesInOutput": 4473
16041
16118
  },
16042
16119
  "src/Prebuilt/components/TileMenu/TileMenuContent.tsx": {
16043
- "bytesInOutput": 10798
16120
+ "bytesInOutput": 11288
16121
+ },
16122
+ "src/Prebuilt/components/TileMenu/utils.ts": {
16123
+ "bytesInOutput": 160
16044
16124
  },
16045
16125
  "src/Prebuilt/components/peerTileUtils.jsx": {
16046
16126
  "bytesInOutput": 1050
16047
16127
  },
16048
16128
  "src/Prebuilt/components/VirtualBackground/VBPicker.tsx": {
16049
- "bytesInOutput": 5521
16129
+ "bytesInOutput": 5518
16050
16130
  },
16051
16131
  "src/Prebuilt/components/VirtualBackground/VBCollection.tsx": {
16052
16132
  "bytesInOutput": 1157
@@ -16079,7 +16159,7 @@
16079
16159
  "bytesInOutput": 3196
16080
16160
  },
16081
16161
  "src/Prebuilt/components/VideoLayouts/GridLayout.tsx": {
16082
- "bytesInOutput": 3621
16162
+ "bytesInOutput": 3871
16083
16163
  },
16084
16164
  "src/Prebuilt/components/VideoLayouts/EqualProminence.tsx": {
16085
16165
  "bytesInOutput": 2021
@@ -16091,13 +16171,13 @@
16091
16171
  "bytesInOutput": 451
16092
16172
  },
16093
16173
  "src/Prebuilt/components/Pagination.tsx": {
16094
- "bytesInOutput": 1699
16174
+ "bytesInOutput": 1698
16095
16175
  },
16096
16176
  "src/Prebuilt/components/VideoLayouts/Grid.tsx": {
16097
16177
  "bytesInOutput": 1204
16098
16178
  },
16099
16179
  "src/Prebuilt/components/hooks/useTileLayout.tsx": {
16100
- "bytesInOutput": 3839
16180
+ "bytesInOutput": 3837
16101
16181
  },
16102
16182
  "src/Prebuilt/components/VideoLayouts/RoleProminence.tsx": {
16103
16183
  "bytesInOutput": 1737
@@ -16121,7 +16201,7 @@
16121
16201
  "bytesInOutput": 1226
16122
16202
  },
16123
16203
  "src/Prebuilt/common/PeersSorter.ts": {
16124
- "bytesInOutput": 3099
16204
+ "bytesInOutput": 3098
16125
16205
  },
16126
16206
  "src/Prebuilt/layouts/EmbedView.jsx": {
16127
16207
  "bytesInOutput": 2785
@@ -16136,7 +16216,7 @@
16136
16216
  "bytesInOutput": 1967
16137
16217
  },
16138
16218
  "src/Prebuilt/components/hooks/useCloseScreenshareWhiteboard.tsx": {
16139
- "bytesInOutput": 1001
16219
+ "bytesInOutput": 997
16140
16220
  },
16141
16221
  "src/Prebuilt/components/Header/index.tsx": {
16142
16222
  "bytesInOutput": 27
@@ -16156,6 +16236,9 @@
16156
16236
  "src/Prebuilt/components/init/Init.jsx": {
16157
16237
  "bytesInOutput": 666
16158
16238
  },
16239
+ "src/Prebuilt/services/FeatureFlags.jsx": {
16240
+ "bytesInOutput": 1427
16241
+ },
16159
16242
  "src/Prebuilt/components/Input/KeyboardInputManager.js": {
16160
16243
  "bytesInOutput": 4441
16161
16244
  },
@@ -16181,7 +16264,7 @@
16181
16264
  "bytesInOutput": 1768
16182
16265
  },
16183
16266
  "src/Prebuilt/components/Toast/ToastConfig.jsx": {
16184
- "bytesInOutput": 6475
16267
+ "bytesInOutput": 6474
16185
16268
  },
16186
16269
  "src/Prebuilt/components/Notifications/AutoplayBlockedModal.tsx": {
16187
16270
  "bytesInOutput": 1053
@@ -16239,9 +16322,15 @@
16239
16322
  },
16240
16323
  "src/Progress/index.tsx": {
16241
16324
  "bytesInOutput": 418
16325
+ },
16326
+ "src/TextArea/index.tsx": {
16327
+ "bytesInOutput": 27
16328
+ },
16329
+ "src/TextArea/TextArea.tsx": {
16330
+ "bytesInOutput": 651
16242
16331
  }
16243
16332
  },
16244
- "bytes": 1223698
16333
+ "bytes": 1221125
16245
16334
  }
16246
16335
  }
16247
16336
  }