ordering-ui-external 10.4.1 → 10.5.1

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 (75) hide show
  1. package/_bundles/{0.ordering-ui.62d46eec3c210c5257aa.js → 0.ordering-ui.cc1d13aa04732fde3671.js} +1 -1
  2. package/_bundles/{1.ordering-ui.62d46eec3c210c5257aa.js → 1.ordering-ui.cc1d13aa04732fde3671.js} +1 -1
  3. package/_bundles/{2.ordering-ui.62d46eec3c210c5257aa.js → 2.ordering-ui.cc1d13aa04732fde3671.js} +1 -1
  4. package/_bundles/{4.ordering-ui.62d46eec3c210c5257aa.js → 4.ordering-ui.cc1d13aa04732fde3671.js} +1 -1
  5. package/_bundles/{5.ordering-ui.62d46eec3c210c5257aa.js → 5.ordering-ui.cc1d13aa04732fde3671.js} +1 -1
  6. package/_bundles/{6.ordering-ui.62d46eec3c210c5257aa.js → 6.ordering-ui.cc1d13aa04732fde3671.js} +1 -1
  7. package/_bundles/{7.ordering-ui.62d46eec3c210c5257aa.js → 7.ordering-ui.cc1d13aa04732fde3671.js} +2 -2
  8. package/_bundles/{8.ordering-ui.62d46eec3c210c5257aa.js → 8.ordering-ui.cc1d13aa04732fde3671.js} +1 -1
  9. package/_bundles/{9.ordering-ui.62d46eec3c210c5257aa.js → 9.ordering-ui.cc1d13aa04732fde3671.js} +1 -1
  10. package/_bundles/ordering-ui.cc1d13aa04732fde3671.js +2 -0
  11. package/_modules/themes/callcenterOriginal/src/components/Orders/DeliveriesManager/index.js +4 -2
  12. package/_modules/themes/callcenterOriginal/src/components/Orders/OrdersDashboardControls/index.js +3 -1
  13. package/_modules/themes/callcenterOriginal/src/components/Orders/OrdersManager/index.js +2 -0
  14. package/_modules/themes/five/src/components/BusinessBasicInformation/index.js +8 -7
  15. package/_modules/themes/five/src/components/BusinessItemAccordion/index.js +5 -2
  16. package/_modules/themes/five/src/components/BusinessItemAccordion/styles.js +25 -19
  17. package/_modules/themes/five/src/components/BusinessProductsListing/index.js +2 -0
  18. package/_modules/themes/five/src/components/BusinessesListing/layouts/OriginalBusinessesListing/index.js +133 -31
  19. package/_modules/themes/five/src/components/BusinessesListing/layouts/OriginalBusinessesListing/styles.js +37 -3
  20. package/_modules/themes/five/src/components/Cart/index.js +10 -6
  21. package/_modules/themes/five/src/components/Checkout/index.js +67 -22
  22. package/_modules/themes/five/src/components/GiftCard/GiftCardOrdersList/index.js +53 -0
  23. package/_modules/themes/five/src/components/GiftCard/GiftCardOrdersList/styles.js +16 -0
  24. package/_modules/themes/five/src/components/GiftCard/HorizontalGiftCardOrdersLayout/index.js +69 -0
  25. package/_modules/themes/five/src/components/GiftCard/HorizontalGiftCardOrdersLayout/styles.js +16 -0
  26. package/_modules/themes/five/src/components/GiftCard/SingleGiftCard/index.js +90 -0
  27. package/_modules/themes/five/src/components/GiftCard/SingleGiftCard/styles.js +43 -0
  28. package/_modules/themes/five/src/components/GiftCard/VerticalGiftCardOrdersLayout/index.js +75 -0
  29. package/_modules/themes/five/src/components/GiftCard/VerticalGiftCardOrdersLayout/styles.js +19 -0
  30. package/_modules/themes/five/src/components/MyOrders/index.js +6 -1
  31. package/_modules/themes/five/src/components/OrderProgress/index.js +1 -1
  32. package/_modules/themes/five/src/components/OrdersOption/index.js +1 -0
  33. package/_modules/themes/five/src/components/PhoneAutocomplete/index.js +165 -31
  34. package/_modules/themes/five/src/components/PhoneAutocomplete/styles.js +53 -9
  35. package/_modules/themes/five/src/components/ProductForm/index.js +1 -0
  36. package/_modules/themes/five/src/components/SingleProductCard/layouts/original/styles.js +1 -1
  37. package/_modules/themes/five/src/components/UserFormDetails/index.js +5 -17
  38. package/_modules/themes/five/src/components/UserFormDetails/styles.js +3 -7
  39. package/index-template.js +9 -1
  40. package/package.json +2 -2
  41. package/src/themes/callcenterOriginal/src/components/Orders/DeliveriesManager/index.js +3 -1
  42. package/src/themes/callcenterOriginal/src/components/Orders/OrdersDashboardControls/index.js +5 -1
  43. package/src/themes/callcenterOriginal/src/components/Orders/OrdersManager/index.js +2 -0
  44. package/src/themes/five/src/components/BusinessBasicInformation/index.js +6 -3
  45. package/src/themes/five/src/components/BusinessItemAccordion/index.js +2 -2
  46. package/src/themes/five/src/components/BusinessItemAccordion/styles.js +8 -7
  47. package/src/themes/five/src/components/BusinessProductsListing/index.js +2 -0
  48. package/src/themes/five/src/components/BusinessesListing/layouts/OriginalBusinessesListing/index.js +156 -36
  49. package/src/themes/five/src/components/BusinessesListing/layouts/OriginalBusinessesListing/styles.js +66 -0
  50. package/src/themes/five/src/components/Cart/index.js +7 -4
  51. package/src/themes/five/src/components/Checkout/index.js +61 -35
  52. package/src/themes/five/src/components/GiftCard/GiftCardOrdersList/index.js +50 -0
  53. package/src/themes/five/src/components/GiftCard/GiftCardOrdersList/styles.js +34 -0
  54. package/src/themes/five/src/components/GiftCard/HorizontalGiftCardOrdersLayout/index.js +75 -0
  55. package/src/themes/five/src/components/GiftCard/HorizontalGiftCardOrdersLayout/styles.js +29 -0
  56. package/src/themes/five/src/components/GiftCard/SingleGiftCard/index.js +79 -0
  57. package/src/themes/five/src/components/GiftCard/SingleGiftCard/styles.js +79 -0
  58. package/src/themes/five/src/components/GiftCard/VerticalGiftCardOrdersLayout/index.js +72 -0
  59. package/src/themes/five/src/components/GiftCard/VerticalGiftCardOrdersLayout/styles.js +31 -0
  60. package/src/themes/five/src/components/MyOrders/index.js +6 -1
  61. package/src/themes/five/src/components/OrderProgress/index.js +1 -1
  62. package/src/themes/five/src/components/OrdersOption/index.js +1 -0
  63. package/src/themes/five/src/components/PhoneAutocomplete/index.js +195 -46
  64. package/src/themes/five/src/components/PhoneAutocomplete/styles.js +106 -10
  65. package/src/themes/five/src/components/ProductForm/index.js +1 -0
  66. package/src/themes/five/src/components/SingleProductCard/layouts/original/styles.js +1 -1
  67. package/src/themes/five/src/components/UserFormDetails/index.js +6 -27
  68. package/src/themes/five/src/components/UserFormDetails/styles.js +0 -16
  69. package/template/assets/images/delivery.svg +11 -0
  70. package/template/assets/images/phone-hero-callcenter.png +0 -0
  71. package/template/assets/images/phone.svg +11 -0
  72. package/template/assets/images/pickup.svg +17 -0
  73. package/_bundles/ordering-ui.62d46eec3c210c5257aa.js +0 -2
  74. /package/_bundles/{7.ordering-ui.62d46eec3c210c5257aa.js.LICENSE.txt → 7.ordering-ui.cc1d13aa04732fde3671.js.LICENSE.txt} +0 -0
  75. /package/_bundles/{ordering-ui.62d46eec3c210c5257aa.js.LICENSE.txt → ordering-ui.cc1d13aa04732fde3671.js.LICENSE.txt} +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.