ordering-ui-react-native 0.17.61 → 0.17.63

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.
Files changed (28) hide show
  1. package/package.json +1 -1
  2. package/themes/original/src/components/AddressDetails/index.tsx +9 -7
  3. package/themes/original/src/components/AddressForm/index.tsx +7 -1
  4. package/themes/original/src/components/BusinessController/index.tsx +66 -40
  5. package/themes/original/src/components/BusinessController/styles.tsx +1 -1
  6. package/themes/original/src/components/BusinessListingSearch/index.tsx +27 -11
  7. package/themes/original/src/components/BusinessProductsList/index.tsx +10 -8
  8. package/themes/original/src/components/BusinessProductsListing/index.tsx +1 -1
  9. package/themes/original/src/components/BusinessesListing/Layout/Original/index.tsx +17 -44
  10. package/themes/original/src/components/Checkout/index.tsx +36 -53
  11. package/themes/original/src/components/Checkout/styles.tsx +4 -2
  12. package/themes/original/src/components/CitiesControl/index.tsx +89 -0
  13. package/themes/original/src/components/CitiesControl/styles.tsx +17 -0
  14. package/themes/original/src/components/GPSButton/styles.ts +3 -3
  15. package/themes/original/src/components/MyOrders/index.tsx +42 -42
  16. package/themes/original/src/components/ProductForm/index.tsx +9 -5
  17. package/themes/original/src/components/ProductForm/styles.tsx +2 -4
  18. package/themes/original/src/components/ProductItemAccordion/index.tsx +8 -8
  19. package/themes/original/src/components/ProductOptionSubOption/index.tsx +16 -8
  20. package/themes/original/src/components/ProductOptionSubOption/styles.tsx +0 -1
  21. package/themes/original/src/components/Promotions/index.tsx +232 -219
  22. package/themes/original/src/components/Promotions/styles.tsx +7 -2
  23. package/themes/original/src/components/SingleProductCard/index.tsx +17 -21
  24. package/themes/original/src/components/SingleProductCard/styles.tsx +1 -0
  25. package/themes/original/src/components/UserDetails/index.tsx +5 -3
  26. package/themes/original/src/components/shared/HeaderTitle.tsx +1 -1
  27. package/themes/original/src/layouts/Container.tsx +1 -1
  28. package/themes/original/src/types/index.tsx +4 -0
@@ -173,6 +173,9 @@ export interface BusinessesListingParams {
173
173
  handleChangePriceLevel?: any;
174
174
  businessTypeSelected?: any;
175
175
  logosLayout?: boolean;
176
+ isCustomLayout?: boolean;
177
+ citiesState?: any;
178
+ actualSlug?: any;
176
179
  }
177
180
  export interface HighestRatedBusinessesParams {
178
181
  businessesList: { businesses: Array<any>, loading: boolean, error: null | string };
@@ -218,6 +221,7 @@ export interface BusinessControllerParams {
218
221
  setFavoriteIds?: any;
219
222
  handleUpdateBusinessList?: any;
220
223
  enableIntersection?: boolean;
224
+ isCustomLayout?: boolean;
221
225
  handleCustomUpdate?: (businessId: number, changes: any) => {};
222
226
  }
223
227
  export interface BusinessProductsListingParams {