agora-appbuilder-core 4.0.13 → 4.0.15

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 (71) hide show
  1. package/package.json +1 -1
  2. package/template/_package-lock.json +1364 -1576
  3. package/template/android/app/src/main/assets/fonts/icomoon.ttf +0 -0
  4. package/template/customization-api/sub-components.ts +6 -4
  5. package/template/customization-api/types.ts +0 -6
  6. package/template/defaultConfig.js +0 -3
  7. package/template/global.d.ts +0 -3
  8. package/template/ios/Podfile.lock +0 -10
  9. package/template/package-lock.json +1364 -1576
  10. package/template/package.json +0 -4
  11. package/template/src/SDKAppWrapper.tsx +8 -2
  12. package/template/src/app-state/useMessages.ts +9 -49
  13. package/template/src/assets/font-styles.css +125 -289
  14. package/template/src/assets/fonts/icomoon.ttf +0 -0
  15. package/template/src/assets/selection.json +1 -1
  16. package/template/src/atoms/ActionMenu.tsx +2 -5
  17. package/template/src/atoms/CustomIcon.tsx +1 -17
  18. package/template/src/atoms/ImageIcon.tsx +3 -19
  19. package/template/src/atoms/Popup.tsx +4 -13
  20. package/template/src/atoms/ToolbarPreset.tsx +57 -6
  21. package/template/src/auth/AuthProvider.tsx +0 -5
  22. package/template/src/auth/config.ts +3 -12
  23. package/template/src/components/Chat.tsx +1 -7
  24. package/template/src/components/ChatContext.ts +0 -12
  25. package/template/src/components/CommonStyles.ts +2 -2
  26. package/template/src/components/Controls.tsx +57 -29
  27. package/template/src/components/Leftbar.tsx +4 -4
  28. package/template/src/components/Navbar.tsx +54 -29
  29. package/template/src/components/NavbarMobile.tsx +23 -33
  30. package/template/src/components/PinnedVideo.tsx +1 -1
  31. package/template/src/components/RTMConfigure.tsx +0 -1
  32. package/template/src/components/SdkApiContext.tsx +4 -1
  33. package/template/src/components/chat-messages/useChatMessages.tsx +607 -411
  34. package/template/src/components/chat-ui/useChatUIControls.tsx +0 -53
  35. package/template/src/components/meeting-info-invite/MeetingInfoGridTile.tsx +1 -4
  36. package/template/src/components/participants/Participant.tsx +1 -0
  37. package/template/src/components/precall/joinWaitingRoomBtn.native.tsx +1 -6
  38. package/template/src/components/precall/joinWaitingRoomBtn.tsx +1 -6
  39. package/template/src/components/room-info/useRoomInfo.tsx +5 -5
  40. package/template/src/language/default-labels/videoCallScreenLabels.ts +6 -86
  41. package/template/src/pages/VideoCall.tsx +4 -3
  42. package/template/src/pages/video-call/ActionSheetContent.tsx +32 -3
  43. package/template/src/pages/video-call/VideoCallScreenWrapper.tsx +12 -22
  44. package/template/src/pages/video-call/VideoComponent.tsx +11 -5
  45. package/template/src/pages/video-call/index.ts +0 -8
  46. package/template/src/subComponents/ChatBubble.tsx +32 -252
  47. package/template/src/subComponents/ChatContainer.tsx +4 -14
  48. package/template/src/subComponents/ChatInput.ios.tsx +184 -0
  49. package/template/src/subComponents/ChatInput.tsx +100 -276
  50. package/template/src/subComponents/RemoteMutePopup.tsx +131 -12
  51. package/template/src/subComponents/caption/CaptionContainer.tsx +2 -6
  52. package/template/src/subComponents/recording/useRecording.tsx +1 -3
  53. package/template/src/utils/SdkMethodEvents.ts +1 -0
  54. package/template/src/utils/common.tsx +17 -0
  55. package/template/src/utils/index.tsx +0 -30
  56. package/template/src/utils/useEndCall.ts +0 -7
  57. package/template/src/utils/useJoinRoom.ts +7 -33
  58. package/template/android/link-assets-manifest.json +0 -13
  59. package/template/ios/link-assets-manifest.json +0 -13
  60. package/template/src/atoms/InlinePopup.tsx +0 -185
  61. package/template/src/components/chat/chatConfigure.native.tsx +0 -488
  62. package/template/src/components/chat/chatConfigure.tsx +0 -473
  63. package/template/src/subComponents/ChatInput.native.tsx +0 -269
  64. package/template/src/subComponents/chat/ChatActionMenu.tsx +0 -224
  65. package/template/src/subComponents/chat/ChatAttachment.native.tsx +0 -234
  66. package/template/src/subComponents/chat/ChatAttachment.tsx +0 -145
  67. package/template/src/subComponents/chat/ChatEmoji.native.tsx +0 -75
  68. package/template/src/subComponents/chat/ChatEmoji.tsx +0 -181
  69. package/template/src/subComponents/chat/ChatSendButton.tsx +0 -141
  70. package/template/src/subComponents/chat/ChatUploadStatus.tsx +0 -65
  71. package/template/src/subComponents/chat/ImagePopup.tsx +0 -400
@@ -22,10 +22,6 @@ export {
22
22
  ChatInput,
23
23
  Chat,
24
24
  SettingsView,
25
- ChatAttachmentButton,
26
- ChatEmojiButton,
27
- ChatUploadStatus,
28
- ChatSendButton,
29
25
  ToolbarComponents,
30
26
  } from '../src/pages/video-call/index';
31
27
  export {default as GridLayout} from '../src/components/GridVideo';
