ordering-ui-react-native 0.17.35 → 0.17.37
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
|
@@ -589,10 +589,11 @@ const AddressFormUI = (props: AddressFormParams) => {
|
|
|
589
589
|
borderColor: theme.colors.border,
|
|
590
590
|
flexGrow: 1,
|
|
591
591
|
fontSize: 15,
|
|
592
|
-
|
|
592
|
+
paddingLeft: 16,
|
|
593
|
+
paddingRight: 32,
|
|
593
594
|
minHeight: 50,
|
|
594
595
|
fontFamily: 'Poppins-Regular',
|
|
595
|
-
marginBottom: 24
|
|
596
|
+
marginBottom: 24
|
|
596
597
|
},
|
|
597
598
|
}}
|
|
598
599
|
/>
|
|
@@ -600,9 +601,9 @@ const AddressFormUI = (props: AddressFormParams) => {
|
|
|
600
601
|
/>
|
|
601
602
|
|
|
602
603
|
{(
|
|
603
|
-
((!isEditing && !isGuestUser
|
|
604
|
-
(isEditing && !isGuestUser
|
|
605
|
-
(isGuestUser
|
|
604
|
+
((!isEditing && !isGuestUser) ||
|
|
605
|
+
(isEditing && !isGuestUser)) ||
|
|
606
|
+
(isGuestUser)) &&
|
|
606
607
|
(
|
|
607
608
|
<View style={styles.pinIcon}>
|
|
608
609
|
<GPSButton
|
|
@@ -260,7 +260,7 @@ const BusinessProductsListingUI = (props: BusinessProductsListingParams) => {
|
|
|
260
260
|
<Animated.View style={{ position: 'relative' }}>
|
|
261
261
|
<TopHeader
|
|
262
262
|
style={{
|
|
263
|
-
marginTop: Platform.OS === 'ios' ? insets.top :
|
|
263
|
+
marginTop: Platform.OS === 'ios' ? insets.top : 0
|
|
264
264
|
}}
|
|
265
265
|
>
|
|
266
266
|
{!isOpenSearchBar && (
|
|
@@ -26,7 +26,14 @@ const OImage = (props: Props): React.ReactElement => {
|
|
|
26
26
|
return (
|
|
27
27
|
<Wrapper style={{ borderRadius: props.style?.borderRadius, overflow: 'hidden', marginHorizontal: props.style?.marginHorizontal }}>
|
|
28
28
|
<SImage
|
|
29
|
-
source={
|
|
29
|
+
source={
|
|
30
|
+
props.src
|
|
31
|
+
? props.src
|
|
32
|
+
: props.url
|
|
33
|
+
? typeof props.url === 'number'
|
|
34
|
+
? props.url
|
|
35
|
+
: { uri: props.url }
|
|
36
|
+
: props.dummy}
|
|
30
37
|
style={{
|
|
31
38
|
tintColor: props.color,
|
|
32
39
|
flex: props.isWrap ? 1 : 0,
|