@100mslive/react-native-room-kit 1.2.1 → 1.2.3

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 +5 -5
  2. package/lib/commonjs/HMSInstanceSetup.js +2 -1
  3. package/lib/commonjs/HMSInstanceSetup.js.map +1 -1
  4. package/lib/commonjs/HMSRoomSetup.js +31 -1
  5. package/lib/commonjs/HMSRoomSetup.js.map +1 -1
  6. package/lib/commonjs/components/HMSBaseButton.js.map +1 -1
  7. package/lib/commonjs/components/HMSManageNoiseCancellation.js +11 -0
  8. package/lib/commonjs/components/HMSManageNoiseCancellation.js.map +1 -1
  9. package/lib/commonjs/components/HMSSendMessageInput.js +1 -1
  10. package/lib/commonjs/components/HMSSendMessageInput.js.map +1 -1
  11. package/lib/commonjs/components/HMSTextInput.js +1 -1
  12. package/lib/commonjs/components/HMSTextInput.js.map +1 -1
  13. package/lib/commonjs/components/MeetingScreenContent.js +11 -0
  14. package/lib/commonjs/components/MeetingScreenContent.js.map +1 -1
  15. package/lib/commonjs/components/Modals.js +45 -24
  16. package/lib/commonjs/components/Modals.js.map +1 -1
  17. package/lib/commonjs/components/Participants/ParticipantsItemOptions.js +26 -0
  18. package/lib/commonjs/components/Participants/ParticipantsItemOptions.js.map +1 -1
  19. package/lib/commonjs/components/PeerSettingsModalContent.js +13 -1
  20. package/lib/commonjs/components/PeerSettingsModalContent.js.map +1 -1
  21. package/lib/commonjs/components/PollQuestion.js +3 -3
  22. package/lib/commonjs/components/PollQuestion.js.map +1 -1
  23. package/lib/commonjs/components/RoomSettingsModalContent.js +1 -1
  24. package/lib/commonjs/components/styles.js +1 -0
  25. package/lib/commonjs/components/styles.js.map +1 -1
  26. package/lib/commonjs/hooks-util.js +26 -16
  27. package/lib/commonjs/hooks-util.js.map +1 -1
  28. package/lib/commonjs/utils.js +2 -2
  29. package/lib/module/HMSInstanceSetup.js +2 -1
  30. package/lib/module/HMSInstanceSetup.js.map +1 -1
  31. package/lib/module/HMSRoomSetup.js +32 -2
  32. package/lib/module/HMSRoomSetup.js.map +1 -1
  33. package/lib/module/components/HMSBaseButton.js.map +1 -1
  34. package/lib/module/components/HMSManageNoiseCancellation.js +11 -0
  35. package/lib/module/components/HMSManageNoiseCancellation.js.map +1 -1
  36. package/lib/module/components/HMSSendMessageInput.js +1 -1
  37. package/lib/module/components/HMSSendMessageInput.js.map +1 -1
  38. package/lib/module/components/HMSTextInput.js +1 -1
  39. package/lib/module/components/HMSTextInput.js.map +1 -1
  40. package/lib/module/components/MeetingScreenContent.js +12 -1
  41. package/lib/module/components/MeetingScreenContent.js.map +1 -1
  42. package/lib/module/components/Modals.js +47 -25
  43. package/lib/module/components/Modals.js.map +1 -1
  44. package/lib/module/components/Participants/ParticipantsItemOptions.js +28 -2
  45. package/lib/module/components/Participants/ParticipantsItemOptions.js.map +1 -1
  46. package/lib/module/components/PeerSettingsModalContent.js +14 -2
  47. package/lib/module/components/PeerSettingsModalContent.js.map +1 -1
  48. package/lib/module/components/PollQuestion.js +3 -3
  49. package/lib/module/components/PollQuestion.js.map +1 -1
  50. package/lib/module/components/RoomSettingsModalContent.js +1 -1
  51. package/lib/module/components/styles.js +1 -0
  52. package/lib/module/components/styles.js.map +1 -1
  53. package/lib/module/hooks-util.js +26 -16
  54. package/lib/module/hooks-util.js.map +1 -1
  55. package/lib/module/utils.js +2 -2
  56. package/lib/typescript/HMSInstanceSetup.d.ts.map +1 -1
  57. package/lib/typescript/HMSRoomSetup.d.ts.map +1 -1
  58. package/lib/typescript/components/HMSManageNoiseCancellation.d.ts.map +1 -1
  59. package/lib/typescript/components/MeetingScreenContent.d.ts.map +1 -1
  60. package/lib/typescript/components/Modals.d.ts.map +1 -1
  61. package/lib/typescript/components/Participants/ParticipantsItemOptions.d.ts.map +1 -1
  62. package/lib/typescript/components/PeerSettingsModalContent.d.ts.map +1 -1
  63. package/lib/typescript/components/styles.d.ts +1 -0
  64. package/lib/typescript/components/styles.d.ts.map +1 -1
  65. package/lib/typescript/hooks-util.d.ts.map +1 -1
  66. package/package.json +8 -8
  67. package/src/HMSInstanceSetup.tsx +2 -1
  68. package/src/HMSRoomSetup.tsx +49 -2
  69. package/src/components/HMSBaseButton.tsx +1 -1
  70. package/src/components/HMSManageNoiseCancellation.tsx +15 -0
  71. package/src/components/HMSSendMessageInput.tsx +1 -1
  72. package/src/components/HMSTextInput.tsx +1 -1
  73. package/src/components/MeetingScreenContent.tsx +21 -1
  74. package/src/components/Modals.tsx +56 -31
  75. package/src/components/Participants/ParticipantsItemOptions.tsx +28 -1
  76. package/src/components/PeerSettingsModalContent.tsx +17 -1
  77. package/src/components/PollQuestion.tsx +3 -3
  78. package/src/components/RoomSettingsModalContent.tsx +1 -1
  79. package/src/components/TilesContainer.tsx +1 -1
  80. package/src/components/styles.ts +1 -0
  81. package/src/hooks-util.ts +35 -18
  82. package/src/utils.ts +2 -2
package/src/utils.ts CHANGED
@@ -4,8 +4,8 @@ const DEFAULT_JOINING_CONFIG = {
4
4
  mutedAudio: true,
5
5
  mutedVideo: true,
6
6
  skipPreview: false,
7
- audioMixer: false, // IOS only
8
- musicMode: false, // IOS only
7
+ audioMixer: false, // iOS only
8
+ musicMode: false, // iOS only
9
9
  softwareDecoder: true, // Android only
10
10
  autoResize: false, // Android only
11
11
  };