@shopgate/engage 7.30.0-alpha.9 → 7.30.0-beta.2

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 (559) hide show
  1. package/a11y/components/FocusTrap/index.js +1 -1
  2. package/a11y/components/LiveMessage/index.js +8 -6
  3. package/a11y/components/LiveMessenger/index.js +12 -9
  4. package/a11y/components/Navigation/index.js +18 -14
  5. package/a11y/components/Section/index.js +19 -12
  6. package/account/components/Account/Account.js +49 -38
  7. package/account/components/Profile/Profile.js +10 -7
  8. package/account/components/Profile/Profile.provider.js +5 -3
  9. package/account/components/Profile/ProfileAddressBook.js +25 -19
  10. package/account/components/Profile/ProfileAddressCard.js +70 -50
  11. package/account/components/Profile/ProfileForm.js +27 -22
  12. package/account/components/Profile/ProfileHeader.js +10 -7
  13. package/account/components/ProfileContact/ProfileContact.js +21 -17
  14. package/account/helper/form.js +9 -9
  15. package/back-in-stock/components/BackInStockButton/index.js +28 -21
  16. package/back-in-stock/components/CharacteristicsButton/index.js +2 -1
  17. package/back-in-stock/components/ProductInfoBackInStockButton/index.js +11 -9
  18. package/back-in-stock/components/Subscriptions/components/List/index.js +30 -24
  19. package/back-in-stock/components/Subscriptions/components/Subscription/index.js +75 -64
  20. package/back-in-stock/components/Subscriptions/index.js +4 -1
  21. package/back-in-stock/providers/BackInStockSubscriptionsProvider.js +5 -3
  22. package/cart/cart.helpers.js +3 -3
  23. package/cart/components/CartHeaderWide/CartHeaderWide.js +5 -3
  24. package/cart/components/CartItem/CartItem.js +24 -20
  25. package/cart/components/CartItem/CartItemCoupon.js +59 -45
  26. package/cart/components/CartItem/CartItemCouponCode.js +5 -3
  27. package/cart/components/CartItem/CartItemCouponDelete.js +5 -3
  28. package/cart/components/CartItem/CartItemCouponFreeShipping.js +4 -1
  29. package/cart/components/CartItem/CartItemCouponIcon.js +7 -6
  30. package/cart/components/CartItem/CartItemCouponLayout.js +44 -35
  31. package/cart/components/CartItem/CartItemCouponPrice.js +6 -4
  32. package/cart/components/CartItem/CartItemCouponTitle.js +5 -3
  33. package/cart/components/CartItem/CartItemProduct.js +24 -17
  34. package/cart/components/CartItem/CartItemProductLayout.js +105 -85
  35. package/cart/components/CartItem/CartItemProductLayoutWide.js +100 -87
  36. package/cart/components/CartItem/CartItemProductLayoutWideFulfillmentLabel.js +5 -3
  37. package/cart/components/CartItem/CartItemProductLayoutWideOrderDetails.js +18 -12
  38. package/cart/components/CartItem/CartItemProductLayoutWideRemoveItem.js +7 -5
  39. package/cart/components/CartItem/CartItemProductOrderDetails.js +54 -40
  40. package/cart/components/CartItem/CartItemProductPriceCaption.js +7 -5
  41. package/cart/components/CartItem/CartItemProductPriceList.js +30 -27
  42. package/cart/components/CartItem/CartItemProductPriceListPromotion.js +37 -32
  43. package/cart/components/CartItem/CartItemProductProvider.js +7 -3
  44. package/cart/components/CartItem/CartItemProductProviderLegacy.js +22 -14
  45. package/cart/components/CartItem/CartItemProductTitle.js +57 -45
  46. package/cart/components/CartItem/CartItemProvider.js +6 -4
  47. package/cart/components/CartItem/CartItemQuantityPicker.js +49 -55
  48. package/cart/components/CartItem/CartItemSubstitution.js +11 -8
  49. package/cart/components/CartItems/CartItemCard.js +10 -6
  50. package/cart/components/CartItems/CartItemCardReservation.js +28 -22
  51. package/cart/components/CartItems/CartItemCardReservationAccordion.js +20 -15
  52. package/cart/components/CartItems/CartItemCardReservationLabel.js +28 -20
  53. package/cart/components/CartItems/CartItemCardReservationLabelChangeStore.js +7 -5
  54. package/cart/components/CartItems/CartItemGroup.js +7 -4
  55. package/cart/components/CartItems/CartItemGroupReservation.js +25 -19
  56. package/cart/components/CartItems/CartItemGroupReservationLabel.js +13 -7
  57. package/cart/components/CartItems/CartItemGroupShipping.js +15 -7
  58. package/cart/components/CartItems/CartItems.js +56 -45
  59. package/cart/components/CartItems/CartItemsHeaderWide.js +48 -37
  60. package/cart/components/CartItems/CartItemsSubstitution.js +18 -12
  61. package/cart/components/CartSummaryWide/CartSummaryWide.js +34 -30
  62. package/cart/components/CartSummaryWide/CartSummaryWideCheckoutButton.js +22 -17
  63. package/cart/components/CartSummaryWide/CartSummaryWideFooter.js +2 -1
  64. package/cart/components/PaymentBar/PaymentBar.js +2 -1
  65. package/cart/components/PaymentBar/PaymentBarAppliedPromotions.js +18 -17
  66. package/cart/components/PaymentBar/PaymentBarCheckoutButton.js +19 -15
  67. package/cart/components/PaymentBar/PaymentBarContent.js +34 -27
  68. package/cart/components/PaymentBar/PaymentBarDiscounts.js +24 -22
  69. package/cart/components/PaymentBar/PaymentBarGrandTotal.js +18 -15
  70. package/cart/components/PaymentBar/PaymentBarPromotionCouponMessages.js +15 -11
  71. package/cart/components/PaymentBar/PaymentBarPromotionCoupons.js +40 -36
  72. package/cart/components/PaymentBar/PaymentBarPromotionalText.js +22 -17
  73. package/cart/components/PaymentBar/PaymentBarReserveButton.js +15 -12
  74. package/cart/components/PaymentBar/PaymentBarShippingCost.js +20 -17
  75. package/cart/components/PaymentBar/PaymentBarSubTotal.js +18 -15
  76. package/cart/components/PaymentBar/PaymentBarTax.js +20 -17
  77. package/cart/components/Substitution/index.js +21 -16
  78. package/cart/components/SupplementalContent/SupplementalContent.js +2 -1
  79. package/category/components/CategoryImage/index.js +4 -4
  80. package/category/components/CategoryList/index.js +60 -57
  81. package/checkout/components/AddressBook/AddressBook.js +6 -1
  82. package/checkout/components/AddressBook/AddressList.js +31 -24
  83. package/checkout/components/AddressBookContact/AddressBookContact.js +13 -6
  84. package/checkout/components/Checkout/Checkout.js +29 -21
  85. package/checkout/components/Checkout/CheckoutActions.js +17 -12
  86. package/checkout/components/Checkout/CheckoutAddress.js +40 -16
  87. package/checkout/components/Checkout/CheckoutHeader.js +17 -12
  88. package/checkout/components/Checkout/CheckoutPickupContactForm.js +19 -15
  89. package/checkout/components/Checkout/CheckoutSection.js +73 -52
  90. package/checkout/components/Checkout/CheckoutSectionInfo.js +6 -4
  91. package/checkout/components/Checkout/CheckoutSectionMessages.js +16 -14
  92. package/checkout/components/Checkout/CheckoutSummary.js +18 -13
  93. package/checkout/components/CheckoutConfirmation/CheckoutConfirmation.js +95 -79
  94. package/checkout/components/CheckoutConfirmation/CheckoutConfirmationBilledTo.js +6 -5
  95. package/checkout/components/CheckoutConfirmation/CheckoutConfirmationOrderContact.js +2 -1
  96. package/checkout/components/CheckoutConfirmation/CheckoutConfirmationOrderSummary.js +13 -9
  97. package/checkout/components/CheckoutConfirmation/CheckoutConfirmationPickUpContact.js +2 -1
  98. package/checkout/components/CheckoutConfirmation/CheckoutConfirmationPickupNotes.js +2 -1
  99. package/checkout/components/CheckoutConfirmation/CheckoutConfirmationSection.js +59 -44
  100. package/checkout/components/CheckoutConfirmation/CheckoutConfirmationShippedTo.js +4 -3
  101. package/checkout/components/GuestCheckout/GuestCheckout.js +29 -22
  102. package/checkout/components/GuestCheckout/GuestCheckoutOptIn.js +17 -13
  103. package/checkout/components/GuestCheckout/GuestCheckoutPickup.js +16 -7
  104. package/checkout/components/GuestCheckout/GuestCheckoutPickupNotes.js +16 -13
  105. package/checkout/components/PaymentMethodButton/PaymentMethodButton.js +5 -3
  106. package/checkout/components/ResponsiveBackButton/ResponsiveBackButton.js +15 -12
  107. package/checkout/components/ShippingMethods/ShippingMethod.js +22 -15
  108. package/checkout/components/ShippingMethods/ShippingMethods.js +49 -41
  109. package/checkout/components/SupplementalContent/SupplementalContent.js +2 -1
  110. package/checkout/helpers/index.js +2 -2
  111. package/checkout/paymentMethods/index.js +33 -28
  112. package/checkout/paymentMethods/paypal/PaypalButton.js +7 -2
  113. package/checkout/paymentMethods/paypal/PaypalButtonApp.js +9 -5
  114. package/checkout/paymentMethods/paypal/PaypalButtonWeb.js +14 -11
  115. package/checkout/paymentMethods/paypal/PaypalPayButton.js +9 -5
  116. package/checkout/paymentMethods/stripe/StripeButton.js +33 -25
  117. package/checkout/paymentMethods/stripe/StripeCreditCard.js +70 -60
  118. package/checkout/paymentMethods/stripe/StripePayButton.js +5 -3
  119. package/checkout/paymentMethods/stripe/StripeProvider.js +11 -10
  120. package/checkout/providers/AddressBookProvider.js +5 -3
  121. package/checkout/providers/CheckoutProvider.js +14 -15
  122. package/checkout/selectors/guestCheckout.js +1 -1
  123. package/components/BrandingColorBanner/BrandingColorBanner.js +7 -5
  124. package/components/ChipLayout/index.js +64 -49
  125. package/components/ChipLayout/spec.js +16 -8
  126. package/components/ConnectedReactPortal/index.js +19 -21
  127. package/components/Footer/Footer.js +9 -6
  128. package/components/Form/Builder/Builder.js +85 -74
  129. package/components/Form/Builder/ElementCheckbox.js +19 -17
  130. package/components/Form/Builder/ElementMultiSelect.js +42 -38
  131. package/components/Form/Builder/ElementPhoneNumber.js +39 -36
  132. package/components/Form/Builder/ElementRadio.js +25 -23
  133. package/components/Form/Builder/ElementSelect.js +25 -23
  134. package/components/Form/Builder/ElementText.js +22 -20
  135. package/components/Form/Builder/FormHelper.js +18 -15
  136. package/components/Form/Builder/classes/ActionListener.js +400 -401
  137. package/components/Form/Form.js +23 -15
  138. package/components/IntersectionVisibility/index.js +23 -17
  139. package/components/Logo/index.js +9 -7
  140. package/components/Logo/spec.js +2 -1
  141. package/components/Menu/components/Item/index.js +12 -8
  142. package/components/Menu/components/Position/index.js +20 -12
  143. package/components/Menu/index.js +60 -60
  144. package/components/MessageBar/MessageBar.js +35 -31
  145. package/components/NavigationHandler/index.js +14 -8
  146. package/components/NavigationHandler/spec.js +9 -3
  147. package/components/Picker/components/Button/index.js +11 -7
  148. package/components/Picker/components/List/index.js +19 -16
  149. package/components/Picker/components/Modal/index.js +34 -25
  150. package/components/Picker/index.js +44 -33
  151. package/components/Picker/spec.js +4 -1
  152. package/components/PickerUtilize/components/Button/index.js +11 -7
  153. package/components/PickerUtilize/index.js +56 -43
  154. package/components/PickerUtilize/spec.js +2 -1
  155. package/components/QuantityInput/QuantityInput.js +5 -5
  156. package/components/QuantityLabel/QuantityLabel.js +5 -3
  157. package/components/Radio/Radio.js +28 -24
  158. package/components/RadioCard/RadioCard.js +26 -22
  159. package/components/RadioGroup/RadioGroup.js +16 -12
  160. package/components/RangeSlider/components/Handle/index.js +8 -6
  161. package/components/RangeSlider/index.js +108 -114
  162. package/components/RangeSlider/spec.js +9 -6
  163. package/components/ScrollHeader/index.js +5 -3
  164. package/components/SheetDrawer/index.js +4 -3
  165. package/components/SheetList/components/Item/index.js +67 -47
  166. package/components/SheetList/components/Item/spec.js +18 -13
  167. package/components/SheetList/index.js +40 -30
  168. package/components/SheetList/spec.js +20 -14
  169. package/components/SheetList/style.js +1 -1
  170. package/components/SideNavigation/SideNavigation.js +7 -5
  171. package/components/SideNavigation/SideNavigationCategories.js +14 -11
  172. package/components/SideNavigation/SideNavigationCategoriesItem.js +17 -13
  173. package/components/SideNavigation/SideNavigationCategoriesItemChildren.js +7 -5
  174. package/components/SideNavigation/SideNavigationContent.js +13 -8
  175. package/components/SideNavigation/SideNavigationItem.js +24 -19
  176. package/components/SideNavigation/SideNavigationLinks.js +36 -30
  177. package/components/SideNavigation/SideNavigationLinksLegal.js +4 -5
  178. package/components/SideNavigation/SideNavigationLinksQuicklinks.js +3 -3
  179. package/components/SideNavigation/SideNavigationNestedItem.js +11 -8
  180. package/components/SideNavigation/SideNavigationProvider.js +5 -3
  181. package/components/SnackBarContainer/index.js +9 -2
  182. package/components/Switch/index.js +20 -14
  183. package/components/Tabs/TabContext.js +5 -3
  184. package/components/Tabs/components/Tab.js +8 -5
  185. package/components/Tabs/components/TabIndicator.js +5 -4
  186. package/components/Tabs/components/TabPanel.js +5 -3
  187. package/components/Tabs/components/Tabs.js +15 -11
  188. package/components/Tabs/useEventCallback.js +1 -1
  189. package/components/TextLink/TextLink.js +4 -3
  190. package/components/TimeBoundary/index.js +31 -22
  191. package/components/TimeBoundary/spec.js +13 -9
  192. package/components/Toggle/index.js +21 -18
  193. package/components/Typography/Typography.js +5 -5
  194. package/components/VideoPlayer/index.js +45 -35
  195. package/components/View/components/Above/index.js +17 -14
  196. package/components/View/components/Below/index.js +17 -14
  197. package/components/View/components/Content/components/ParallaxProvider/index.js +8 -5
  198. package/components/View/components/Content/index.js +102 -83
  199. package/components/View/index.js +28 -19
  200. package/components/View/provider.js +61 -50
  201. package/core/classes/GeolocationRequest.js +9 -7
  202. package/core/classes/GeolocationRequestApp.js +7 -5
  203. package/core/classes/GeolocationRequestBrowser.js +7 -4
  204. package/core/collections/AppInitialization.js +11 -10
  205. package/core/config/ThemeConfigResolver.js +21 -19
  206. package/core/helpers/errorBehavior.js +4 -4
  207. package/core/hocs/withApp.js +7 -4
  208. package/core/hocs/withCurrentProduct.js +5 -2
  209. package/core/hocs/withForwardedRef.js +5 -2
  210. package/core/hocs/withNavigation.js +5 -2
  211. package/core/hocs/withRoute.js +7 -2
  212. package/core/hocs/withTheme.js +13 -8
  213. package/core/hocs/withThemeResources.js +10 -7
  214. package/core/hocs/withWidgetSettings.js +5 -4
  215. package/core/hocs/withWidgetStyles.js +5 -4
  216. package/core/hooks/events/appEvents.d.ts +83 -0
  217. package/core/hooks/events/appEvents.js +125 -0
  218. package/core/hooks/events/index.js +1 -0
  219. package/core/hooks/index.js +1 -0
  220. package/core/hooks/useLocalStorage.d.ts +8 -0
  221. package/core/hooks/useLocalStorage.js +38 -0
  222. package/core/providers/AppProvider.js +38 -27
  223. package/core/providers/ThemeResourcesProvider.js +8 -5
  224. package/development/components/ClientInformation/ClientInformation.js +18 -13
  225. package/development/components/DevelopmentSettings/DevelopmentSettings.js +18 -14
  226. package/development/components/DevelopmentTools/DevelopmentTools.js +6 -1
  227. package/development/components/SimulatedInsets/SimulatedInsetBottom.js +9 -8
  228. package/development/components/SimulatedInsets/SimulatedInsetTop.js +15 -12
  229. package/development/components/SimulatedInsets/SimulatedInsets.js +12 -8
  230. package/favorites/components/CommentDialog/CommentDialog.js +29 -27
  231. package/favorites/components/FavoriteButtonWide/FavoriteButtonWide.js +5 -3
  232. package/favorites/components/Item/Item.js +120 -100
  233. package/favorites/components/Item/ItemCharacteristics.js +10 -7
  234. package/favorites/components/Item/ItemNotes.js +33 -22
  235. package/favorites/components/Item/ItemQuantity.js +14 -12
  236. package/favorites/components/ItemFulfillmentMethod/ItemFulfillmentMethod.js +16 -12
  237. package/favorites/components/List/List.js +32 -27
  238. package/favorites/components/List/ListAccordionHeader.js +14 -8
  239. package/favorites/components/List/ListAccordionLabel.js +5 -3
  240. package/favorites/components/List/ListContent.js +45 -40
  241. package/favorites/components/List/ListItemWrapper.js +22 -19
  242. package/favorites/components/ListChooser/ListChooser.js +17 -14
  243. package/favorites/components/ListChooser/ListChooserItem.js +13 -9
  244. package/favorites/components/Lists/Lists.js +39 -35
  245. package/favorites/components/Lists/ListsModal.js +29 -19
  246. package/favorites/components/RemoveButton/RemoveButton.js +8 -5
  247. package/filter/components/FilterItem/index.js +5 -3
  248. package/filter/components/FilterItem/spec.js +6 -1
  249. package/filter/components/FilterPageContent/components/ApplyButton/index.js +21 -17
  250. package/filter/components/FilterPageContent/components/ApplyButton/spec.js +8 -7
  251. package/filter/components/FilterPageContent/components/ResetButton/index.js +17 -13
  252. package/filter/components/FilterPageContent/components/ResetButton/spec.js +4 -3
  253. package/filter/components/FilterPageContent/components/Selector/components/Selected/index.js +25 -13
  254. package/filter/components/FilterPageContent/components/Selector/components/Selected/spec.js +3 -2
  255. package/filter/components/FilterPageContent/components/Selector/components/Toggle/index.js +38 -24
  256. package/filter/components/FilterPageContent/components/Selector/components/Toggle/spec.js +5 -4
  257. package/filter/components/FilterPageContent/components/Selector/components/ValueButton/index.js +31 -19
  258. package/filter/components/FilterPageContent/components/Selector/components/ValueButton/spec.js +4 -3
  259. package/filter/components/FilterPageContent/components/Selector/index.js +58 -43
  260. package/filter/components/FilterPageContent/components/Selector/spec.js +2 -1
  261. package/filter/components/FilterPageContent/index.js +44 -42
  262. package/filter/components/FilterPageContentWithProvider/index.js +7 -5
  263. package/filter/components/PriceSlider/components/Label/index.js +80 -71
  264. package/filter/components/PriceSlider/components/Label/spec.js +2 -1
  265. package/filter/components/PriceSlider/index.js +39 -29
  266. package/filter/components/PriceSlider/spec.js +3 -2
  267. package/filter/hocs/withSort.js +7 -2
  268. package/filter/providers/FilterPageProvider.js +6 -4
  269. package/filter/providers/SortProvider.js +5 -3
  270. package/locations/components/Cart/CartChangeFulfillmentMethod.js +5 -4
  271. package/locations/components/Cart/CartContextMenuChangeFulfillment.js +5 -1
  272. package/locations/components/Cart/CartContextMenuChangeFulfillmentContent.js +10 -8
  273. package/locations/components/Cart/CartContextMenuItemChangeFulfillment.js +7 -5
  274. package/locations/components/Cart/CartContextMenuItemChangeLocation.js +7 -5
  275. package/locations/components/Cart/CartItemProductChangeLocation.js +2 -1
  276. package/locations/components/ChangeLocationButton/ChangeLocationButton.js +15 -12
  277. package/locations/components/FulfillmentPath/FulfillmentPath.js +38 -34
  278. package/locations/components/FulfillmentPath/FulfillmentPathItem.js +10 -6
  279. package/locations/components/FulfillmentPathSelector/FulfillmentPathSelector.js +13 -9
  280. package/locations/components/FulfillmentSelector/FulfillmentSelector.js +33 -26
  281. package/locations/components/FulfillmentSelector/FulfillmentSelectorAlternativeLocation.js +44 -34
  282. package/locations/components/FulfillmentSelector/FulfillmentSelectorBOPIS.js +5 -3
  283. package/locations/components/FulfillmentSelector/FulfillmentSelectorDirectShip.js +25 -17
  284. package/locations/components/FulfillmentSelector/FulfillmentSelectorHeader.js +8 -3
  285. package/locations/components/FulfillmentSelector/FulfillmentSelectorImpossibleError.js +2 -1
  286. package/locations/components/FulfillmentSelector/FulfillmentSelectorItem.js +29 -20
  287. package/locations/components/FulfillmentSelector/FulfillmentSelectorLocation.js +75 -57
  288. package/locations/components/FulfillmentSelector/FulfillmentSelectorLocationMethodNotAvailable.js +2 -1
  289. package/locations/components/FulfillmentSelector/FulfillmentSelectorROPIS.js +5 -3
  290. package/locations/components/FulfillmentSheet/FulfillmentSheet.js +7 -3
  291. package/locations/components/FulfillmentSheet/FulfillmentSheetContent.js +8 -5
  292. package/locations/components/FulfillmentSlotSwitcher/FulfillmentSlotDialog.js +53 -42
  293. package/locations/components/FulfillmentSlotSwitcher/FulfillmentSlotProvider.js +2 -2
  294. package/locations/components/FulfillmentSlotSwitcher/FulfillmentSlotSwitcher.js +12 -10
  295. package/locations/components/FulfillmentSlotSwitcher/FulfillmentSlotSwitcherBar.js +23 -17
  296. package/locations/components/FulfillmentSlotSwitcher/FulfillmentSlotSwitcherDefault.js +22 -15
  297. package/locations/components/GlobalLocationSelector/GlobalLocationSelector.js +2 -1
  298. package/locations/components/GlobalLocationSwitcher/GlobalLocationSwitcher.js +23 -20
  299. package/locations/components/GlobalLocationSwitcher/GlobalLocationSwitcherBar.js +27 -20
  300. package/locations/components/GlobalLocationSwitcher/GlobalLocationSwitcherDefault.js +22 -15
  301. package/locations/components/ReservationResponses/ReservationError.js +11 -7
  302. package/locations/components/ReservationResponses/ReservationSuccess.js +17 -11
  303. package/locations/components/ReserveForm/ReserveForm.js +99 -89
  304. package/locations/components/ReserveForm/ReserveFormPhone.js +21 -19
  305. package/locations/components/StockInfo/StockInfo.js +15 -12
  306. package/locations/components/StockInfo/StockInfoInventory.js +2 -1
  307. package/locations/components/StockInfoLists/index.js +24 -19
  308. package/locations/components/StoreDetails/components/FindMoreStores.js +37 -29
  309. package/locations/components/StoreDetails/components/GetDirectionsButton.js +13 -9
  310. package/locations/components/StoreDetails/components/StoreDetails.js +106 -67
  311. package/locations/components/StoreDetails/components/StoreFinderMap.js +23 -21
  312. package/locations/components/StoreDetails/components/StoreLocationMap.js +11 -7
  313. package/locations/components/StoreDetails/components/StoresNearby.js +16 -8
  314. package/locations/components/StoreDetails/components/StoresNearbyListItem.js +63 -47
  315. package/locations/components/StoreDetails/index.js +7 -3
  316. package/locations/components/StoreFinder/StoreFinder.js +16 -11
  317. package/locations/components/StoreFinder/StoreFinderGetDirectionsButton.js +9 -6
  318. package/locations/components/StoreFinder/StoreFinderLocation.js +5 -3
  319. package/locations/components/StoreFinder/StoreFinderLocationDetails.js +11 -8
  320. package/locations/components/StoreFinder/StoreFinderLocationHeader.js +45 -32
  321. package/locations/components/StoreFinder/StoreFinderLocationHeaderPhoneNumber.js +12 -8
  322. package/locations/components/StoreFinder/StoreFinderLocations.js +14 -10
  323. package/locations/components/StoreFinder/StoreFinderSearch.js +7 -5
  324. package/locations/components/StoreFinder/StoreFinderSelectLocationButton.js +10 -7
  325. package/locations/components/StoreFinder/StoreFinderStoreInfoButton.js +10 -7
  326. package/locations/components/StoreList/StoreAddress.js +33 -21
  327. package/locations/components/StoreList/StoreAddressShort.js +31 -21
  328. package/locations/components/StoreList/StoreCard.js +4 -1
  329. package/locations/components/StoreList/StoreDetails.js +13 -11
  330. package/locations/components/StoreList/StoreDetailsLine.js +17 -13
  331. package/locations/components/StoreList/StoreDistance.js +5 -3
  332. package/locations/components/StoreList/StoreHeader.js +46 -33
  333. package/locations/components/StoreList/StoreHoursToday.js +7 -5
  334. package/locations/components/StoreList/StoreList.js +4 -1
  335. package/locations/components/StoreList/StoreListLocations.js +18 -13
  336. package/locations/components/StoreList/StoreListProduct.js +20 -14
  337. package/locations/components/StoreList/StoreListProductInfo.js +17 -13
  338. package/locations/components/StoreList/StoreListProductName.js +11 -7
  339. package/locations/components/StoreList/StoreListSearch.js +66 -55
  340. package/locations/components/StoreList/StoreListSearchRadius.js +19 -16
  341. package/locations/components/StoreList/StoreOpeningHours.js +19 -13
  342. package/locations/components/StoreList/StoreOpeningHoursLine.js +12 -8
  343. package/locations/components/StoreList/StorePhoneNumber.js +17 -13
  344. package/locations/components/StoreList/StoreSelectLocationButton.js +10 -7
  345. package/locations/providers/FulfillmentProvider.connector.js +6 -6
  346. package/locations/providers/FulfillmentProvider.js +24 -23
  347. package/locations/providers/StoreDetailsProvider.js +5 -3
  348. package/locations/providers/StoreFinderProvider.js +5 -3
  349. package/login/components/ForgotPassword/ForgotPassword.js +64 -50
  350. package/orders/components/OrderDetails/OrderDetails.js +9 -6
  351. package/orders/components/OrderDetails/OrderDetailsAuthenticate.js +63 -47
  352. package/orders/components/OrderDetails/OrderDetailsContent.js +9 -5
  353. package/orders/components/OrderDetails/OrderDetailsOrder.js +44 -39
  354. package/orders/components/OrderDetails/OrderDetailsOrderHeader.js +39 -31
  355. package/orders/components/OrderDetails/OrderDetailsOrderPickupLocation.js +2 -1
  356. package/orders/components/OrderHistory/OrderHistory.js +27 -22
  357. package/orders/components/OrderHistory/OrderHistoryList.js +47 -35
  358. package/orders/components/OrderHistory/OrderHistoryLoader.js +19 -16
  359. package/orders/components/OrderHistory/OrderHistoryTable.js +57 -34
  360. package/orders/providers/OrderDetailsPrivateProvider.js +5 -3
  361. package/orders/providers/OrderDetailsProvider.js +6 -4
  362. package/orders/providers/OrderHistoryProvider.js +5 -3
  363. package/orders/reducers/orders.js +1 -1
  364. package/package.json +10 -10
  365. package/page/components/NotFound.js +28 -23
  366. package/page/components/ResponsiveWidgetImage/ResponsiveWidgetImage.js +48 -27
  367. package/page/components/WidgetHeadline/WidgetHeadline.js +6 -4
  368. package/page/components/WidgetRichText/WidgetRichText.js +5 -3
  369. package/page/components/WidgetVideo/WidgetVideo.js +159 -0
  370. package/page/components/WidgetVideo/index.js +1 -0
  371. package/page/components/Widgets/Overlay.js +12 -12
  372. package/page/components/Widgets/Tooltip.js +13 -11
  373. package/page/components/Widgets/Widget.js +34 -25
  374. package/page/components/Widgets/WidgetProvider.js +5 -3
  375. package/page/components/Widgets/Widgets.js +22 -19
  376. package/page/components/Widgets/WidgetsPreviewProvider.js +5 -3
  377. package/page/hooks/index.js +7 -14
  378. package/page/selectors/index.js +7 -24
  379. package/page/widgets/Button/Button.js +13 -9
  380. package/page/widgets/CategoryList/CategoryList.js +11 -8
  381. package/page/widgets/CategoryList/hooks.js +1 -1
  382. package/page/widgets/HTML/HTML.js +5 -3
  383. package/page/widgets/Headline/Headline.js +2 -1
  384. package/page/widgets/HeroBanner/HeroBanner.js +51 -23
  385. package/page/widgets/HeroBanner/hooks.js +19 -4
  386. package/page/widgets/Image/Image.js +14 -11
  387. package/page/widgets/ImageRow/ImageRow.js +53 -28
  388. package/page/widgets/ImageRow/hooks.js +14 -2
  389. package/page/widgets/ImageSlider/ImageSlider.js +27 -22
  390. package/page/widgets/NestedCategoryFilter/NestedCategoryFilter.js +164 -0
  391. package/page/widgets/NestedCategoryFilter/components/Picker/components/Sheet/index.js +59 -0
  392. package/page/widgets/NestedCategoryFilter/components/Picker/components/SheetItem/index.js +60 -0
  393. package/page/widgets/NestedCategoryFilter/components/Picker/index.js +124 -0
  394. package/page/widgets/NestedCategoryFilter/hooks.js +35 -0
  395. package/page/widgets/NestedCategoryFilter/index.js +1 -0
  396. package/page/widgets/Placeholder/Placeholder.js +16 -12
  397. package/page/widgets/ProductList/ProductList.js +34 -18
  398. package/page/widgets/ProductList/hooks.js +4 -2
  399. package/page/widgets/ProductSlider/ProductSlider.js +27 -23
  400. package/page/widgets/RichText/RichText.js +2 -1
  401. package/page/widgets/Video/Video.js +14 -55
  402. package/page/widgets/Video/hooks.js +6 -2
  403. package/page/widgets/index.js +2 -1
  404. package/page/widgets/widgets.json +3 -0
  405. package/product/components/Availability/Availability.js +14 -11
  406. package/product/components/Characteristics/Characteristic/components/Sheet/index.js +104 -84
  407. package/product/components/Characteristics/Characteristic/components/SheetItem/index.js +41 -27
  408. package/product/components/Characteristics/Characteristic/index.js +83 -64
  409. package/product/components/Characteristics/Swatch/index.js +54 -38
  410. package/product/components/Characteristics/index.js +36 -20
  411. package/product/components/Description/index.js +27 -20
  412. package/product/components/EffectivityDates/index.js +42 -37
  413. package/product/components/FilterBar/FilterBarProvider.js +5 -3
  414. package/product/components/FilterBar/components/Content/components/FilterButton/index.js +24 -17
  415. package/product/components/FilterBar/components/Content/components/FilterChips/index.js +24 -19
  416. package/product/components/FilterBar/components/Content/components/Sort/components/Item/index.js +5 -3
  417. package/product/components/FilterBar/components/Content/components/Sort/index.js +14 -12
  418. package/product/components/FilterBar/components/Content/index.js +15 -11
  419. package/product/components/FilterBar/components/Content/spec.js +7 -6
  420. package/product/components/FilterBar/components/FilterModal/FilterModal.js +21 -16
  421. package/product/components/FilterBar/components/FilterModal/FilterModalContent.js +12 -9
  422. package/product/components/FilterBar/components/FilterModal/FilterModalTitle.js +22 -16
  423. package/product/components/FilterBar/index.js +16 -10
  424. package/product/components/Header/PriceStriked/index.js +32 -23
  425. package/product/components/Header/Shipping/components/Label/index.js +14 -11
  426. package/product/components/Header/Shipping/index.js +19 -14
  427. package/product/components/Header/Shipping/spec.js +7 -5
  428. package/product/components/Header/Tiers/components/Tier/index.js +10 -9
  429. package/product/components/Header/Tiers/components/Tier/spec.js +3 -2
  430. package/product/components/Header/Tiers/index.js +17 -13
  431. package/product/components/Header/Tiers/spec.js +6 -5
  432. package/product/components/MapPriceHint/index.js +14 -11
  433. package/product/components/Media/FeaturedMedia.js +8 -6
  434. package/product/components/Media/MediaImage.js +19 -16
  435. package/product/components/Media/MediaPlaceholder.js +11 -8
  436. package/product/components/MediaSlider/components/MediaImage/index.js +9 -7
  437. package/product/components/MediaSlider/components/MediaVideo/index.js +24 -19
  438. package/product/components/MediaSlider/index.js +29 -23
  439. package/product/components/Options/components/Content/index.js +52 -44
  440. package/product/components/Options/components/Content/spec.js +3 -2
  441. package/product/components/Options/components/Option/index.js +23 -20
  442. package/product/components/Options/components/TextOption/components/OptionInfo/index.js +31 -24
  443. package/product/components/Options/components/TextOption/components/OptionInfo/spec.js +4 -3
  444. package/product/components/Options/components/TextOption/index.js +84 -69
  445. package/product/components/Options/index.js +17 -13
  446. package/product/components/OrderQuantityHint/index.js +29 -24
  447. package/product/components/PriceDifference/index.js +2 -1
  448. package/product/components/PriceInfo/PriceInfo.js +13 -11
  449. package/product/components/ProductBadges/index.js +9 -6
  450. package/product/components/ProductCard/index.js +54 -47
  451. package/product/components/ProductCharacteristics/index.js +65 -57
  452. package/product/components/ProductDiscountBadge/index.js +18 -14
  453. package/product/components/ProductDiscountBadge/spec.js +7 -5
  454. package/product/components/ProductFilters/index.js +25 -21
  455. package/product/components/ProductGrid/components/Item/components/ItemDetails/index.js +29 -25
  456. package/product/components/ProductGrid/components/Item/components/ItemDetails/spec.js +10 -5
  457. package/product/components/ProductGrid/components/Item/components/ItemDiscount/index.js +11 -8
  458. package/product/components/ProductGrid/components/Item/components/ItemFavoritesButton/index.js +14 -11
  459. package/product/components/ProductGrid/components/Item/components/ItemFavoritesButton/spec.js +14 -11
  460. package/product/components/ProductGrid/components/Item/components/ItemImage/index.js +10 -8
  461. package/product/components/ProductGrid/components/Item/components/ItemImage/spec.js +2 -1
  462. package/product/components/ProductGrid/components/Item/components/ItemName/index.js +11 -8
  463. package/product/components/ProductGrid/components/Item/components/ItemName/spec.js +4 -1
  464. package/product/components/ProductGrid/components/Item/components/ItemPrice/index.js +7 -5
  465. package/product/components/ProductGrid/components/Item/components/ItemPrice/spec.js +7 -4
  466. package/product/components/ProductGrid/components/Item/index.js +36 -31
  467. package/product/components/ProductGrid/components/Iterator/index.js +15 -12
  468. package/product/components/ProductGrid/components/Layout/index.js +5 -3
  469. package/product/components/ProductGrid/index.js +34 -30
  470. package/product/components/ProductGrid/spec.js +3 -2
  471. package/product/components/ProductGridPrice/index.js +37 -24
  472. package/product/components/ProductImage/ProductImagePlaceholder.js +7 -5
  473. package/product/components/ProductImage/index.js +57 -45
  474. package/product/components/ProductImage/spec.js +9 -8
  475. package/product/components/ProductList/components/Item/index.js +172 -152
  476. package/product/components/ProductList/components/Iterator/index.js +27 -24
  477. package/product/components/ProductList/components/Layout/index.js +5 -3
  478. package/product/components/ProductList/index.js +33 -27
  479. package/product/components/ProductName/ProductName.js +19 -15
  480. package/product/components/ProductName/ProductNameContent.js +14 -9
  481. package/product/components/ProductProperties/Content.js +12 -8
  482. package/product/components/ProductProperties/Group.js +12 -8
  483. package/product/components/ProductProperties/GroupedProperties.js +18 -15
  484. package/product/components/ProductProperties/Lists.js +12 -9
  485. package/product/components/ProductProperties/ListsHTML.js +11 -9
  486. package/product/components/ProductProperties/ProductProperties.js +7 -5
  487. package/product/components/ProductProperties/Row.js +22 -18
  488. package/product/components/ProductProperties/RowHTML.js +14 -10
  489. package/product/components/ProductProperties/Rows.js +5 -6
  490. package/product/components/ProductProperties/Wrapper.js +9 -3
  491. package/product/components/ProductSlider/index.js +28 -23
  492. package/product/components/ProductSlider/spec.js +5 -2
  493. package/product/components/ProductVariants/VariantAvailability.js +9 -7
  494. package/product/components/QuantityPicker/index.js +11 -8
  495. package/product/components/Rating/index.js +16 -13
  496. package/product/components/Rating/spec.js +7 -5
  497. package/product/components/RelationsSlider/RelationsSheet.js +22 -16
  498. package/product/components/RelationsSlider/RelationsSlider.js +2 -1
  499. package/product/components/RelationsSlider/RelationsSliderContent.js +30 -25
  500. package/product/components/Swatch/Swatch.js +2 -1
  501. package/product/components/Swatch/SwatchContent.js +25 -23
  502. package/product/components/Swatch/VariantSwatch.js +2 -1
  503. package/product/components/Swatches/Swatches.js +10 -8
  504. package/product/components/UnitQuantityPicker/CartUnitQuantityPicker.js +2 -1
  505. package/product/components/UnitQuantityPicker/ProductUnitQuantityPicker.js +32 -24
  506. package/product/components/UnitQuantityPicker/UnitQuantityPicker.js +70 -62
  507. package/product/components/UnitQuantityPicker/UnitQuantityPickerWithSection.js +17 -14
  508. package/product/hocs/withMapPricing.js +30 -18
  509. package/product/hocs/withPriceCalculation.js +7 -2
  510. package/product/hocs/withProductListEntry.js +7 -4
  511. package/product/hocs/withProductListEntryProduct.js +4 -1
  512. package/product/hocs/withProductListType.js +7 -4
  513. package/product/providers/ProductListEntry/index.js +5 -3
  514. package/product/providers/ProductListType/index.js +5 -3
  515. package/product/selectors/helpers/wrapMemoizedSelector.js +2 -2
  516. package/push-opt-in/components/PushOptInModal/index.js +52 -42
  517. package/registration/components/GuestRegistration/GuestRegistration.js +8 -5
  518. package/registration/components/GuestRegistration/GuestRegistrationContent.js +21 -17
  519. package/registration/components/GuestRegistration/GuestRegistrationFormPickup.js +17 -14
  520. package/registration/components/Registration/Registration.js +7 -5
  521. package/registration/components/Registration/RegistrationContent.js +14 -8
  522. package/registration/components/Registration/RegistrationFormActions.js +11 -8
  523. package/registration/components/Registration/RegistrationFormBase.js +12 -10
  524. package/registration/components/Registration/RegistrationFormBilling.js +12 -10
  525. package/registration/components/Registration/RegistrationFormExtra.js +12 -10
  526. package/registration/components/Registration/RegistrationFormShipping.js +12 -10
  527. package/registration/components/Registration/RegistrationFormToggle.js +15 -12
  528. package/registration/providers/GuestRegistrationProvider.actions.js +3 -3
  529. package/registration/providers/GuestRegistrationProvider.js +5 -3
  530. package/registration/providers/RegistrationProvider.actions.js +2 -2
  531. package/registration/providers/RegistrationProvider.js +7 -5
  532. package/reviews/components/Reviews/components/AllReviewsLink/index.js +11 -8
  533. package/reviews/components/Reviews/components/Header/components/AverageRating/index.js +10 -8
  534. package/reviews/components/Reviews/components/Header/components/NoReviews/index.js +16 -11
  535. package/reviews/components/Reviews/components/Header/components/ReviewsExcerpt/index.js +21 -17
  536. package/reviews/components/Reviews/components/Header/components/WriteReviewLink/index.js +12 -9
  537. package/reviews/components/Reviews/components/Header/components/WriteReviewLink/spec.js +7 -5
  538. package/reviews/components/Reviews/components/Header/index.js +3 -2
  539. package/reviews/components/Reviews/components/Header/spec.js +7 -3
  540. package/reviews/components/Reviews/components/List/components/Info/components/Author/index.js +2 -1
  541. package/reviews/components/Reviews/components/List/components/Info/components/ReviewDate/index.js +2 -1
  542. package/reviews/components/Reviews/components/List/components/Info/index.js +9 -7
  543. package/reviews/components/Reviews/components/List/components/Rating/index.js +8 -6
  544. package/reviews/components/Reviews/components/List/components/Review/index.js +13 -11
  545. package/reviews/components/Reviews/components/List/components/Text/index.js +5 -3
  546. package/reviews/components/Reviews/components/List/components/Title/index.js +5 -3
  547. package/reviews/components/Reviews/components/List/index.js +34 -24
  548. package/reviews/components/Reviews/components/List/spec.js +2 -1
  549. package/reviews/components/Reviews/components/RatingCount/index.js +2 -1
  550. package/reviews/components/Reviews/components/RatingCount/spec.js +3 -2
  551. package/reviews/components/Reviews/components/ReviewsInfo/index.js +11 -6
  552. package/reviews/components/Reviews/index.js +16 -13
  553. package/reviews/components/Reviews/spec.js +8 -6
  554. package/styles/theme/createTheme/createBreakpoints.js +1 -1
  555. package/styles/theme/hooks/useResponsiveValue.js +1 -1
  556. package/styles/theme/providers/ActiveBreakpointProvider.js +6 -4
  557. package/styles/theme/providers/ThemeProvider.js +7 -3
  558. package/tracking/components/CookieConsentModal/index.js +83 -66
  559. package/tracking/components/PrivacySettings/index.js +104 -78
