agora-appbuilder-core 4.0.31-beta-4 → 4.0.31-beta-6
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.
package/package.json
CHANGED
|
@@ -76,8 +76,8 @@ const DefaultConfig = {
|
|
|
76
76
|
CHAT_ORG_NAME: '',
|
|
77
77
|
CHAT_APP_NAME: '',
|
|
78
78
|
CHAT_URL: '',
|
|
79
|
-
CLI_VERSION: '3.0.
|
|
80
|
-
CORE_VERSION: '4.0.
|
|
79
|
+
CLI_VERSION: '3.0.31-beta-6',
|
|
80
|
+
CORE_VERSION: '4.0.31-beta-6',
|
|
81
81
|
DISABLE_LANDSCAPE_MODE: false,
|
|
82
82
|
STT_AUTO_START: false,
|
|
83
83
|
CLOUD_RECORDING_AUTO_START: false,
|
|
@@ -303,7 +303,9 @@ const ChatConfigure = ({children}) => {
|
|
|
303
303
|
} else {
|
|
304
304
|
const fromUserID = operations[0].userId;
|
|
305
305
|
const uid =
|
|
306
|
-
localUid === fromUserID
|
|
306
|
+
localUid === fromUserID
|
|
307
|
+
? Number(privateChatUserRef.current)
|
|
308
|
+
: Number(fromUserID);
|
|
307
309
|
addReactionToPrivateStore(
|
|
308
310
|
uid,
|
|
309
311
|
msgId,
|
|
@@ -703,7 +703,9 @@ const PlatformWrapper = ({children, isLocal, isChatBubble = true}) => {
|
|
|
703
703
|
onPress={() => {
|
|
704
704
|
setIsHovered(prev => !prev);
|
|
705
705
|
}}
|
|
706
|
-
style={{
|
|
706
|
+
style={{
|
|
707
|
+
alignSelf: isLocal ? 'flex-end' : 'flex-start',
|
|
708
|
+
}}>
|
|
707
709
|
{children(isHovered, setIsHovered)}
|
|
708
710
|
</Pressable>
|
|
709
711
|
);
|
|
@@ -905,6 +907,7 @@ const style = StyleSheet.create({
|
|
|
905
907
|
flexDirection: 'row',
|
|
906
908
|
gap: 4,
|
|
907
909
|
zIndex: 5,
|
|
910
|
+
elevation: -1,
|
|
908
911
|
},
|
|
909
912
|
reactionUserList: {
|
|
910
913
|
position: 'absolute',
|