ordering-ui-react-native 0.15.77-release → 0.15.78-release
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
|
@@ -103,7 +103,10 @@ export const BusinessBasicInformation = (
|
|
|
103
103
|
height: 12,
|
|
104
104
|
width: 12,
|
|
105
105
|
margin: 0,
|
|
106
|
-
padding: 0
|
|
106
|
+
padding: 0,
|
|
107
|
+
display: 'flex',
|
|
108
|
+
justifyContent: 'center',
|
|
109
|
+
alignItems: 'center'
|
|
107
110
|
},
|
|
108
111
|
headerChewStyle: {
|
|
109
112
|
paddingHorizontal: 30,
|
|
@@ -221,7 +224,8 @@ export const BusinessBasicInformation = (
|
|
|
221
224
|
<View style={styles.tiktokIcon}>
|
|
222
225
|
<OIcon
|
|
223
226
|
src={theme.images.general.tiktok}
|
|
224
|
-
style={{ width:
|
|
227
|
+
style={{ width: 10, height: 12 }}
|
|
228
|
+
cover
|
|
225
229
|
/>
|
|
226
230
|
</View>
|
|
227
231
|
</Pressable>
|
|
@@ -326,10 +326,10 @@ const CheckoutUI = (props: any) => {
|
|
|
326
326
|
!businessDetails?.error &&
|
|
327
327
|
(
|
|
328
328
|
<Placeholder Animation={Fade}>
|
|
329
|
-
<PlaceholderLine height={20}
|
|
330
|
-
<PlaceholderLine height={
|
|
331
|
-
<PlaceholderLine height={
|
|
332
|
-
<PlaceholderLine height={
|
|
329
|
+
<PlaceholderLine height={20} />
|
|
330
|
+
<PlaceholderLine height={12} />
|
|
331
|
+
<PlaceholderLine height={12} />
|
|
332
|
+
<PlaceholderLine height={12} style={{ marginBottom: 20 }} />
|
|
333
333
|
</Placeholder>
|
|
334
334
|
)}
|
|
335
335
|
{
|
|
@@ -375,10 +375,10 @@ const CheckoutUI = (props: any) => {
|
|
|
375
375
|
<ChUserDetails>
|
|
376
376
|
{cartState.loading ? (
|
|
377
377
|
<Placeholder Animation={Fade}>
|
|
378
|
-
<PlaceholderLine height={20}
|
|
379
|
-
<PlaceholderLine height={
|
|
380
|
-
<PlaceholderLine height={
|
|
381
|
-
<PlaceholderLine height={
|
|
378
|
+
<PlaceholderLine height={20} />
|
|
379
|
+
<PlaceholderLine height={12} />
|
|
380
|
+
<PlaceholderLine height={12} />
|
|
381
|
+
<PlaceholderLine height={12} style={{ marginBottom: 20 }} />
|
|
382
382
|
</Placeholder>
|
|
383
383
|
) : (
|
|
384
384
|
<UserDetails
|
|
@@ -402,8 +402,8 @@ const CheckoutUI = (props: any) => {
|
|
|
402
402
|
{cartState.loading || deliveryOptionSelected === undefined ? (
|
|
403
403
|
<View style={{ height: 110 }}>
|
|
404
404
|
<Placeholder Animation={Fade}>
|
|
405
|
-
<PlaceholderLine height={20}
|
|
406
|
-
<PlaceholderLine height={40}
|
|
405
|
+
<PlaceholderLine height={20} />
|
|
406
|
+
<PlaceholderLine height={40} />
|
|
407
407
|
</Placeholder>
|
|
408
408
|
</View>
|
|
409
409
|
) : (
|