agora-appbuilder-core 4.0.31-beta-5 → 4.0.31

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agora-appbuilder-core",
3
- "version": "4.0.31-beta-5",
3
+ "version": "4.0.31",
4
4
  "description": "React Native template for RTE app builder",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -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.31-beta-5',
80
- CORE_VERSION: '4.0.31-beta-5',
79
+ CLI_VERSION: '3.0.31',
80
+ CORE_VERSION: '4.0.31',
81
81
  DISABLE_LANDSCAPE_MODE: false,
82
82
  STT_AUTO_START: false,
83
83
  CLOUD_RECORDING_AUTO_START: false,
@@ -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
  );