ordering-ui-react-native 0.22.84 → 0.22.86

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ordering-ui-react-native",
3
- "version": "0.22.84",
3
+ "version": "0.22.86",
4
4
  "description": "Reusable components made in react native",
5
5
  "main": "src/index.tsx",
6
6
  "author": "ordering.inc",
@@ -750,9 +750,7 @@ const OrdersOptionUI = (props: OrdersOptionParams) => {
750
750
  </ScrollView>
751
751
  </View>
752
752
 
753
- {isBusinessApp && (
754
- <NewOrderNotification isBusinessApp={isBusinessApp} />
755
- )}
753
+ <NewOrderNotification isBusinessApp={isBusinessApp} />
756
754
 
757
755
  {(openSearchModal || openSLASettingModal) && (
758
756
  <OModal open={openSearchModal || openSLASettingModal} entireModal customClose>
@@ -19,6 +19,7 @@ import { Favorite } from './src/components/Favorite';
19
19
  import { FavoriteList } from './src/components/FavoriteList';
20
20
  import { FloatingButton } from './src/components/FloatingButton';
21
21
  import { ForgotPasswordForm } from './src/components/ForgotPasswordForm';
22
+ import { GPSButton } from './src/components/GPSButton';
22
23
  import { MomentOption } from './src/components/MomentOption';
23
24
  import { OrdersOption } from './src/components/OrdersOption';
24
25
  import { OrderDetails } from './src/components/OrderDetails';
@@ -85,6 +86,7 @@ import { VerifyPhone } from './src/components/VerifyPhone';
85
86
  import { GoogleLogin } from './src/components/GoogleLogin';
86
87
  import { PreviousOrders } from './src/components/PreviousOrders';
87
88
  import { PaymentOptionCash } from './src/components/PaymentOptionCash';
89
+ import { SendGiftCard } from './src/components/GiftCard/SendGiftCard';
88
90
  import { StripeElementsForm } from './src/components/StripeElementsForm';
89
91
  import { StripeCardsList } from './src/components/StripeCardsList';
90
92
  import { ProductIngredient } from './src/components/ProductIngredient';
@@ -106,7 +108,7 @@ import { OSBill, OSTable, OSCoupon, OSTotal, OSRow } from './src/components/Orde
106
108
  import { FormInput, FormSide, ButtonsWrapper, LoginWith, OTab, OTabs } from './src/components/LoginForm/styles';
107
109
  import { OSItem, OSItemContent, OSItemActions } from './src/components/PaymentOptionStripe/styles';
108
110
 
109
- import { orderTypeList } from './src/utils'
111
+ import { orderTypeList, getTraduction, verifyDecimals, getOrderStatus, getOrderStatuPickUp } from './src/utils'
110
112
 
111
113
  import Alert from './src/providers/AlertProvider'
112
114
 
@@ -184,6 +186,7 @@ export {
184
186
  Checkout,
185
187
  Favorite,
186
188
  FavoriteList,
189
+ GPSButton,
187
190
  ForgotPasswordForm,
188
191
  MomentOption,
189
192
  OrdersOption,
@@ -258,6 +261,7 @@ export {
258
261
  ProductIngredient,
259
262
  ProductOption,
260
263
  ProductOptionSubOption,
264
+ SendGiftCard,
261
265
  Sessions,
262
266
  SingleProductReview,
263
267
  LogoutButton,
@@ -346,6 +350,10 @@ export {
346
350
  _removeStoreData,
347
351
  _clearStoreData,
348
352
  orderTypeList,
353
+ getTraduction,
354
+ verifyDecimals,
355
+ getOrderStatus,
356
+ getOrderStatuPickUp,
349
357
 
350
358
  // Date Picker
351
359
  DatePickerUI