@@ -9,6 +9,7 @@ import connect from "./CartContextMenuItemChangeFulfillment.connector";
9
9
  * @property {Function} props.closeMenu closeMenu
10
10
  * @returns {JSX}
11
11
  */
12
+ import { jsx as _jsx } from "react/jsx-runtime";
12
13
  export const CartContextMenuItemChangeFulfillment = connect(props => {
13
14
  const {
14
15
  onClick,
@@ -18,12 +19,13 @@ export const CartContextMenuItemChangeFulfillment = connect(props => {
18
19
  if (!Array.isArray(enabledFulfillmentMethods) || enabledFulfillmentMethods.length <= 1) {
19
20
  return null;
20
21
  }
21
- return /*#__PURE__*/React.createElement(ContextMenu.Item, {
22
+ return /*#__PURE__*/_jsx(ContextMenu.Item, {
22
23
  onClick: onClick,
23
- closeMenu: closeMenu
24
- }, /*#__PURE__*/React.createElement(I18n.Text, {
25
- string: "locations.change_fulfillment_method"
26
- }));
24
+ closeMenu: closeMenu,
25
+ children: /*#__PURE__*/_jsx(I18n.Text, {
26
+ string: "locations.change_fulfillment_method"
27
+ })
28
+ });
27
29
  });
28
30
  CartContextMenuItemChangeFulfillment.defaultProps = {
29
31
  onClick: noop,
@@ -12,6 +12,7 @@ import { DIRECT_SHIP } from "../../constants";
12
12
  * @param {Function} [props.closeMenu=noop] The menu close handler.
13
13
  * @returns {JSX.Element|null} The rendered component or null.
14
14
  */
15
+ import { jsx as _jsx } from "react/jsx-runtime";
15
16
  export const CartContextMenuItemChangeLocation = ({
16
17
  cartItem,
17
18
  onClick,
@@ -20,12 +21,13 @@ export const CartContextMenuItemChangeLocation = ({
20
21
  if (!cartItem.fulfillment || cartItem.fulfillment.method === DIRECT_SHIP) {
21
22
  return null;
22
23
  }
23
- return /*#__PURE__*/React.createElement(ContextMenu.Item, {
24
+ return /*#__PURE__*/_jsx(ContextMenu.Item, {
24
25
  onClick: onClick,
25
- closeMenu: closeMenu
26
- }, /*#__PURE__*/React.createElement(I18n.Text, {
27
- string: "locations.change_location"
28
- }));
26
+ closeMenu: closeMenu,
27
+ children: /*#__PURE__*/_jsx(I18n.Text, {
28
+ string: "locations.change_location"
29
+ })
30
+ });
29
31
  };
30
32
  CartContextMenuItemChangeLocation.defaultProps = {
31
33
  onClick: noop,
@@ -19,6 +19,7 @@ import connect from "./CartItemProductChangeLocation.connector";
19
19
  * @param {Props} props The component props.
20
20
  * @returns {JSX.Element|null}
21
21
  */
22
+ import { jsx as _jsx } from "react/jsx-runtime";
22
23
  const CartItemProductChangeLocation = props => {
23
24
  const {
24
25
  cartItem,
@@ -61,7 +62,7 @@ const CartItemProductChangeLocation = props => {
61
62
  if (!opened || !fulfillment) {
62
63
  return null;
63
64
  }
64
- return /*#__PURE__*/React.createElement(FulfillmentSheet, {
65
+ return /*#__PURE__*/_jsx(FulfillmentSheet, {
65
66
  stage: STAGE_SELECT_STORE,
66
67
  open: true,
67
68
  title: "locations.headline",
@@ -11,25 +11,28 @@ import { PRODUCT_FULFILLMENT_CHANGE_LOCATION } from "../../constants/Portals";
11
11
  * @param {boolean} [props.disabled=false] Whether the button is disabled.
12
12
  * @returns {JSX.Element} The rendered component.
13
13
  */
14
+ import { jsx as _jsx } from "react/jsx-runtime";
14
15
  export const ChangeLocationButtonUnwrapped = ({
15
16
  onClick,
16
17
  disabled
17
- }) => /*#__PURE__*/React.createElement(SurroundPortals, {
18
+ }) => /*#__PURE__*/_jsx(SurroundPortals, {
18
19
  portalName: PRODUCT_FULFILLMENT_CHANGE_LOCATION,
19
20
  portalProps: {
20
21
  onClick,
21
22
  disabled
22
- }
23
- }, /*#__PURE__*/React.createElement(RippleButton, {
24
- onClick: onClick,
25
- className: button,
26
- disabled: disabled,
27
- rippleClassName: ripple,
28
- type: "secondary",
29
- flat: true
30
- }, /*#__PURE__*/React.createElement(I18n.Text, {
31
- string: "locations.change_location"
32
- })));
23
+ },
24
+ children: /*#__PURE__*/_jsx(RippleButton, {
25
+ onClick: onClick,
26
+ className: button,
27
+ disabled: disabled,
28
+ rippleClassName: ripple,
29
+ type: "secondary",
30
+ flat: true,
31
+ children: /*#__PURE__*/_jsx(I18n.Text, {
32
+ string: "locations.change_location"
33
+ })
34
+ })
35
+ });
33
36
  ChangeLocationButtonUnwrapped.defaultProps = {
34
37
  disabled: false
35
38
  };
@@ -5,17 +5,18 @@ import { useFulfillmentState } from "../../locations.hooks";
5
5
  import { IN_STORE_PICKUP_BOPIS_LABEL, IN_STORE_PICKUP_ROPIS_LABEL, DIRECT_SHIP_LABEL, DIRECT_SHIP, ROPIS, BOPIS } from "../../constants";
6
6
  import { container, radioGroup } from "./FulfillmentPath.style";
7
7
  import { FulfillmentPathItem } from "./FulfillmentPathItem";
8
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
9
+ const labelMapping = {
10
+ [DIRECT_SHIP]: DIRECT_SHIP_LABEL,
11
+ [ROPIS]: IN_STORE_PICKUP_ROPIS_LABEL,
12
+ [BOPIS]: IN_STORE_PICKUP_BOPIS_LABEL
13
+ };
8
14
 
9
15
  /**
10
16
  * Renders the fulfillment path selector stage.
11
17
  * @returns {JSX}
12
18
  */
13
19
  export function FulfillmentPath() {
14
- const labelMapping = {
15
- [DIRECT_SHIP]: DIRECT_SHIP_LABEL,
16
- [ROPIS]: IN_STORE_PICKUP_ROPIS_LABEL,
17
- [BOPIS]: IN_STORE_PICKUP_BOPIS_LABEL
18
- };
19
20
  const {
20
21
  product,
21
22
  enabledFulfillmentMethods,
@@ -38,33 +39,36 @@ export function FulfillmentPath() {
38
39
  const method = Object.keys(labelMapping).find(key => labelMapping[key] === elementName);
39
40
  setSelection(method);
40
41
  changeFulfillment(method, cartItem);
41
- }, [cartItem, changeFulfillment, labelMapping]);
42
- return /*#__PURE__*/React.createElement("div", {
43
- className: container
44
- }, /*#__PURE__*/React.createElement(RadioGroup, {
45
- name: "cartItem.fulfillment_selector",
46
- value: selection,
47
- onChange: handleChange,
48
- className: radioGroup,
49
- isControlled: true,
50
- direction: "column"
51
- }, enabledFulfillmentMethods.includes(DIRECT_SHIP) && /*#__PURE__*/React.createElement(FulfillmentPathItem, {
52
- name: DIRECT_SHIP_LABEL,
53
- attributes: {
54
- disabled: !cartItemFulfillmentMethods.includes(DIRECT_SHIP)
55
- }
56
- }, /*#__PURE__*/React.createElement(Availability, {
57
- productId: product.id,
58
- fulfillmentSelection: DIRECT_SHIP
59
- })), enabledFulfillmentMethods.includes(BOPIS) && /*#__PURE__*/React.createElement(FulfillmentPathItem, {
60
- name: IN_STORE_PICKUP_BOPIS_LABEL,
61
- attributes: {
62
- disabled: !cartItemFulfillmentMethods.includes(BOPIS)
63
- }
64
- }), enabledFulfillmentMethods.includes(ROPIS) && /*#__PURE__*/React.createElement(FulfillmentPathItem, {
65
- name: IN_STORE_PICKUP_ROPIS_LABEL,
66
- attributes: {
67
- disabled: !cartItemFulfillmentMethods.includes(ROPIS)
68
- }
69
- })));
42
+ }, [cartItem, changeFulfillment]);
43
+ return /*#__PURE__*/_jsx("div", {
44
+ className: container,
45
+ children: /*#__PURE__*/_jsxs(RadioGroup, {
46
+ name: "cartItem.fulfillment_selector",
47
+ value: selection,
48
+ onChange: handleChange,
49
+ className: radioGroup,
50
+ isControlled: true,
51
+ direction: "column",
52
+ children: [enabledFulfillmentMethods.includes(DIRECT_SHIP) && /*#__PURE__*/_jsx(FulfillmentPathItem, {
53
+ name: DIRECT_SHIP_LABEL,
54
+ attributes: {
55
+ disabled: !cartItemFulfillmentMethods.includes(DIRECT_SHIP)
56
+ },
57
+ children: /*#__PURE__*/_jsx(Availability, {
58
+ productId: product.id,
59
+ fulfillmentSelection: DIRECT_SHIP
60
+ })
61
+ }), enabledFulfillmentMethods.includes(BOPIS) && /*#__PURE__*/_jsx(FulfillmentPathItem, {
62
+ name: IN_STORE_PICKUP_BOPIS_LABEL,
63
+ attributes: {
64
+ disabled: !cartItemFulfillmentMethods.includes(BOPIS)
65
+ }
66
+ }), enabledFulfillmentMethods.includes(ROPIS) && /*#__PURE__*/_jsx(FulfillmentPathItem, {
67
+ name: IN_STORE_PICKUP_ROPIS_LABEL,
68
+ attributes: {
69
+ disabled: !cartItemFulfillmentMethods.includes(ROPIS)
70
+ }
71
+ })]
72
+ })
73
+ });
70
74
  }
@@ -1,4 +1,3 @@
1
- import _extends from "@babel/runtime/helpers/extends";
2
1
  import React from 'react';
3
2
  import PropTypes from 'prop-types';
4
3
  import { i18n } from "../../../core";
@@ -13,17 +12,22 @@ import { radioItem, itemLabel } from "./FulfillmentPath.style";
13
12
  * @param {string} props.name The name of the radio item.
14
13
  * @returns {JSX.Element} The rendered component.
15
14
  */
15
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
16
16
  export const FulfillmentPathItem = ({
17
17
  name,
18
18
  children,
19
19
  ...rest
20
- }) => /*#__PURE__*/React.createElement(RadioGroupItem, _extends({}, rest, {
20
+ }) => /*#__PURE__*/_jsx(RadioGroupItem, {
21
+ ...rest,
21
22
  name: name,
22
23
  className: radioItem,
23
- label: /*#__PURE__*/React.createElement("div", {
24
- className: itemLabel
25
- }, /*#__PURE__*/React.createElement("span", null, i18n.text(name)), children)
26
- }));
24
+ label: /*#__PURE__*/_jsxs("div", {
25
+ className: itemLabel,
26
+ children: [/*#__PURE__*/_jsx("span", {
27
+ children: i18n.text(name)
28
+ }), children]
29
+ })
30
+ });
27
31
  FulfillmentPathItem.defaultProps = {
28
32
  children: null
29
33
  };
@@ -4,6 +4,7 @@ import { SheetList } from '@shopgate/engage/components';
4
4
  import SheetDrawer from "../../../components/SheetDrawer";
5
5
  import { QUICK_RESERVE, MULTI_LINE_RESERVE } from "../../constants";
6
6
  import { sheetDrawer } from "./FulfillmentPathSelector.style";
7
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
7
8
  let callback = null;
8
9
  const EVENT_SET_OPEN = 'FulfillmentPathSelector.setOpen';
9
10
 
@@ -64,18 +65,21 @@ function FulfillmentPathSelector() {
64
65
  setIsOpen(false);
65
66
  callback = null;
66
67
  }
67
- return /*#__PURE__*/React.createElement(SheetDrawer, {
68
+ return /*#__PURE__*/_jsx(SheetDrawer, {
68
69
  isOpen: isOpen,
69
70
  title: i18n.text('locations.choose_reservation_type'),
70
71
  className: sheetDrawer,
71
- onDidClose: handleClose
72
- }, /*#__PURE__*/React.createElement(SheetList, null, /*#__PURE__*/React.createElement(SheetList.Item, {
73
- title: i18n.text('locations.quick_reserve'),
74
- onClick: handleQuickReserve
75
- }), /*#__PURE__*/React.createElement(SheetList.Item, {
76
- title: i18n.text('locations.reserve_to_cart'),
77
- onClick: handleReserveToCart
78
- })));
72
+ onDidClose: handleClose,
73
+ children: /*#__PURE__*/_jsxs(SheetList, {
74
+ children: [/*#__PURE__*/_jsx(SheetList.Item, {
75
+ title: i18n.text('locations.quick_reserve'),
76
+ onClick: handleQuickReserve
77
+ }), /*#__PURE__*/_jsx(SheetList.Item, {
78
+ title: i18n.text('locations.reserve_to_cart'),
79
+ onClick: handleReserveToCart
80
+ })]
81
+ })
82
+ });
79
83
  }
80
84
  FulfillmentPathSelector.open = callbackFn => {
81
85
  callback = callbackFn;
@@ -31,6 +31,7 @@ import connect from "./FulfillmentSelector.connector";
31
31
  * @param {Props} props The component props.
32
32
  * @returns {JSX.Element|null}
33
33
  */
34
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
34
35
  const FulfillmentSelector = props => {
35
36
  const {
36
37
  productId,
@@ -138,10 +139,7 @@ const FulfillmentSelector = props => {
138
139
  }
139
140
  return shopFulfillmentMethods.filter(method => method !== DIRECT_SHIP).length > 0;
140
141
  }, [shopFulfillmentMethods]);
141
- if (!shopHasRopeMethods) {
142
- return null;
143
- }
144
- const context = /** @type {FulfillmentSelectorContextProps} */{
142
+ const context = /** @type {FulfillmentSelectorContextProps} */useMemo(() => ({
145
143
  selection,
146
144
  selectedLocation,
147
145
  inventory,
@@ -161,28 +159,37 @@ const FulfillmentSelector = props => {
161
159
  productFulfillmentMethods,
162
160
  locationFulfillmentMethods,
163
161
  useLocationFulfillmentMethods
164
- };
165
- return /*#__PURE__*/React.createElement(FulfillmentSelectorContext.Provider, {
166
- value: context
167
- }, /*#__PURE__*/React.createElement(SurroundPortals, {
168
- portalName: PRODUCT_FULFILLMENT_SELECTOR
169
- }, /*#__PURE__*/React.createElement("div", {
170
- className: container,
171
- role: "radiogroup",
172
- tabIndex: "0"
173
- }, /*#__PURE__*/React.createElement(FulfillmentSelectorHeader, null), shopFulfillmentMethods.includes(DIRECT_SHIP) && /*#__PURE__*/React.createElement(FulfillmentSelectorItem, {
174
- name: DIRECT_SHIP,
175
- onChange: handleChange,
176
- disabled: !isReady || !isDirectShipEnabled
177
- }, /*#__PURE__*/React.createElement(FulfillmentSelectorDirectShip, null)), shopFulfillmentMethods.includes(BOPIS) && /*#__PURE__*/React.createElement(FulfillmentSelectorItem, {
178
- name: BOPIS,
179
- onChange: handleChange,
180
- disabled: !isReady || !isBOPISEnabled
181
- }, /*#__PURE__*/React.createElement(FulfillmentSelectorBOPIS, null)), shopFulfillmentMethods.includes(ROPIS) && /*#__PURE__*/React.createElement(FulfillmentSelectorItem, {
182
- name: ROPIS,
183
- onChange: handleChange,
184
- disabled: !isReady || !isROPISEnabled
185
- }, /*#__PURE__*/React.createElement(FulfillmentSelectorROPIS, null)))), /*#__PURE__*/React.createElement(FulfillmentSelectorLocation, null), /*#__PURE__*/React.createElement(FulfillmentSelectorAddToCart, null));
162
+ }), [conditioner, fulfillmentPaths, handleChange, inventory, isBOPISEnabled, isDirectShipEnabled, isOrderable, isROPISEnabled, isReady, locationFulfillmentMethods, merchantSettings, preferredLocation, productFulfillmentMethods, productId, selectedLocation, selection, shopFulfillmentMethods, useLocationFulfillmentMethods, userFulfillmentMethod]);
163
+ if (!shopHasRopeMethods) {
164
+ return null;
165
+ }
166
+ return /*#__PURE__*/_jsxs(FulfillmentSelectorContext.Provider, {
167
+ value: context,
168
+ children: [/*#__PURE__*/_jsx(SurroundPortals, {
169
+ portalName: PRODUCT_FULFILLMENT_SELECTOR,
170
+ children: /*#__PURE__*/_jsxs("div", {
171
+ className: container,
172
+ role: "radiogroup",
173
+ tabIndex: "0",
174
+ children: [/*#__PURE__*/_jsx(FulfillmentSelectorHeader, {}), shopFulfillmentMethods.includes(DIRECT_SHIP) && /*#__PURE__*/_jsx(FulfillmentSelectorItem, {
175
+ name: DIRECT_SHIP,
176
+ onChange: handleChange,
177
+ disabled: !isReady || !isDirectShipEnabled,
178
+ children: /*#__PURE__*/_jsx(FulfillmentSelectorDirectShip, {})
179
+ }), shopFulfillmentMethods.includes(BOPIS) && /*#__PURE__*/_jsx(FulfillmentSelectorItem, {
180
+ name: BOPIS,
181
+ onChange: handleChange,
182
+ disabled: !isReady || !isBOPISEnabled,
183
+ children: /*#__PURE__*/_jsx(FulfillmentSelectorBOPIS, {})
184
+ }), shopFulfillmentMethods.includes(ROPIS) && /*#__PURE__*/_jsx(FulfillmentSelectorItem, {
185
+ name: ROPIS,
186
+ onChange: handleChange,
187
+ disabled: !isReady || !isROPISEnabled,
188
+ children: /*#__PURE__*/_jsx(FulfillmentSelectorROPIS, {})
189
+ })]
190
+ })
191
+ }), /*#__PURE__*/_jsx(FulfillmentSelectorLocation, {}), /*#__PURE__*/_jsx(FulfillmentSelectorAddToCart, {})]
192
+ });
186
193
  };
187
194
  FulfillmentSelector.defaultProps = {
188
195
  merchantSettings: null,
@@ -17,6 +17,7 @@ import { SORT_CLOSEST_LOCATION_WITH_INVENTORY } from "../../constants";
17
17
  * The FulfillmentSelectorLocation component
18
18
  * @returns {JSX}
19
19
  */
20
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
20
21
  function FulfillmentSelectorAlternativeLocation({
21
22
  productId,
22
23
  show,
@@ -49,44 +50,53 @@ function FulfillmentSelectorAlternativeLocation({
49
50
  return null;
50
51
  }
51
52
  const alternativeLocation = alternativeLocations.find(l => l.code !== selectedLocation?.code);
52
- return /*#__PURE__*/React.createElement(SurroundPortals, {
53
+ return /*#__PURE__*/_jsx(SurroundPortals, {
53
54
  portalName: PRODUCT_FULFILLMENT_SELECTOR_ALTERNATIVE_LOCATION,
54
55
  portalProps: {
55
56
  productId,
56
57
  location: alternativeLocation
57
- }
58
- }, alternativeLocation && /*#__PURE__*/React.createElement(Grid, {
59
- component: "div",
60
- className: gridClassName
61
- }, /*#__PURE__*/React.createElement(ResponsiveContainer, {
62
- appAlways: true,
63
- breakpoint: "xs"
64
- }, /*#__PURE__*/React.createElement(Grid.Item, {
65
- className: itemColumn,
66
- grow: 1,
67
- shrink: 0,
68
- component: "div"
69
- }, /*#__PURE__*/React.createElement("div", {
70
- className: locationName
71
- }, alternativeLocation.name)), /*#__PURE__*/React.createElement(Grid.Item, {
72
- className: itemColumn,
73
- grow: 1,
74
- shrink: 0,
75
- component: "div"
76
- }, /*#__PURE__*/React.createElement(StockInfo, {
77
- productId: productId,
78
- location: alternativeLocation
79
- }))), /*#__PURE__*/React.createElement(ResponsiveContainer, {
80
- webOnly: true,
81
- breakpoint: ">xs"
82
- }, /*#__PURE__*/React.createElement("div", {
83
- className: locationName
84
- }, alternativeLocation.name, /*#__PURE__*/React.createElement("span", {
85
- className: itemSpacer
86
- }, /*#__PURE__*/React.createElement(StockInfo, {
87
- productId: productId,
88
- location: alternativeLocation
89
- }))))));
58
+ },
59
+ children: alternativeLocation && /*#__PURE__*/_jsxs(Grid, {
60
+ component: "div",
61
+ className: gridClassName,
62
+ children: [/*#__PURE__*/_jsxs(ResponsiveContainer, {
63
+ appAlways: true,
64
+ breakpoint: "xs",
65
+ children: [/*#__PURE__*/_jsx(Grid.Item, {
66
+ className: itemColumn,
67
+ grow: 1,
68
+ shrink: 0,
69
+ component: "div",
70
+ children: /*#__PURE__*/_jsx("div", {
71
+ className: locationName,
72
+ children: alternativeLocation.name
73
+ })
74
+ }), /*#__PURE__*/_jsx(Grid.Item, {
75
+ className: itemColumn,
76
+ grow: 1,
77
+ shrink: 0,
78
+ component: "div",
79
+ children: /*#__PURE__*/_jsx(StockInfo, {
80
+ productId: productId,
81
+ location: alternativeLocation
82
+ })
83
+ })]
84
+ }), /*#__PURE__*/_jsx(ResponsiveContainer, {
85
+ webOnly: true,
86
+ breakpoint: ">xs",
87
+ children: /*#__PURE__*/_jsxs("div", {
88
+ className: locationName,
89
+ children: [alternativeLocation.name, /*#__PURE__*/_jsx("span", {
90
+ className: itemSpacer,
91
+ children: /*#__PURE__*/_jsx(StockInfo, {
92
+ productId: productId,
93
+ location: alternativeLocation
94
+ })
95
+ })]
96
+ })
97
+ })]
98
+ })
99
+ });
90
100
  }
91
101
  FulfillmentSelectorAlternativeLocation.defaultProps = {
92
102
  alternativeLocations: null,
@@ -9,6 +9,7 @@ import { useFulfillmentSelectorState } from "./FulfillmentSelector.hooks";
9
9
  * Renders the FulfillmentSelectorBOPIS components.
10
10
  * @returns {JSX.Element}
11
11
  */
12
+ import { jsx as _jsx } from "react/jsx-runtime";
12
13
  export const FulfillmentSelectorBOPIS = () => {
13
14
  const {
14
15
  isBOPISEnabled,
@@ -17,7 +18,8 @@ export const FulfillmentSelectorBOPIS = () => {
17
18
  const classes = classNames({
18
19
  [itemRowDisabled.toString()]: !isReady || !isBOPISEnabled
19
20
  });
20
- return /*#__PURE__*/React.createElement("div", {
21
- className: classes
22
- }, i18n.text(IN_STORE_PICKUP_BOPIS_LABEL));
21
+ return /*#__PURE__*/_jsx("div", {
22
+ className: classes,
23
+ children: i18n.text(IN_STORE_PICKUP_BOPIS_LABEL)
24
+ });
23
25
  };
@@ -12,6 +12,7 @@ import { FulfillmentSelectorImpossibleError } from "./FulfillmentSelectorImpossi
12
12
  * Renders the direct ship item label.
13
13
  * @returns {JSX.Element}
14
14
  */
15
+ import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
15
16
  export const FulfillmentSelectorDirectShip = () => {
16
17
  const {
17
18
  productId,
@@ -25,23 +26,30 @@ export const FulfillmentSelectorDirectShip = () => {
25
26
  }), [isDirectShipEnabled, isReady]);
26
27
  const selected = selection === DIRECT_SHIP;
27
28
  if (selected && !isOrderable) {
28
- return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", null, i18n.text(DIRECT_SHIP_LABEL)), /*#__PURE__*/React.createElement(FulfillmentSelectorImpossibleError, null));
29
+ return /*#__PURE__*/_jsxs(_Fragment, {
30
+ children: [/*#__PURE__*/_jsx("div", {
31
+ children: i18n.text(DIRECT_SHIP_LABEL)
32
+ }), /*#__PURE__*/_jsx(FulfillmentSelectorImpossibleError, {})]
33
+ });
29
34
  }
30
- return /*#__PURE__*/React.createElement(Grid, {
35
+ return /*#__PURE__*/_jsxs(Grid, {
31
36
  className: rowClasses,
32
- component: "div"
33
- }, /*#__PURE__*/React.createElement(Grid.Item, {
34
- className: itemColumn,
35
- grow: 1,
36
- shrink: 0,
37
- component: "div"
38
- }, i18n.text(DIRECT_SHIP_LABEL)), /*#__PURE__*/React.createElement(Grid.Item, {
39
- className: itemColumn,
40
- grow: 1,
41
- shrink: 0,
42
- component: "div"
43
- }, isReady && isDirectShipEnabled && isOrderable && /*#__PURE__*/React.createElement(Availability, {
44
- productId: productId,
45
- fulfillmentSelection: DIRECT_SHIP
46
- })));
37
+ component: "div",
38
+ children: [/*#__PURE__*/_jsx(Grid.Item, {
39
+ className: itemColumn,
40
+ grow: 1,
41
+ shrink: 0,
42
+ component: "div",
43
+ children: i18n.text(DIRECT_SHIP_LABEL)
44
+ }), /*#__PURE__*/_jsx(Grid.Item, {
45
+ className: itemColumn,
46
+ grow: 1,
47
+ shrink: 0,
48
+ component: "div",
49
+ children: isReady && isDirectShipEnabled && isOrderable && /*#__PURE__*/_jsx(Availability, {
50
+ productId: productId,
51
+ fulfillmentSelection: DIRECT_SHIP
52
+ })
53
+ })]
54
+ });
47
55
  };
@@ -6,7 +6,12 @@ import { container } from "./FulfillmentSelectorHeader.style";
6
6
  * Renders the fulfillment selector title.
7
7
  * @returns {JSX.Element}
8
8
  */
9
- export const FulfillmentSelectorHeader = () => /*#__PURE__*/React.createElement("div", {
9
+ import { jsx as _jsx } from "react/jsx-runtime";
10
+ export const FulfillmentSelectorHeader = () =>
11
+ /*#__PURE__*/
12
+ // eslint-disable-next-line jsx-a11y/role-has-required-aria-props
13
+ _jsx("div", {
10
14
  role: "heading",
11
- className: container
12
- }, i18n.text('locations.fulfillment.heading'));
15
+ className: container,
16
+ children: i18n.text('locations.fulfillment.heading')
17
+ });
@@ -10,6 +10,7 @@ import { container } from "./FulfillmentSelectorImpossibleError.style";
10
10
  * Renders the "not possible" error for each item.
11
11
  * @returns {JSX}
12
12
  */
13
+ import { jsx as _jsx } from "react/jsx-runtime";
13
14
  export function FulfillmentSelectorImpossibleError() {
14
15
  const {
15
16
  selection,
@@ -33,7 +34,7 @@ export function FulfillmentSelectorImpossibleError() {
33
34
  if (!isDirectShip && !selectedLocation?.code) {
34
35
  label = i18n.text('locations.fulfillment.error.not_ready');
35
36
  }
36
- return /*#__PURE__*/React.createElement(Availability, {
37
+ return /*#__PURE__*/_jsx(Availability, {
37
38
  className: container,
38
39
  showWhenAvailable: true,
39
40
  text: label,
@@ -18,6 +18,7 @@ import { DIRECT_SHIP, ROPIS, BOPIS } from "../../constants";
18
18
  * @param {boolean} [props.disabled=false] Whether the item is disabled.
19
19
  * @returns {JSX.Element} The rendered component.
20
20
  */
21
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
21
22
  const FulfillmentSelectorItemUnwrapped = ({
22
23
  name,
23
24
  children,
@@ -43,26 +44,34 @@ const FulfillmentSelectorItemUnwrapped = ({
43
44
  const containerClasses = classNames(radioContainer.toString(), {
44
45
  [radioContainerDisabled.toString()]: disabled
45
46
  });
46
- return /*#__PURE__*/React.createElement("label", {
47
- htmlFor: name,
48
- className: containerClasses,
49
- onClick: handleChange,
50
- role: "radio",
51
- "aria-checked": checked,
52
- tabIndex: "0"
53
- }, checked ? /*#__PURE__*/React.createElement(CheckedIcon, {
54
- className: disabled ? activeIconDisabled : activeIcon
55
- }) : /*#__PURE__*/React.createElement(UncheckedIcon, {
56
- className: disabled ? inactiveIconDisabled : inactiveIcon
57
- }), /*#__PURE__*/React.createElement("input", {
58
- type: "radio",
59
- checked: checked,
60
- name: name,
61
- className: radio,
62
- readOnly: true
63
- }), /*#__PURE__*/React.createElement("div", {
64
- className: content
65
- }, children));
47
+ return (
48
+ /*#__PURE__*/
49
+ // eslint-disable-next-line jsx-a11y/click-events-have-key-events
50
+ _jsxs("label", {
51
+ htmlFor: name,
52
+ className: containerClasses,
53
+ onClick: handleChange
54
+ // eslint-disable-next-line jsx-a11y/no-noninteractive-element-to-interactive-role
55
+ ,
56
+ role: "radio",
57
+ "aria-checked": checked,
58
+ tabIndex: "0",
59
+ children: [checked ? /*#__PURE__*/_jsx(CheckedIcon, {
60
+ className: disabled ? activeIconDisabled : activeIcon
61
+ }) : /*#__PURE__*/_jsx(UncheckedIcon, {
62
+ className: disabled ? inactiveIconDisabled : inactiveIcon
63
+ }), /*#__PURE__*/_jsx("input", {
64
+ type: "radio",
65
+ checked: checked,
66
+ name: name,
67
+ className: radio,
68
+ readOnly: true
69
+ }), /*#__PURE__*/_jsx("div", {
70
+ className: content,
71
+ children: children
72
+ })]
73
+ })
74
+ );
66
75
  };
67
76
  FulfillmentSelectorItemUnwrapped.defaultProps = {
68
77
  disabled: false