ordering-ui-external 10.4.1 → 10.5.0

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 (73) 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/BusinessItemAccordion/index.js +5 -2
  15. package/_modules/themes/five/src/components/BusinessItemAccordion/styles.js +25 -19
  16. package/_modules/themes/five/src/components/BusinessProductsListing/index.js +2 -0
  17. package/_modules/themes/five/src/components/BusinessesListing/layouts/OriginalBusinessesListing/index.js +133 -31
  18. package/_modules/themes/five/src/components/BusinessesListing/layouts/OriginalBusinessesListing/styles.js +37 -3
  19. package/_modules/themes/five/src/components/Cart/index.js +10 -6
  20. package/_modules/themes/five/src/components/Checkout/index.js +67 -22
  21. package/_modules/themes/five/src/components/GiftCard/GiftCardOrdersList/index.js +53 -0
  22. package/_modules/themes/five/src/components/GiftCard/GiftCardOrdersList/styles.js +16 -0
  23. package/_modules/themes/five/src/components/GiftCard/HorizontalGiftCardOrdersLayout/index.js +69 -0
  24. package/_modules/themes/five/src/components/GiftCard/HorizontalGiftCardOrdersLayout/styles.js +16 -0
  25. package/_modules/themes/five/src/components/GiftCard/SingleGiftCard/index.js +90 -0
  26. package/_modules/themes/five/src/components/GiftCard/SingleGiftCard/styles.js +43 -0
  27. package/_modules/themes/five/src/components/GiftCard/VerticalGiftCardOrdersLayout/index.js +75 -0
  28. package/_modules/themes/five/src/components/GiftCard/VerticalGiftCardOrdersLayout/styles.js +19 -0
  29. package/_modules/themes/five/src/components/MyOrders/index.js +6 -1
  30. package/_modules/themes/five/src/components/OrderProgress/index.js +1 -1
  31. package/_modules/themes/five/src/components/OrdersOption/index.js +1 -0
  32. package/_modules/themes/five/src/components/PhoneAutocomplete/index.js +165 -31
  33. package/_modules/themes/five/src/components/PhoneAutocomplete/styles.js +53 -9
  34. package/_modules/themes/five/src/components/ProductForm/index.js +1 -0
  35. package/_modules/themes/five/src/components/SingleProductCard/layouts/original/styles.js +1 -1
  36. package/_modules/themes/five/src/components/UserFormDetails/index.js +5 -17
  37. package/_modules/themes/five/src/components/UserFormDetails/styles.js +3 -7
  38. package/index-template.js +9 -1
  39. package/package.json +2 -2
  40. package/src/themes/callcenterOriginal/src/components/Orders/DeliveriesManager/index.js +3 -1
  41. package/src/themes/callcenterOriginal/src/components/Orders/OrdersDashboardControls/index.js +5 -1
  42. package/src/themes/callcenterOriginal/src/components/Orders/OrdersManager/index.js +2 -0
  43. package/src/themes/five/src/components/BusinessItemAccordion/index.js +2 -2
  44. package/src/themes/five/src/components/BusinessItemAccordion/styles.js +8 -7
  45. package/src/themes/five/src/components/BusinessProductsListing/index.js +2 -0
  46. package/src/themes/five/src/components/BusinessesListing/layouts/OriginalBusinessesListing/index.js +156 -36
  47. package/src/themes/five/src/components/BusinessesListing/layouts/OriginalBusinessesListing/styles.js +66 -0
  48. package/src/themes/five/src/components/Cart/index.js +7 -4
  49. package/src/themes/five/src/components/Checkout/index.js +61 -35
  50. package/src/themes/five/src/components/GiftCard/GiftCardOrdersList/index.js +50 -0
  51. package/src/themes/five/src/components/GiftCard/GiftCardOrdersList/styles.js +34 -0
  52. package/src/themes/five/src/components/GiftCard/HorizontalGiftCardOrdersLayout/index.js +75 -0
  53. package/src/themes/five/src/components/GiftCard/HorizontalGiftCardOrdersLayout/styles.js +29 -0
  54. package/src/themes/five/src/components/GiftCard/SingleGiftCard/index.js +79 -0
  55. package/src/themes/five/src/components/GiftCard/SingleGiftCard/styles.js +79 -0
  56. package/src/themes/five/src/components/GiftCard/VerticalGiftCardOrdersLayout/index.js +72 -0
  57. package/src/themes/five/src/components/GiftCard/VerticalGiftCardOrdersLayout/styles.js +31 -0
  58. package/src/themes/five/src/components/MyOrders/index.js +6 -1
  59. package/src/themes/five/src/components/OrderProgress/index.js +1 -1
  60. package/src/themes/five/src/components/OrdersOption/index.js +1 -0
  61. package/src/themes/five/src/components/PhoneAutocomplete/index.js +195 -46
  62. package/src/themes/five/src/components/PhoneAutocomplete/styles.js +106 -10
  63. package/src/themes/five/src/components/ProductForm/index.js +1 -0
  64. package/src/themes/five/src/components/SingleProductCard/layouts/original/styles.js +1 -1
  65. package/src/themes/five/src/components/UserFormDetails/index.js +6 -27
  66. package/src/themes/five/src/components/UserFormDetails/styles.js +0 -16
  67. package/template/assets/images/delivery.svg +11 -0
  68. package/template/assets/images/phone-hero-callcenter.png +0 -0
  69. package/template/assets/images/phone.svg +11 -0
  70. package/template/assets/images/pickup.svg +17 -0
  71. package/_bundles/ordering-ui.62d46eec3c210c5257aa.js +0 -2
  72. /package/_bundles/{7.ordering-ui.62d46eec3c210c5257aa.js.LICENSE.txt → 7.ordering-ui.cc1d13aa04732fde3671.js.LICENSE.txt} +0 -0
  73. /package/_bundles/{ordering-ui.62d46eec3c210c5257aa.js.LICENSE.txt → ordering-ui.cc1d13aa04732fde3671.js.LICENSE.txt} +0 -0