@@ -63,6 +59,12 @@ export {default as ToolbarItem} from '../src/atoms/ToolbarItem';
63
59
  export {default as ToolbarPreset} from '../src/atoms/ToolbarPreset';
64
60
  export {default as ToolbarMenu} from '../src/atoms/ToolbarMenu';
65
61
  export type {
62
+ ToolbarPresetAlign,
63
+ ToolbarDefaultItem,
64
+ ToolbarDefaultItemConfig,
65
+ ToolbarItemAlign,
66
+ ToolbarItemHide,
67
+ ToolbarDefaultItemName,
66
68
  ToolbarCustomItem,
67
69
  ToolbarPresetProps,
68
70
  } from '../src/atoms/ToolbarPreset';
@@ -25,9 +25,3 @@ export type {
25
25
  publicAndPrivateChatToastSubHeadingDataInterface,
26
26
  } from '../src/language/default-labels/videoCallScreenLabels';
27
27
  export type {TextDataInterface} from '../src/language/default-labels';
28
- export {
29
- type ChatOption,
30
- ChatMessageType,
31
- SDKChatType,
32
- } from '../src/components/chat-messages/useChatMessages';
33
- export {UploadStatus} from '../src/components/chat-ui/useChatUIControls';
@@ -69,9 +69,6 @@ const DefaultConfig = {
69
69
  WHITEBOARD_APPIDENTIFIER: '',
70
70
  WHITEBOARD_REGION: '',
71
71
  ENABLE_NOISE_CANCELLATION_BY_DEFAULT: false,
72
- CHAT_ORG_NAME:'',
73
- CHAT_APP_NAME: '',
74
- CHAT_URL: '',
75
72
  };
76
73
 
77
74
  module.exports = DefaultConfig;
@@ -111,9 +111,6 @@ interface ConfigInterface {
111
111
  ENABLE_WAITING_ROOM: boolean;
112
112
  WHITEBOARD_APPIDENTIFIER: string;
113
113
  WHITEBOARD_REGION: string;
114
- CHAT_ORG_NAME: string;
115
- CHAT_APP_NAME: string;
116
- CHAT_URL: string;
117
114
  ENABLE_NOISE_CANCELLATION_BY_DEFAULT: boolean;
118
115
  }
119
116
  declare var $config: ConfigInterface;
@@ -52,7 +52,6 @@ PODS:
52
52
  - hermes-engine (0.72.4):
53
53
  - hermes-engine/Pre-built (= 0.72.4)
54
54
  - hermes-engine/Pre-built (0.72.4)
55
- - HyphenateChat (4.1.1)
56
55
  - IQKeyboardManagerSwift (6.5.4)
57
56
  - libevent (2.1.12)
58
57
  - RCT-Folly (2021.07.22.00):
@@ -360,9 +359,6 @@ PODS:
360
359
  - AgoraRtcEngine_Special_iOS (= 4.2.6.3)
361
360
  - RCT-Folly (= 2021.07.22.00)
362
361
  - React-Core
363
- - react-native-chat-sdk (1.2.1):
364
- - HyphenateChat (= 4.1.1)
365
- - React-Core
366
362
  - react-native-document-picker (9.1.1):
367
363
  - React-Core
368
364
  - react-native-keep-awake (4.0.0):
@@ -569,7 +565,6 @@ DEPENDENCIES:
569
565
  - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
570
566
  - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
571
567
  - react-native-agora (from `../node_modules/react-native-agora`)
572
- - react-native-chat-sdk (from `../node_modules/react-native-agora-chat`)
573
568
  - react-native-document-picker (from `../node_modules/react-native-document-picker`)
574
569
  - react-native-keep-awake (from `../node_modules/react-native-keep-awake`)
575
570
  - react-native-webview (from `../node_modules/react-native-webview`)
@@ -615,7 +610,6 @@ SPEC REPOS:
615
610
  - AgoraRtm_iOS
616
611
  - BEMCheckBox
617
612
  - fmt
618
- - HyphenateChat
619
613
  - IQKeyboardManagerSwift
620
614
  - libevent
621
615
  - SocketRocket
@@ -669,8 +663,6 @@ EXTERNAL SOURCES:
669
663
  :path: "../node_modules/react-native/ReactCommon/logger"
670
664
  react-native-agora:
671
665
  :path: "../node_modules/react-native-agora"
672
- react-native-chat-sdk:
673
- :path: "../node_modules/react-native-agora-chat"
674
666
  react-native-document-picker:
675
667
  :path: "../node_modules/react-native-document-picker"
676
668
  react-native-keep-awake:
@@ -756,7 +748,6 @@ SPEC CHECKSUMS:
756
748
  fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
757
749
  glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
758
750
  hermes-engine: 81191603c4eaa01f5e4ae5737a9efcf64756c7b2
759
- HyphenateChat: 95aa4abbad0e763f513acbe21ff9543f50b886cd
760
751
  IQKeyboardManagerSwift: 2dde0fc70110e8eac7ccce2a46fdbec6a850b414
761
752
  libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
762
753
  RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
@@ -775,7 +766,6 @@ SPEC CHECKSUMS:
775
766
  React-jsinspector: aaed4cf551c4a1c98092436518c2d267b13a673f
776
767
  React-logger: da1ebe05ae06eb6db4b162202faeafac4b435e77
777
768
  react-native-agora: 0d623411f75a126e6d5f6a41761df9ef74da87e6
778
- react-native-chat-sdk: 8a4969c99fc27019042acc48e78f469947813fbc
779
769
  react-native-document-picker: 3599b238843369026201d2ef466df53f77ae0452
780
770
  react-native-keep-awake: afad8a51dfef9fe9655a6344771be32c8596d774
781
771
  react-native-webview: bdc091de8cf7f8397653e30182efcd9f772e03b3