ordering-ui-react-native 0.16.82 → 0.16.84
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 +1 -1
- package/src/components/BusinessProductsList/index.tsx +4 -4
- package/themes/business/src/components/OrderDetails/OrderContentComponent.tsx +1 -0
- package/themes/business/src/components/ProductItemAccordion/index.tsx +3 -2
- package/themes/business/src/types/index.tsx +1 -0
- package/themes/original/src/components/BusinessController/index.tsx +1 -23
- package/themes/original/src/components/BusinessItemAccordion/index.tsx +3 -3
- package/themes/original/src/components/BusinessListingSearch/BusinessControllerSkeletons/index.tsx +57 -0
- package/themes/original/src/components/BusinessListingSearch/MaxSectionItem/index.tsx +59 -0
- package/themes/original/src/components/BusinessListingSearch/MaxSectionItem/styles.tsx +13 -0
- package/themes/original/src/components/BusinessListingSearch/index.tsx +11 -115
- package/themes/original/src/components/BusinessListingSearch/styles.tsx +4 -12
- package/themes/original/src/components/BusinessProductsList/index.tsx +1 -0
- package/themes/original/src/components/CartContent/index.tsx +3 -3
- package/themes/original/src/components/Checkout/index.tsx +17 -10
- package/themes/original/src/components/HelpAccountAndPayment/index.tsx +8 -3
- package/themes/original/src/components/HelpGuide/index.tsx +8 -3
- package/themes/original/src/components/HelpOrder/index.tsx +8 -3
- package/themes/original/src/components/Messages/index.tsx +17 -17
- package/themes/original/src/components/MultiOrdersDetails/index.tsx +20 -16
- package/themes/original/src/components/NavBar/index.tsx +7 -1
- package/themes/original/src/components/OrderItAgain/index.tsx +5 -4
- package/themes/original/src/components/OrderTypeSelector/index.tsx +4 -3
- package/themes/original/src/components/OrdersOption/PreviousBusinessOrdered/index.tsx +91 -104
- package/themes/original/src/components/OrdersOption/index.tsx +9 -10
- package/themes/original/src/components/PlaceSpot/index.tsx +4 -0
- package/themes/original/src/components/ProductForm/index.tsx +7 -7
- package/themes/original/src/components/SingleProductCard/index.tsx +9 -33
- package/themes/original/src/components/UpsellingProducts/index.tsx +7 -3
- package/themes/original/src/components/WalletTransactions/index.tsx +76 -0
- package/themes/original/src/components/WalletTransactions/styles.tsx +13 -0
- package/themes/original/src/components/Wallets/index.tsx +172 -162
- package/themes/original/src/components/Wallets/styles.tsx +10 -8
- package/themes/original/src/components/shared/OButton.tsx +8 -3
- package/themes/original/src/types/index.tsx +6 -2
|
@@ -366,6 +366,8 @@ export interface OrdersOptionParams {
|
|
|
366
366
|
businessesSearchList?: any,
|
|
367
367
|
hideOrders?: boolean,
|
|
368
368
|
BusinessControllerSkeletons?: any,
|
|
369
|
+
businessPaginationProps?: any,
|
|
370
|
+
businesses?: any
|
|
369
371
|
}
|
|
370
372
|
export interface ActiveOrdersParams {
|
|
371
373
|
orders?: any,
|
|
@@ -719,7 +721,8 @@ export interface PreviousBusinessOrderedParams {
|
|
|
719
721
|
businessId?: number,
|
|
720
722
|
onNavigationRedirect?: any,
|
|
721
723
|
isBusinessesSearchList?: any,
|
|
722
|
-
businessLoading?: boolean
|
|
724
|
+
businessLoading?: boolean,
|
|
725
|
+
businesses?: any
|
|
723
726
|
}
|
|
724
727
|
|
|
725
728
|
export interface ServiceFormParams {
|
|
@@ -754,7 +757,8 @@ export interface OrderItAgainParams {
|
|
|
754
757
|
categoryState: any,
|
|
755
758
|
currentCart: any,
|
|
756
759
|
handleUpdateProducts: any,
|
|
757
|
-
navigation: any
|
|
760
|
+
navigation: any,
|
|
761
|
+
searchValue?: string
|
|
758
762
|
}
|
|
759
763
|
|
|
760
764
|
export interface PreviousProductsOrderedParams {
|