be-components 5.3.2 → 5.3.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.
- package/lib/commonjs/ProfileManager/Components/BasicInfoManager.js +2 -2
- package/lib/commonjs/ProfileManager/Components/BasicInfoManager.js.map +1 -1
- package/lib/commonjs/ProfileManager/Components/BasicStatus.js +2 -2
- package/lib/commonjs/ProfileManager/Components/BasicStatus.js.map +1 -1
- package/lib/commonjs/ProfileManager/Components/CodeRedeem.js +3 -3
- package/lib/commonjs/ProfileManager/Components/CodeRedeem.js.map +1 -1
- package/lib/commonjs/ProfileManager/Components/DOBManager.js +3 -3
- package/lib/commonjs/ProfileManager/Components/DOBManager.js.map +1 -1
- package/lib/commonjs/ProfileManager/Components/EmailManager.js +3 -3
- package/lib/commonjs/ProfileManager/Components/EmailManager.js.map +1 -1
- package/lib/commonjs/ProfileManager/Components/PasswordManager.js +3 -3
- package/lib/commonjs/ProfileManager/Components/PasswordManager.js.map +1 -1
- package/lib/commonjs/ProfileManager/Components/PhoneManager.js +2 -2
- package/lib/commonjs/ProfileManager/Components/PhoneManager.js.map +1 -1
- package/lib/commonjs/ProfileManager/Components/ProfilePicManager.js +2 -2
- package/lib/commonjs/ProfileManager/Components/ProfilePicManager.js.map +1 -1
- package/lib/commonjs/ProfileManager/Components/ProfileWelcome.js +2 -2
- package/lib/commonjs/ProfileManager/Components/ProfileWelcome.js.map +1 -1
- package/lib/commonjs/ProfileManager/Components/ProfileWizard.js +5 -5
- package/lib/commonjs/ProfileManager/Components/ProfileWizard.js.map +1 -1
- package/lib/commonjs/ProfileManager/Components/SettingsManager.js +2 -2
- package/lib/commonjs/ProfileManager/Components/SettingsManager.js.map +1 -1
- package/lib/commonjs/ProfileManager/Components/VouchCard.js +2 -2
- package/lib/commonjs/ProfileManager/Components/VouchCard.js.map +1 -1
- package/lib/commonjs/ProfileManager/index.js +4 -4
- package/lib/commonjs/ProfileManager/index.js.map +1 -1
- package/lib/module/ProfileManager/Components/BasicInfoManager.js +2 -2
- package/lib/module/ProfileManager/Components/BasicInfoManager.js.map +1 -1
- package/lib/module/ProfileManager/Components/BasicStatus.js +2 -2
- package/lib/module/ProfileManager/Components/BasicStatus.js.map +1 -1
- package/lib/module/ProfileManager/Components/CodeRedeem.js +3 -3
- package/lib/module/ProfileManager/Components/CodeRedeem.js.map +1 -1
- package/lib/module/ProfileManager/Components/DOBManager.js +3 -3
- package/lib/module/ProfileManager/Components/DOBManager.js.map +1 -1
- package/lib/module/ProfileManager/Components/EmailManager.js +3 -3
- package/lib/module/ProfileManager/Components/EmailManager.js.map +1 -1
- package/lib/module/ProfileManager/Components/PasswordManager.js +3 -3
- package/lib/module/ProfileManager/Components/PasswordManager.js.map +1 -1
- package/lib/module/ProfileManager/Components/PhoneManager.js +2 -2
- package/lib/module/ProfileManager/Components/PhoneManager.js.map +1 -1
- package/lib/module/ProfileManager/Components/ProfilePicManager.js +2 -2
- package/lib/module/ProfileManager/Components/ProfilePicManager.js.map +1 -1
- package/lib/module/ProfileManager/Components/ProfileWelcome.js +2 -2
- package/lib/module/ProfileManager/Components/ProfileWelcome.js.map +1 -1
- package/lib/module/ProfileManager/Components/ProfileWizard.js +5 -5
- package/lib/module/ProfileManager/Components/ProfileWizard.js.map +1 -1
- package/lib/module/ProfileManager/Components/SettingsManager.js +2 -2
- package/lib/module/ProfileManager/Components/SettingsManager.js.map +1 -1
- package/lib/module/ProfileManager/Components/VouchCard.js +2 -2
- package/lib/module/ProfileManager/Components/VouchCard.js.map +1 -1
- package/lib/module/ProfileManager/index.js +4 -4
- package/lib/module/ProfileManager/index.js.map +1 -1
- package/package.json +1 -1
- package/src/ProfileManager/Components/BasicInfoManager.tsx +2 -2
- package/src/ProfileManager/Components/BasicStatus.tsx +2 -2
- package/src/ProfileManager/Components/CodeRedeem.tsx +3 -3
- package/src/ProfileManager/Components/DOBManager.tsx +3 -3
- package/src/ProfileManager/Components/EmailManager.tsx +3 -3
- package/src/ProfileManager/Components/PasswordManager.tsx +3 -3
- package/src/ProfileManager/Components/PhoneManager.tsx +2 -2
- package/src/ProfileManager/Components/ProfilePicManager.tsx +2 -2
- package/src/ProfileManager/Components/ProfileWelcome.tsx +2 -2
- package/src/ProfileManager/Components/ProfileWizard.tsx +5 -5
- package/src/ProfileManager/Components/SettingsManager.tsx +2 -2
- package/src/ProfileManager/Components/VouchCard.tsx +2 -2
- package/src/ProfileManager/index.tsx +4 -4
|
@@ -128,8 +128,8 @@ const SettingsManager = ({ player, title, description, icon, settings, player_se
|
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
return (
|
|
131
|
-
<View style={{
|
|
132
|
-
<ScrollView style={{
|
|
131
|
+
<View style={{ flex:1 }}>
|
|
132
|
+
<ScrollView style={{ flex:1 }}>
|
|
133
133
|
<View nativeID='preference_settings' style={{ padding:10 }}>
|
|
134
134
|
<View nativeID='header' style={{ flexDirection:'row', alignItems:'center' }}>
|
|
135
135
|
<View float style={{ padding:10, borderRadius:8 }}>
|
|
@@ -205,8 +205,8 @@ const VouchCard = ({ player, view_mode, walkthrough, insets, code_details, onVou
|
|
|
205
205
|
}
|
|
206
206
|
|
|
207
207
|
return (
|
|
208
|
-
<View style={{
|
|
209
|
-
<View style={{
|
|
208
|
+
<View style={{ flex:1 }}>
|
|
209
|
+
<View style={{ flex:1 }}>
|
|
210
210
|
<FlatList
|
|
211
211
|
data={sections}
|
|
212
212
|
key={'vouch_sections'}
|
|
@@ -84,18 +84,18 @@ const ProfileManager = ({ profile_attribute, view_mode, hide_profile_header, ins
|
|
|
84
84
|
|
|
85
85
|
if(!draft_player || loading){
|
|
86
86
|
return (
|
|
87
|
-
<View style={{
|
|
87
|
+
<View style={{ flex:1 }}>
|
|
88
88
|
<ActivityIndicator size={'large'} color={Colors.brand.midnight} />
|
|
89
89
|
</View>
|
|
90
90
|
)
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
return (
|
|
94
|
-
<View style={{
|
|
94
|
+
<View style={{ flex:1 }} onLayout={(ev) => {
|
|
95
95
|
const { width } = ev.nativeEvent.layout
|
|
96
96
|
setModuleWidth(width)
|
|
97
97
|
}}>
|
|
98
|
-
<View style={{
|
|
98
|
+
<View style={{ flex:1 }}>
|
|
99
99
|
{!hide_profile_header && !walkthrough && !vouching ?
|
|
100
100
|
<View style={{ flexDirection:'row', alignItems:'center' }}>
|
|
101
101
|
<View nativeID='profile_picture' style={{ padding:10 }}>
|
|
@@ -117,7 +117,7 @@ const ProfileManager = ({ profile_attribute, view_mode, hide_profile_header, ins
|
|
|
117
117
|
:<></>}
|
|
118
118
|
</View>
|
|
119
119
|
:<></>}
|
|
120
|
-
<View style={{ marginTop:10,
|
|
120
|
+
<View style={{ marginTop:10, flex:1 }}>
|
|
121
121
|
<ProfileWizard
|
|
122
122
|
player={draft_player}
|
|
123
123
|
player_settings={player_settings}
|