ordering-ui-react-native 0.18.67 → 0.18.69
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
|
@@ -126,6 +126,11 @@ export const CartContent = (props: any) => {
|
|
|
126
126
|
</OText>
|
|
127
127
|
<OText size={16} lineHeight={24} color={theme.colors.textNormal} weight={'500'}>{parsePrice(totalCartsPrice)}</OText>
|
|
128
128
|
</View>
|
|
129
|
+
<View style={{ flexDirection: 'row', justifyContent: 'center', marginVertical: 20 }}>
|
|
130
|
+
<OText size={14} color={theme.colors.textNormal} weight={'300'} style={{ textAlign: 'center' }}>
|
|
131
|
+
{t('CART_GROUP_MESSAGE_ALERT', 'Discounts may be applied at the time of payment for this group.')}
|
|
132
|
+
</OText>
|
|
133
|
+
</View>
|
|
129
134
|
</ChCartsTotal>
|
|
130
135
|
)}
|
|
131
136
|
<CheckoutAction style={{ marginTop: 0 }}>
|
|
@@ -161,7 +161,7 @@ const ProfileListUI = (props: ProfileParams) => {
|
|
|
161
161
|
}, [removeAccountState])
|
|
162
162
|
|
|
163
163
|
return (
|
|
164
|
-
<View style={{ flex: 1, height:
|
|
164
|
+
<View style={{ flex: 1, height: '100%', paddingTop: 20 }}>
|
|
165
165
|
<CenterView style={styles.pagePadding}>
|
|
166
166
|
{user?.photo && !hideProfileImage && (
|
|
167
167
|
<View style={styles.photo}>
|
|
@@ -261,7 +261,7 @@ const ProfileListUI = (props: ProfileParams) => {
|
|
|
261
261
|
)}
|
|
262
262
|
</Actions>
|
|
263
263
|
|
|
264
|
-
<Actions>
|
|
264
|
+
<Actions style={{ paddingTop: height * .02 }}>
|
|
265
265
|
{!showLanguages && (
|
|
266
266
|
<LanguageSelector iconColor={theme.colors.textNormal} pickerStyle={langPickerStyle} />
|
|
267
267
|
)}
|