@100mslive/roomkit-react 0.1.20-alpha.0 → 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 (82) hide show
  1. package/README.md +27 -2
  2. package/dist/{HLSView-BWR4T6PI.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-SYBH2G3R.js → chunk-GVA4I77Z.js} +2802 -2740
  24. package/dist/chunk-GVA4I77Z.js.map +7 -0
  25. package/dist/index.cjs.js +3035 -2967
  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 +476 -394
  30. package/dist/meta.esbuild.json +486 -402
  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/components/Chat/ChatActions.tsx +25 -8
  35. package/src/Prebuilt/components/Chat/ChatBody.tsx +64 -21
  36. package/src/Prebuilt/components/Chat/ChatFooter.tsx +1 -0
  37. package/src/Prebuilt/components/Chat/PinnedMessage.tsx +2 -2
  38. package/src/Prebuilt/components/Header/AdditionalRoomState.jsx +1 -38
  39. package/src/Prebuilt/components/Header/StreamActions.tsx +1 -1
  40. package/src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx +11 -1
  41. package/src/Prebuilt/components/Polls/CreateQuestions/{DeleteQuestionModal.jsx → DeleteQuestionModal.tsx} +9 -1
  42. package/src/Prebuilt/components/Polls/CreateQuestions/{QuestionForm.jsx → QuestionForm.tsx} +71 -30
  43. package/src/Prebuilt/components/Polls/CreateQuestions/{SavedQuestion.jsx → SavedQuestion.tsx} +24 -15
  44. package/src/Prebuilt/components/Polls/Voting/LeaderboardSummary.tsx +1 -1
  45. package/src/Prebuilt/components/Polls/Voting/QuestionCard.jsx +61 -80
  46. package/src/Prebuilt/components/Polls/Voting/{StandardVoting.jsx → StandardVoting.tsx} +3 -7
  47. package/src/Prebuilt/components/Polls/Voting/{TimedVoting.jsx → TimedVoting.tsx} +4 -7
  48. package/src/Prebuilt/components/Polls/Voting/{Voting.jsx → Voting.tsx} +4 -3
  49. package/src/Prebuilt/components/Polls/common/Line.tsx +4 -0
  50. package/src/Prebuilt/components/Polls/common/{OptionInputWithDelete.jsx → OptionInputWithDelete.tsx} +14 -2
  51. package/src/Prebuilt/components/Polls/common/SingleChoiceOptions.jsx +1 -1
  52. package/src/Prebuilt/components/Polls/common/{StatusIndicator.jsx → StatusIndicator.tsx} +1 -2
  53. package/src/Prebuilt/components/Polls/common/{VoteCount.jsx → VoteCount.tsx} +1 -2
  54. package/src/Prebuilt/components/Polls/common/{VoteProgress.jsx → VoteProgress.tsx} +3 -2
  55. package/src/Prebuilt/components/Polls/common/{VoterList.jsx → VoterList.tsx} +1 -1
  56. package/src/Prebuilt/components/TileMenu/TileMenu.jsx +3 -1
  57. package/src/Prebuilt/components/TileMenu/TileMenuContent.tsx +15 -3
  58. package/src/Prebuilt/components/TileMenu/utils.ts +7 -0
  59. package/src/Prebuilt/components/VideoLayouts/GridLayout.tsx +7 -3
  60. package/src/Prebuilt/components/VideoTile.jsx +2 -4
  61. package/src/Prebuilt/components/hooks/usePinnedBy.tsx +22 -0
  62. package/src/Prebuilt/components/hooks/{useSetPinnedMessages.ts → usePinnedMessages.ts} +2 -2
  63. package/src/Prebuilt/components/hooks/useUnreadPollQuizPresent.tsx +1 -4
  64. package/src/Prebuilt/layouts/VideoStreamingSection.tsx +0 -1
  65. package/src/TextArea/TextArea.tsx +30 -0
  66. package/src/TextArea/index.tsx +1 -0
  67. package/src/index.ts +1 -0
  68. package/src/store/StorybookSDK.ts +3 -1
  69. package/dist/Prebuilt/plugins/whiteboard/ToggleWhiteboard.d.ts +0 -5
  70. package/dist/chunk-SYBH2G3R.js.map +0 -7
  71. package/src/Prebuilt/components/Polls/common/Votes.jsx +0 -72
  72. package/src/Prebuilt/layouts/WhiteboardView.jsx +0 -40
  73. package/src/Prebuilt/plugins/whiteboard/PusherCommunicationProvider.js +0 -110
  74. package/src/Prebuilt/plugins/whiteboard/README.md +0 -29
  75. package/src/Prebuilt/plugins/whiteboard/ToggleWhiteboard.tsx +0 -37
  76. package/src/Prebuilt/plugins/whiteboard/Whiteboard.css +0 -12
  77. package/src/Prebuilt/plugins/whiteboard/Whiteboard.jsx +0 -11
  78. package/src/Prebuilt/plugins/whiteboard/WhiteboardEvents.js +0 -8
  79. package/src/Prebuilt/plugins/whiteboard/index.js +0 -3
  80. package/src/Prebuilt/plugins/whiteboard/useMultiplayerState.js +0 -212
  81. package/src/Prebuilt/plugins/whiteboard/useWhiteboardMetadata.js +0 -47
  82. /package/dist/{HLSView-BWR4T6PI.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": 263156,
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",
@@ -6410,23 +6292,44 @@
6410
6292
  {
6411
6293
  "path": "src/Button/index.tsx",
6412
6294
  "kind": "import-statement",
6413
- "original": "../../../../Button"
6295
+ "original": "../../../../Button"
6296
+ },
6297
+ {
6298
+ "path": "src/Layout/index.tsx",
6299
+ "kind": "import-statement",
6300
+ "original": "../../../../Layout"
6301
+ },
6302
+ {
6303
+ "path": "src/Modal/index.ts",
6304
+ "kind": "import-statement",
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
6414
6327
  },
6415
6328
  {
6416
6329
  "path": "src/Layout/index.tsx",
6417
6330
  "kind": "import-statement",
6418
6331
  "original": "../../../../Layout"
6419
6332
  },
6420
- {
6421
- "path": "src/Modal/index.ts",
6422
- "kind": "import-statement",
6423
- "original": "../../../../Modal"
6424
- },
6425
- {
6426
- "path": "src/Text/index.tsx",
6427
- "kind": "import-statement",
6428
- "original": "../../../../Text"
6429
- },
6430
6333
  {
6431
6334
  "path": "<define:process.env>",
6432
6335
  "kind": "import-statement",
@@ -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": [
@@ -12261,8 +12287,40 @@
12261
12287
  ],
12262
12288
  "format": "esm"
12263
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
+ },
12264
12322
  "src/index.ts": {
12265
- "bytes": 1124,
12323
+ "bytes": 1152,
12266
12324
  "imports": [
12267
12325
  {
12268
12326
  "path": "src/Button/index.tsx",
@@ -12459,6 +12517,11 @@
12459
12517
  "kind": "import-statement",
12460
12518
  "original": "./context/DialogContext"
12461
12519
  },
12520
+ {
12521
+ "path": "src/TextArea/index.tsx",
12522
+ "kind": "import-statement",
12523
+ "original": "./TextArea"
12524
+ },
12462
12525
  {
12463
12526
  "path": "<define:process.env>",
12464
12527
  "kind": "import-statement",
@@ -12478,7 +12541,7 @@
12478
12541
  "dist/index.js": {
12479
12542
  "imports": [
12480
12543
  {
12481
- "path": "dist/chunk-SYBH2G3R.js",
12544
+ "path": "dist/chunk-GVA4I77Z.js",
12482
12545
  "kind": "import-statement"
12483
12546
  }
12484
12547
  ],
@@ -12522,6 +12585,7 @@
12522
12585
  "Switch",
12523
12586
  "Tabs",
12524
12587
  "Text",
12588
+ "TextArea",
12525
12589
  "ThemeContext",
12526
12590
  "ThemeTypes",
12527
12591
  "Toast",
@@ -12548,18 +12612,18 @@
12548
12612
  ],
12549
12613
  "entryPoint": "src/index.ts",
12550
12614
  "inputs": {},
12551
- "bytes": 1798
12615
+ "bytes": 1822
12552
12616
  },
12553
- "dist/HLSView-BWR4T6PI.js.map": {
12617
+ "dist/HLSView-ULB4DC6B.js.map": {
12554
12618
  "imports": [],
12555
12619
  "exports": [],
12556
12620
  "inputs": {},
12557
12621
  "bytes": 58021
12558
12622
  },
12559
- "dist/HLSView-BWR4T6PI.js": {
12623
+ "dist/HLSView-ULB4DC6B.js": {
12560
12624
  "imports": [
12561
12625
  {
12562
- "path": "dist/chunk-SYBH2G3R.js",
12626
+ "path": "dist/chunk-GVA4I77Z.js",
12563
12627
  "kind": "import-statement"
12564
12628
  },
12565
12629
  {
@@ -12723,13 +12787,13 @@
12723
12787
  },
12724
12788
  "bytes": 36449
12725
12789
  },
12726
- "dist/chunk-SYBH2G3R.js.map": {
12790
+ "dist/chunk-GVA4I77Z.js.map": {
12727
12791
  "imports": [],
12728
12792
  "exports": [],
12729
12793
  "inputs": {},
12730
- "bytes": 3034799
12794
+ "bytes": 3002612
12731
12795
  },
12732
- "dist/chunk-SYBH2G3R.js": {
12796
+ "dist/chunk-GVA4I77Z.js": {
12733
12797
  "imports": [
12734
12798
  {
12735
12799
  "path": "react",
@@ -13606,16 +13670,6 @@
13606
13670
  "kind": "import-statement",
13607
13671
  "external": true
13608
13672
  },
13609
- {
13610
- "path": "uuid",
13611
- "kind": "import-statement",
13612
- "external": true
13613
- },
13614
- {
13615
- "path": "eventemitter2",
13616
- "kind": "import-statement",
13617
- "external": true
13618
- },
13619
13673
  {
13620
13674
  "path": "eventemitter2",
13621
13675
  "kind": "import-statement",
@@ -13632,22 +13686,22 @@
13632
13686
  "external": true
13633
13687
  },
13634
13688
  {
13635
- "path": "uuid",
13689
+ "path": "eventemitter2",
13636
13690
  "kind": "import-statement",
13637
13691
  "external": true
13638
13692
  },
13639
13693
  {
13640
- "path": "@100mslive/react-sdk",
13694
+ "path": "eventemitter2",
13641
13695
  "kind": "import-statement",
13642
13696
  "external": true
13643
13697
  },
13644
13698
  {
13645
- "path": "@100mslive/react-icons",
13699
+ "path": "uuid",
13646
13700
  "kind": "import-statement",
13647
13701
  "external": true
13648
13702
  },
13649
13703
  {
13650
- "path": "react",
13704
+ "path": "uuid",
13651
13705
  "kind": "import-statement",
13652
13706
  "external": true
13653
13707
  },
@@ -13672,12 +13726,7 @@
13672
13726
  "external": true
13673
13727
  },
13674
13728
  {
13675
- "path": "react",
13676
- "kind": "import-statement",
13677
- "external": true
13678
- },
13679
- {
13680
- "path": "@100mslive/react-sdk",
13729
+ "path": "@100mslive/react-icons",
13681
13730
  "kind": "import-statement",
13682
13731
  "external": true
13683
13732
  },
@@ -13736,11 +13785,6 @@
13736
13785
  "kind": "import-statement",
13737
13786
  "external": true
13738
13787
  },
13739
- {
13740
- "path": "eventemitter2",
13741
- "kind": "import-statement",
13742
- "external": true
13743
- },
13744
13788
  {
13745
13789
  "path": "@100mslive/react-sdk",
13746
13790
  "kind": "import-statement",
@@ -14106,6 +14150,11 @@
14106
14150
  "kind": "import-statement",
14107
14151
  "external": true
14108
14152
  },
14153
+ {
14154
+ "path": "react",
14155
+ "kind": "import-statement",
14156
+ "external": true
14157
+ },
14109
14158
  {
14110
14159
  "path": "@100mslive/react-icons",
14111
14160
  "kind": "import-statement",
@@ -14296,6 +14345,11 @@
14296
14345
  "kind": "import-statement",
14297
14346
  "external": true
14298
14347
  },
14348
+ {
14349
+ "path": "@100mslive/react-icons",
14350
+ "kind": "import-statement",
14351
+ "external": true
14352
+ },
14299
14353
  {
14300
14354
  "path": "react",
14301
14355
  "kind": "import-statement",
@@ -14351,6 +14405,16 @@
14351
14405
  "kind": "import-statement",
14352
14406
  "external": true
14353
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
+ },
14354
14418
  {
14355
14419
  "path": "react-use",
14356
14420
  "kind": "import-statement",
@@ -14932,7 +14996,7 @@
14932
14996
  "external": true
14933
14997
  },
14934
14998
  {
14935
- "path": "dist/HLSView-BWR4T6PI.js",
14999
+ "path": "dist/HLSView-ULB4DC6B.js",
14936
15000
  "kind": "dynamic-import"
14937
15001
  },
14938
15002
  {
@@ -15005,6 +15069,16 @@
15005
15069
  "kind": "import-statement",
15006
15070
  "external": true
15007
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
+ },
15008
15082
  {
15009
15083
  "path": "@100mslive/react-icons",
15010
15084
  "kind": "import-statement",
@@ -15311,6 +15385,7 @@
15311
15385
  "Switch",
15312
15386
  "Tabs",
15313
15387
  "Text",
15388
+ "TextArea",
15314
15389
  "ThemeContext",
15315
15390
  "ThemeTypes",
15316
15391
  "Toast",
@@ -15343,25 +15418,25 @@
15343
15418
  ],
15344
15419
  "inputs": {
15345
15420
  "<define:process.env>": {
15346
- "bytesInOutput": 18644
15421
+ "bytesInOutput": 18293
15347
15422
  },
15348
15423
  "../../node_modules/lodash/lodash.js": {
15349
- "bytesInOutput": 224380
15424
+ "bytesInOutput": 224275
15350
15425
  },
15351
15426
  "../../node_modules/ua-parser-js/src/ua-parser.js": {
15352
- "bytesInOutput": 42460
15427
+ "bytesInOutput": 42479
15353
15428
  },
15354
15429
  "../../node_modules/sdp/sdp.js": {
15355
- "bytesInOutput": 22288
15430
+ "bytesInOutput": 22279
15356
15431
  },
15357
15432
  "../../node_modules/sdp-transform/lib/grammar.js": {
15358
15433
  "bytesInOutput": 16120
15359
15434
  },
15360
15435
  "../../node_modules/sdp-transform/lib/parser.js": {
15361
- "bytesInOutput": 3480
15436
+ "bytesInOutput": 3489
15362
15437
  },
15363
15438
  "../../node_modules/sdp-transform/lib/writer.js": {
15364
- "bytesInOutput": 3070
15439
+ "bytesInOutput": 3068
15365
15440
  },
15366
15441
  "../../node_modules/sdp-transform/lib/index.js": {
15367
15442
  "bytesInOutput": 615
@@ -15373,7 +15448,7 @@
15373
15448
  "bytesInOutput": 27
15374
15449
  },
15375
15450
  "src/Button/Button.tsx": {
15376
- "bytesInOutput": 4331
15451
+ "bytesInOutput": 4339
15377
15452
  },
15378
15453
  "src/Layout/index.tsx": {
15379
15454
  "bytesInOutput": 27
@@ -15478,7 +15553,7 @@
15478
15553
  "bytesInOutput": 330
15479
15554
  },
15480
15555
  "src/Input/Input.tsx": {
15481
- "bytesInOutput": 2614
15556
+ "bytesInOutput": 2600
15482
15557
  },
15483
15558
  "src/VideoTile/index.tsx": {
15484
15559
  "bytesInOutput": 27
@@ -15523,7 +15598,7 @@
15523
15598
  "bytesInOutput": 755
15524
15599
  },
15525
15600
  "src/AudioLevel/AudioLevel.tsx": {
15526
- "bytesInOutput": 2196
15601
+ "bytesInOutput": 2195
15527
15602
  },
15528
15603
  "src/AudioLevel/audio-level.png": {
15529
15604
  "bytesInOutput": 880
@@ -15682,7 +15757,7 @@
15682
15757
  "bytesInOutput": 2336
15683
15758
  },
15684
15759
  "src/Prebuilt/components/PIP/PIPManager.js": {
15685
- "bytesInOutput": 9162
15760
+ "bytesInOutput": 9164
15686
15761
  },
15687
15762
  "src/Prebuilt/components/PIP/pipUtils.js": {
15688
15763
  "bytesInOutput": 4289
@@ -15739,7 +15814,7 @@
15739
15814
  "bytesInOutput": 2940
15740
15815
  },
15741
15816
  "src/Prebuilt/components/StatsForNerds.jsx": {
15742
- "bytesInOutput": 9588
15817
+ "bytesInOutput": 9585
15743
15818
  },
15744
15819
  "src/Prebuilt/components/MoreSettings/BulkRoleChangeModal.jsx": {
15745
15820
  "bytesInOutput": 5008
@@ -15765,11 +15840,14 @@
15765
15840
  "src/Prebuilt/components/Header/StreamActions.tsx": {
15766
15841
  "bytesInOutput": 10019
15767
15842
  },
15768
- "../hms-video-web/dist/index.js": {
15769
- "bytesInOutput": 32625
15843
+ "../hms-video-store/dist/index.js": {
15844
+ "bytesInOutput": 47974
15845
+ },
15846
+ "../../node_modules/reselect/es/index.js": {
15847
+ "bytesInOutput": 2537
15770
15848
  },
15771
15849
  "../../node_modules/webrtc-adapter/src/js/adapter_core.js": {
15772
- "bytesInOutput": 154
15850
+ "bytesInOutput": 118
15773
15851
  },
15774
15852
  "../../node_modules/webrtc-adapter/src/js/adapter_factory.js": {
15775
15853
  "bytesInOutput": 4335
@@ -15778,10 +15856,10 @@
15778
15856
  "bytesInOutput": 6305
15779
15857
  },
15780
15858
  "../../node_modules/webrtc-adapter/src/js/chrome/chrome_shim.js": {
15781
- "bytesInOutput": 22680
15859
+ "bytesInOutput": 22676
15782
15860
  },
15783
15861
  "../../node_modules/webrtc-adapter/src/js/chrome/getusermedia.js": {
15784
- "bytesInOutput": 6087
15862
+ "bytesInOutput": 6083
15785
15863
  },
15786
15864
  "../../node_modules/webrtc-adapter/src/js/chrome/getdisplaymedia.js": {
15787
15865
  "bytesInOutput": 1256
@@ -15790,7 +15868,7 @@
15790
15868
  "bytesInOutput": 9143
15791
15869
  },
15792
15870
  "../../node_modules/webrtc-adapter/src/js/firefox/getusermedia.js": {
15793
- "bytesInOutput": 2136
15871
+ "bytesInOutput": 2122
15794
15872
  },
15795
15873
  "../../node_modules/webrtc-adapter/src/js/firefox/getdisplaymedia.js": {
15796
15874
  "bytesInOutput": 842
@@ -15799,19 +15877,10 @@
15799
15877
  "bytesInOutput": 11866
15800
15878
  },
15801
15879
  "../../node_modules/webrtc-adapter/src/js/common_shim.js": {
15802
- "bytesInOutput": 12444
15880
+ "bytesInOutput": 12446
15803
15881
  },
15804
15882
  "src/Prebuilt/components/Header/AdditionalRoomState.jsx": {
15805
- "bytesInOutput": 7897
15806
- },
15807
- "src/Prebuilt/plugins/whiteboard/useWhiteboardMetadata.js": {
15808
- "bytesInOutput": 1760
15809
- },
15810
- "src/Prebuilt/common/utils.js": {
15811
- "bytesInOutput": 3730
15812
- },
15813
- "src/Prebuilt/services/FeatureFlags.jsx": {
15814
- "bytesInOutput": 1427
15883
+ "bytesInOutput": 6823
15815
15884
  },
15816
15885
  "src/Prebuilt/components/hooks/usePlaylistMusic.js": {
15817
15886
  "bytesInOutput": 1071
@@ -15819,6 +15888,9 @@
15819
15888
  "src/Prebuilt/components/hooks/useScreenshareAudio.js": {
15820
15889
  "bytesInOutput": 907
15821
15890
  },
15891
+ "src/Prebuilt/common/utils.js": {
15892
+ "bytesInOutput": 3731
15893
+ },
15822
15894
  "src/Prebuilt/components/MoreSettings/ActionTile.jsx": {
15823
15895
  "bytesInOutput": 1390
15824
15896
  },
@@ -15829,13 +15901,7 @@
15829
15901
  "bytesInOutput": 3219
15830
15902
  },
15831
15903
  "src/Prebuilt/components/hooks/useUnreadPollQuizPresent.tsx": {
15832
- "bytesInOutput": 712
15833
- },
15834
- "../hms-video-store/dist/index.js": {
15835
- "bytesInOutput": 19867
15836
- },
15837
- "../../node_modules/reselect/es/index.js": {
15838
- "bytesInOutput": 2537
15904
+ "bytesInOutput": 658
15839
15905
  },
15840
15906
  "src/Prebuilt/components/RaiseHand.jsx": {
15841
15907
  "bytesInOutput": 589
@@ -15898,7 +15964,7 @@
15898
15964
  "bytesInOutput": 1073
15899
15965
  },
15900
15966
  "src/Prebuilt/components/Footer/WhiteboardToggle.tsx": {
15901
- "bytesInOutput": 899
15967
+ "bytesInOutput": 879
15902
15968
  },
15903
15969
  "src/Prebuilt/components/Notifications/HLSFailureModal.tsx": {
15904
15970
  "bytesInOutput": 2414
@@ -15907,52 +15973,55 @@
15907
15973
  "bytesInOutput": 2968
15908
15974
  },
15909
15975
  "src/Prebuilt/components/Preview/PreviewJoin.tsx": {
15910
- "bytesInOutput": 9825
15976
+ "bytesInOutput": 9824
15911
15977
  },
15912
15978
  "src/Prebuilt/layouts/SidePane.tsx": {
15913
15979
  "bytesInOutput": 4443
15914
15980
  },
15915
15981
  "src/Prebuilt/components/Polls/Polls.tsx": {
15916
- "bytesInOutput": 730
15982
+ "bytesInOutput": 735
15917
15983
  },
15918
15984
  "src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx": {
15919
- "bytesInOutput": 7665
15985
+ "bytesInOutput": 7927
15920
15986
  },
15921
15987
  "src/Prebuilt/components/Streaming/Common.jsx": {
15922
15988
  "bytesInOutput": 2247
15923
15989
  },
15924
- "src/Prebuilt/components/Polls/common/StatusIndicator.jsx": {
15990
+ "src/Prebuilt/components/Polls/common/StatusIndicator.tsx": {
15925
15991
  "bytesInOutput": 624
15926
15992
  },
15927
15993
  "src/Prebuilt/components/Polls/CreateQuestions/CreateQuestions.jsx": {
15928
15994
  "bytesInOutput": 4875
15929
15995
  },
15930
- "src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.jsx": {
15931
- "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
15932
16001
  },
15933
- "src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.jsx": {
15934
- "bytesInOutput": 2077
16002
+ "src/Prebuilt/components/Polls/common/Line.tsx": {
16003
+ "bytesInOutput": 204
15935
16004
  },
15936
16005
  "src/Prebuilt/components/Polls/common/MultipleChoiceOptions.jsx": {
15937
16006
  "bytesInOutput": 3637
15938
16007
  },
15939
- "src/Prebuilt/components/Polls/common/OptionInputWithDelete.jsx": {
15940
- "bytesInOutput": 882
16008
+ "src/Prebuilt/components/Polls/common/OptionInputWithDelete.tsx": {
16009
+ "bytesInOutput": 889
15941
16010
  },
15942
- "src/Prebuilt/components/Polls/common/VoteCount.jsx": {
16011
+ "src/Prebuilt/components/Polls/common/VoteCount.tsx": {
15943
16012
  "bytesInOutput": 361
15944
16013
  },
15945
- "src/Prebuilt/components/Polls/common/VoteProgress.jsx": {
15946
- "bytesInOutput": 587
16014
+ "src/Prebuilt/components/Polls/common/VoteProgress.tsx": {
16015
+ "bytesInOutput": 594
15947
16016
  },
15948
16017
  "src/Prebuilt/components/Polls/common/SingleChoiceOptions.jsx": {
15949
16018
  "bytesInOutput": 4306
15950
16019
  },
15951
- "src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.jsx": {
15952
- "bytesInOutput": 2193
16020
+ "src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.tsx": {
16021
+ "bytesInOutput": 2116
15953
16022
  },
15954
16023
  "src/Prebuilt/components/Polls/Voting/LeaderboardSummary.tsx": {
15955
- "bytesInOutput": 6213
16024
+ "bytesInOutput": 6216
15956
16025
  },
15957
16026
  "src/Prebuilt/components/Polls/Voting/LeaderboardEntry.tsx": {
15958
16027
  "bytesInOutput": 1683
@@ -15960,32 +16029,32 @@
15960
16029
  "src/Prebuilt/components/Polls/Voting/StatisticBox.tsx": {
15961
16030
  "bytesInOutput": 512
15962
16031
  },
15963
- "src/Prebuilt/components/Polls/Voting/Voting.jsx": {
16032
+ "src/Prebuilt/components/Polls/Voting/Voting.tsx": {
15964
16033
  "bytesInOutput": 3216
15965
16034
  },
15966
- "src/Prebuilt/components/Polls/Voting/StandardVoting.jsx": {
16035
+ "src/Prebuilt/components/Polls/Voting/StandardVoting.tsx": {
15967
16036
  "bytesInOutput": 1254
15968
16037
  },
15969
16038
  "src/Prebuilt/components/Polls/Voting/PeerParticipationSummary.tsx": {
15970
16039
  "bytesInOutput": 1013
15971
16040
  },
15972
16041
  "src/Prebuilt/components/Polls/Voting/QuestionCard.jsx": {
15973
- "bytesInOutput": 7826
16042
+ "bytesInOutput": 8548
15974
16043
  },
15975
- "src/Prebuilt/components/Polls/Voting/TimedVoting.jsx": {
16044
+ "src/Prebuilt/components/Polls/Voting/TimedVoting.tsx": {
15976
16045
  "bytesInOutput": 1101
15977
16046
  },
15978
16047
  "src/Prebuilt/components/SidePaneTabs.tsx": {
15979
16048
  "bytesInOutput": 7277
15980
16049
  },
15981
16050
  "src/Prebuilt/components/Chat/Chat.tsx": {
15982
- "bytesInOutput": 3442
16051
+ "bytesInOutput": 3444
15983
16052
  },
15984
16053
  "src/Prebuilt/components/Chat/ChatBody.tsx": {
15985
- "bytesInOutput": 13096
16054
+ "bytesInOutput": 14276
15986
16055
  },
15987
16056
  "src/Prebuilt/components/Chat/ChatActions.tsx": {
15988
- "bytesInOutput": 9254
16057
+ "bytesInOutput": 9777
15989
16058
  },
15990
16059
  "src/Prebuilt/components/Chat/MwebChatOption.tsx": {
15991
16060
  "bytesInOutput": 417
@@ -15993,8 +16062,8 @@
15993
16062
  "src/Prebuilt/components/hooks/useChatBlacklist.ts": {
15994
16063
  "bytesInOutput": 1210
15995
16064
  },
15996
- "src/Prebuilt/components/hooks/useSetPinnedMessages.ts": {
15997
- "bytesInOutput": 2761
16065
+ "src/Prebuilt/components/hooks/usePinnedMessages.ts": {
16066
+ "bytesInOutput": 2757
15998
16067
  },
15999
16068
  "src/Prebuilt/components/Chat/EmptyChat.tsx": {
16000
16069
  "bytesInOutput": 1642
@@ -16002,8 +16071,11 @@
16002
16071
  "src/Prebuilt/images/empty-chat.svg": {
16003
16072
  "bytesInOutput": 2261
16004
16073
  },
16074
+ "src/Prebuilt/components/hooks/usePinnedBy.tsx": {
16075
+ "bytesInOutput": 704
16076
+ },
16005
16077
  "src/Prebuilt/components/Chat/ChatFooter.tsx": {
16006
- "bytesInOutput": 8638
16078
+ "bytesInOutput": 8666
16007
16079
  },
16008
16080
  "src/Prebuilt/components/Chat/ChatSelectorContainer.tsx": {
16009
16081
  "bytesInOutput": 5318
@@ -16021,13 +16093,13 @@
16021
16093
  "bytesInOutput": 2916
16022
16094
  },
16023
16095
  "src/Prebuilt/components/Chat/PinnedMessage.tsx": {
16024
- "bytesInOutput": 4983
16096
+ "bytesInOutput": 4980
16025
16097
  },
16026
16098
  "src/Prebuilt/components/Chat/ArrowNavigation.tsx": {
16027
16099
  "bytesInOutput": 1021
16028
16100
  },
16029
16101
  "src/Prebuilt/components/Chat/StickIndicator.tsx": {
16030
- "bytesInOutput": 543
16102
+ "bytesInOutput": 542
16031
16103
  },
16032
16104
  "src/Prebuilt/components/Footer/PaginatedParticipants.tsx": {
16033
16105
  "bytesInOutput": 4205
@@ -16036,22 +16108,25 @@
16036
16108
  "bytesInOutput": 2469
16037
16109
  },
16038
16110
  "src/Prebuilt/components/VideoTile.jsx": {
16039
- "bytesInOutput": 6794
16111
+ "bytesInOutput": 6742
16040
16112
  },
16041
16113
  "src/Prebuilt/components/Connection/TileConnection.tsx": {
16042
16114
  "bytesInOutput": 1506
16043
16115
  },
16044
16116
  "src/Prebuilt/components/TileMenu/TileMenu.jsx": {
16045
- "bytesInOutput": 4453
16117
+ "bytesInOutput": 4473
16046
16118
  },
16047
16119
  "src/Prebuilt/components/TileMenu/TileMenuContent.tsx": {
16048
- "bytesInOutput": 10798
16120
+ "bytesInOutput": 11288
16121
+ },
16122
+ "src/Prebuilt/components/TileMenu/utils.ts": {
16123
+ "bytesInOutput": 160
16049
16124
  },
16050
16125
  "src/Prebuilt/components/peerTileUtils.jsx": {
16051
16126
  "bytesInOutput": 1050
16052
16127
  },
16053
16128
  "src/Prebuilt/components/VirtualBackground/VBPicker.tsx": {
16054
- "bytesInOutput": 5520
16129
+ "bytesInOutput": 5518
16055
16130
  },
16056
16131
  "src/Prebuilt/components/VirtualBackground/VBCollection.tsx": {
16057
16132
  "bytesInOutput": 1157
@@ -16084,7 +16159,7 @@
16084
16159
  "bytesInOutput": 3196
16085
16160
  },
16086
16161
  "src/Prebuilt/components/VideoLayouts/GridLayout.tsx": {
16087
- "bytesInOutput": 3621
16162
+ "bytesInOutput": 3871
16088
16163
  },
16089
16164
  "src/Prebuilt/components/VideoLayouts/EqualProminence.tsx": {
16090
16165
  "bytesInOutput": 2021
@@ -16096,13 +16171,13 @@
16096
16171
  "bytesInOutput": 451
16097
16172
  },
16098
16173
  "src/Prebuilt/components/Pagination.tsx": {
16099
- "bytesInOutput": 1699
16174
+ "bytesInOutput": 1698
16100
16175
  },
16101
16176
  "src/Prebuilt/components/VideoLayouts/Grid.tsx": {
16102
16177
  "bytesInOutput": 1204
16103
16178
  },
16104
16179
  "src/Prebuilt/components/hooks/useTileLayout.tsx": {
16105
- "bytesInOutput": 3839
16180
+ "bytesInOutput": 3837
16106
16181
  },
16107
16182
  "src/Prebuilt/components/VideoLayouts/RoleProminence.tsx": {
16108
16183
  "bytesInOutput": 1737
@@ -16126,7 +16201,7 @@
16126
16201
  "bytesInOutput": 1226
16127
16202
  },
16128
16203
  "src/Prebuilt/common/PeersSorter.ts": {
16129
- "bytesInOutput": 3099
16204
+ "bytesInOutput": 3098
16130
16205
  },
16131
16206
  "src/Prebuilt/layouts/EmbedView.jsx": {
16132
16207
  "bytesInOutput": 2785
@@ -16141,7 +16216,7 @@
16141
16216
  "bytesInOutput": 1967
16142
16217
  },
16143
16218
  "src/Prebuilt/components/hooks/useCloseScreenshareWhiteboard.tsx": {
16144
- "bytesInOutput": 1001
16219
+ "bytesInOutput": 997
16145
16220
  },
16146
16221
  "src/Prebuilt/components/Header/index.tsx": {
16147
16222
  "bytesInOutput": 27
@@ -16161,6 +16236,9 @@
16161
16236
  "src/Prebuilt/components/init/Init.jsx": {
16162
16237
  "bytesInOutput": 666
16163
16238
  },
16239
+ "src/Prebuilt/services/FeatureFlags.jsx": {
16240
+ "bytesInOutput": 1427
16241
+ },
16164
16242
  "src/Prebuilt/components/Input/KeyboardInputManager.js": {
16165
16243
  "bytesInOutput": 4441
16166
16244
  },
@@ -16186,7 +16264,7 @@
16186
16264
  "bytesInOutput": 1768
16187
16265
  },
16188
16266
  "src/Prebuilt/components/Toast/ToastConfig.jsx": {
16189
- "bytesInOutput": 6475
16267
+ "bytesInOutput": 6474
16190
16268
  },
16191
16269
  "src/Prebuilt/components/Notifications/AutoplayBlockedModal.tsx": {
16192
16270
  "bytesInOutput": 1053
@@ -16244,9 +16322,15 @@
16244
16322
  },
16245
16323
  "src/Progress/index.tsx": {
16246
16324
  "bytesInOutput": 418
16325
+ },
16326
+ "src/TextArea/index.tsx": {
16327
+ "bytesInOutput": 27
16328
+ },
16329
+ "src/TextArea/TextArea.tsx": {
16330
+ "bytesInOutput": 651
16247
16331
  }
16248
16332
  },
16249
- "bytes": 1223576
16333
+ "bytes": 1221125
16250
16334
  }
16251
16335
  }
16252
16336
  }