@@ -0,0 +1,17 @@
1
+ <svg width="26" height="23" viewBox="0 0 26 23" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_11706_62040)">
3
+ <mask id="mask0_11706_62040" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="26" height="23">
4
+ <path d="M26 0H0V23H26V0Z" fill="white"/>
5
+ </mask>
6
+ <g mask="url(#mask0_11706_62040)">
7
+ <path d="M12.0216 15.7951V11.8317C12.0216 11.7437 11.9872 11.6593 11.9261 11.5971C11.8649 11.5349 11.7819 11.5 11.6954 11.5C9.70324 11.5 9.42394 14.9755 9.41302 15.1234C9.40818 15.1891 9.42265 15.2547 9.4546 15.3119C9.48655 15.3692 9.53452 15.4155 9.59242 15.4449L10.0645 15.6849V15.7952L9.81171 18.366C9.7981 18.5043 9.81315 18.644 9.85588 18.7761C9.89862 18.9081 9.96809 19.0296 10.0598 19.1326C10.1516 19.2357 10.2635 19.3181 10.3885 19.3745C10.5134 19.4309 10.6486 19.46 10.7854 19.46H11.3007C11.4374 19.46 11.5726 19.4309 11.6976 19.3745C11.8226 19.3181 11.9345 19.2357 12.0263 19.1326C12.118 19.0296 12.1875 18.9081 12.2302 18.7761C12.2729 18.644 12.288 18.5043 12.2744 18.366L12.0216 15.7951ZM10.0869 14.9547C10.1434 14.4896 10.244 14.0312 10.3872 13.5858C10.6379 12.8358 10.9672 12.3794 11.3693 12.2238V15.48H10.7168C10.7168 15.4184 10.7 15.358 10.6681 15.3057C10.6363 15.2533 10.5907 15.2109 10.5365 15.1834L10.0869 14.9547ZM11.5425 18.6876C11.512 18.7221 11.4748 18.7496 11.4331 18.7684C11.3914 18.7872 11.3463 18.7968 11.3007 18.7966H10.7854C10.7398 18.7966 10.6947 18.7868 10.653 18.768C10.6113 18.7492 10.574 18.7218 10.5434 18.6874C10.5128 18.653 10.4897 18.6125 10.4755 18.5685C10.4612 18.5244 10.4562 18.4778 10.4608 18.4317L10.6859 16.1432H11.4002L11.6253 18.4317C11.6301 18.4779 11.6252 18.5245 11.611 18.5686C11.5967 18.6127 11.5734 18.6532 11.5426 18.6875L11.5425 18.6876Z" fill="#2C7BE5"/>
8
+ <path d="M22.4596 1.21837H19.8498C19.807 1.21837 19.7646 1.22695 19.725 1.24362C19.6854 1.26028 19.6495 1.28472 19.6192 1.31551C19.5889 1.34631 19.5649 1.38288 19.5485 1.42312C19.5321 1.46336 19.5236 1.50649 19.5236 1.55004V1.88172H12.7138C12.4189 1.88192 12.1287 1.95714 11.8698 2.10051L8.67628 3.87178H4.84528C4.29658 3.87178 3.86675 4.45449 3.86675 5.19843C3.86675 5.89276 4.24115 6.44624 4.73728 6.51725L3.26667 11.5792C3.26537 11.5837 3.26412 11.5883 3.26298 11.5928C3.23069 11.7243 3.21436 11.8594 3.21436 11.995V21.45C3.21436 21.5379 3.24872 21.6223 3.3099 21.6845C3.37107 21.7467 3.45404 21.7816 3.54055 21.7816H18.2189C18.2617 21.7816 18.3042 21.7731 18.3437 21.7564C18.3833 21.7397 18.4193 21.7153 18.4496 21.6845C18.4798 21.6537 18.5039 21.6171 18.5203 21.5769C18.5367 21.5366 18.5451 21.4935 18.5451 21.45V12.0226C18.5451 11.8641 18.5228 11.7064 18.4787 11.5544L17.1197 6.85628C17.5623 6.85296 17.9875 6.68069 18.311 6.37362C18.6345 6.06654 18.8327 5.64707 18.8664 5.19837H19.5236V5.86167C19.5236 5.90523 19.5321 5.94836 19.5485 5.9886C19.5649 6.02884 19.5889 6.0654 19.6192 6.0962C19.6495 6.127 19.6854 6.15143 19.725 6.1681C19.7646 6.18477 19.807 6.19335 19.8498 6.19335H22.4596C22.5461 6.19335 22.629 6.1584 22.6902 6.0962C22.7514 6.034 22.7857 5.94964 22.7857 5.86167V1.55004C22.7857 1.46208 22.7514 1.37772 22.6902 1.31551C22.629 1.25331 22.5461 1.21837 22.4596 1.21837ZM4.51956 5.19837C4.51956 4.79347 4.71274 4.53502 4.84575 4.53502H14.1696L12.8648 5.86167H4.84528C4.71227 5.86167 4.51909 5.60328 4.51909 5.19837H4.51956ZM14.6799 11.5929C14.6477 11.7244 14.6313 11.8595 14.6313 11.9951V21.1183H3.86732V11.995C3.86734 11.9158 3.87663 11.8369 3.89498 11.76L5.41578 6.52502H12.2747C12.1043 6.81755 12.0396 7.16132 12.0917 7.49713C12.1438 7.83293 12.3094 8.13977 12.56 8.36479C12.8107 8.58981 13.1306 8.71894 13.4648 8.72993C13.7989 8.74093 14.1264 8.63311 14.3908 8.42504L15.9601 7.18388L14.6832 11.5794C14.6819 11.5838 14.6807 11.5884 14.6795 11.5928L14.6799 11.5929ZM16.5883 20.2607L17.4318 21.1183H15.7449L16.5883 20.2607ZM17.8533 11.7421C17.8797 11.8332 17.8931 11.9278 17.8931 12.0228V20.6494L16.9145 19.6544V12.4953C16.9145 12.4074 16.8802 12.323 16.819 12.2608C16.7578 12.1986 16.6749 12.1637 16.5883 12.1637C16.5018 12.1637 16.4189 12.1986 16.3577 12.2608C16.2965 12.323 16.2621 12.4074 16.2621 12.4953V19.6544L15.2832 20.6494V11.995C15.2833 11.9158 15.2926 11.8369 15.3109 11.76L16.5871 7.36619L17.8533 11.7421ZM19.5236 4.53502H18.7397C18.6016 4.53519 18.4692 4.59103 18.3716 4.6903C18.274 4.78957 18.2191 4.92416 18.2189 5.06455C18.2186 5.36382 18.1015 5.65074 17.8934 5.86236C17.6853 6.07398 17.4031 6.19301 17.1088 6.19335H16.3069C16.2052 6.19357 16.1065 6.22804 16.0261 6.29138L13.9902 7.90159C13.8328 8.02621 13.6345 8.08509 13.4359 8.06624C13.2372 8.04739 13.0531 7.95223 12.921 7.80014C12.789 7.64806 12.7189 7.4505 12.7252 7.24772C12.7314 7.04494 12.8134 6.85222 12.9546 6.70881L15.1877 4.43821C15.2333 4.39183 15.2644 4.33273 15.277 4.26837C15.2897 4.20401 15.2832 4.1373 15.2585 4.07667C15.2338 4.01604 15.192 3.96422 15.1383 3.92777C15.0847 3.89131 15.0216 3.87186 14.957 3.87188H10.0387L12.1822 2.68297C12.3453 2.59267 12.5281 2.5453 12.7138 2.54518H19.5236V4.53502ZM22.1331 5.53H20.176V1.88172H22.1332L22.1331 5.53Z" fill="#2C7BE5"/>
9
+ <path d="M9.08559 11.8317C9.08559 11.7437 9.05122 11.6593 8.99005 11.5971C8.92887 11.5349 8.8459 11.5 8.75939 11.5C8.67288 11.5 8.58991 11.5349 8.52873 11.5971C8.46756 11.6593 8.43319 11.7437 8.43319 11.8317V12.8267H7.78085V11.8317C7.78085 11.7881 7.77242 11.745 7.75602 11.7047C7.73963 11.6645 7.7156 11.6279 7.68531 11.5971C7.65502 11.5663 7.61906 11.5419 7.57949 11.5252C7.53991 11.5086 7.4975 11.5 7.45466 11.5C7.41182 11.5 7.3694 11.5086 7.32983 11.5252C7.29025 11.5419 7.25429 11.5663 7.224 11.5971C7.19371 11.6279 7.16969 11.6645 7.15329 11.7047C7.1369 11.745 7.12846 11.7881 7.12846 11.8317V12.8267H6.47612V11.8317C6.47612 11.7437 6.44176 11.6593 6.38058 11.5971C6.31941 11.5349 6.23644 11.5 6.14993 11.5C6.06341 11.5 5.98044 11.5349 5.91927 11.5971C5.8581 11.6593 5.82373 11.7437 5.82373 11.8317V13.1583H5.82435C5.82413 13.2098 5.83572 13.2606 5.85821 13.3067L6.47056 14.552L6.20068 18.3941C6.1911 18.5304 6.20924 18.6672 6.25395 18.7961C6.29867 18.9249 6.36901 19.043 6.46058 19.143C6.55216 19.243 6.66301 19.3228 6.78623 19.3773C6.90945 19.4318 7.04239 19.46 7.17677 19.46H7.7326C7.86698 19.46 7.99992 19.4318 8.12314 19.3773C8.24636 19.3228 8.35721 19.243 8.44879 19.143C8.54036 19.043 8.6107 18.9249 8.65542 18.7961C8.70013 18.6672 8.71827 18.5304 8.70869 18.3941L8.43881 14.552L9.05116 13.3067C9.07365 13.2606 9.08524 13.2098 9.08501 13.1583H9.08564L9.08559 11.8317ZM8.23164 13.49L7.90545 14.1534H7.00413L6.67793 13.49H8.23164ZM7.97133 18.6908C7.94093 18.7243 7.904 18.751 7.86289 18.7692C7.82178 18.7874 7.77739 18.7967 7.73255 18.7966H7.17677C7.13198 18.7966 7.08767 18.7872 7.0466 18.769C7.00553 18.7508 6.96858 18.7242 6.93806 18.6909C6.90754 18.6576 6.88409 18.6182 6.86918 18.5753C6.85427 18.5323 6.84822 18.4867 6.85141 18.4413L7.10621 14.8165H7.80342L8.05822 18.4413C8.06156 18.4867 8.05556 18.5324 8.0406 18.5753C8.02564 18.6183 8.00205 18.6576 7.97133 18.6908Z" fill="#2C7BE5"/>
10
+ </g>
11
+ </g>
12
+ <defs>
13
+ <clipPath id="clip0_11706_62040">
14
+ <rect width="26" height="23" fill="white"/>
15
+ </clipPath>
16
+ </defs>
17
+ </svg>