@magento/venia-ui 8.0.0-alpha.6 → 9.0.0-alpha.3

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 (709) hide show
  1. package/i18n/en_US.json +17 -2
  2. package/lib/RootComponents/CMS/cms.js +3 -3
  3. package/lib/RootComponents/CMS/{cms.css → cms.module.css} +0 -0
  4. package/lib/RootComponents/Category/NoProductsFound/noProductsFound.js +1 -1
  5. package/lib/RootComponents/Category/NoProductsFound/{noProductsFound.css → noProductsFound.module.css} +0 -0
  6. package/lib/RootComponents/Category/__tests__/__snapshots__/category.spec.js.snap +11 -0
  7. package/lib/RootComponents/Category/__tests__/__snapshots__/categoryContent.shimmer.spec.js.snap +430 -0
  8. package/lib/RootComponents/Category/__tests__/__snapshots__/categoryContent.spec.js.snap +272 -306
  9. package/lib/RootComponents/Category/__tests__/categoryContent.shimmer.spec.js +11 -0
  10. package/lib/RootComponents/Category/__tests__/categoryContent.spec.js +52 -6
  11. package/lib/RootComponents/Category/category.js +1 -1
  12. package/lib/RootComponents/Category/{category.css → category.module.css} +3 -1
  13. package/lib/RootComponents/Category/categoryContent.js +64 -32
  14. package/lib/RootComponents/Category/categoryContent.shimmer.js +74 -0
  15. package/lib/RootComponents/Product/__tests__/__snapshots__/product.shimmer.spec.js.snap +159 -0
  16. package/lib/RootComponents/Product/__tests__/__snapshots__/product.spec.js.snap +10 -20
  17. package/lib/RootComponents/Product/__tests__/product.shimmer.spec.js +49 -0
  18. package/lib/RootComponents/Product/__tests__/product.spec.js +45 -8
  19. package/lib/RootComponents/Product/product.js +10 -3
  20. package/lib/RootComponents/Product/product.shimmer.js +96 -0
  21. package/lib/RootComponents/Shimmer/index.js +1 -0
  22. package/lib/RootComponents/Shimmer/shimmer.js +26 -0
  23. package/lib/RootComponents/Shimmer/types/index.js +23 -0
  24. package/lib/__mocks__/classify.js +2 -0
  25. package/lib/components/Accordion/accordion.js +1 -1
  26. package/lib/components/Accordion/{accordion.css → accordion.module.css} +0 -0
  27. package/lib/components/Accordion/section.js +1 -1
  28. package/lib/components/Accordion/{section.css → section.module.css} +0 -0
  29. package/lib/components/AccountChip/__tests__/__snapshots__/accountChip.spec.js.snap +4 -4
  30. package/lib/components/AccountChip/accountChip.js +1 -1
  31. package/lib/components/AccountChip/{accountChip.css → accountChip.module.css} +1 -1
  32. package/lib/components/AccountInformationPage/__tests__/__snapshots__/accountInformationPage.spec.js.snap +0 -6
  33. package/lib/components/AccountInformationPage/__tests__/__snapshots__/editForm.spec.js.snap +50 -6
  34. package/lib/components/AccountInformationPage/__tests__/__snapshots__/editModal.spec.js.snap +50 -4
  35. package/lib/components/AccountInformationPage/__tests__/accountInformationPage.spec.js +1 -12
  36. package/lib/components/AccountInformationPage/accountInformationPage.js +1 -7
  37. package/lib/components/AccountInformationPage/{accountInformationPage.css → accountInformationPage.module.css} +1 -1
  38. package/lib/components/AccountInformationPage/editForm.js +1 -1
  39. package/lib/components/AccountInformationPage/{editForm.css → editForm.module.css} +0 -0
  40. package/lib/components/AccountInformationPage/editModal.js +1 -1
  41. package/lib/components/AccountInformationPage/{editModal.css → editModal.module.css} +0 -0
  42. package/lib/components/AccountMenu/accountMenu.js +1 -1
  43. package/lib/components/AccountMenu/{accountMenu.css → accountMenu.module.css} +0 -0
  44. package/lib/components/AccountMenu/accountMenuItems.js +1 -1
  45. package/lib/components/AccountMenu/{accountMenuItems.css → accountMenuItems.module.css} +1 -1
  46. package/lib/components/AddToCartDialog/__tests__/__snapshots__/addToCartDialog.spec.js.snap +12 -1
  47. package/lib/components/AddToCartDialog/addToCartDialog.js +15 -8
  48. package/lib/components/AddToCartDialog/{addToCartDialog.css → addToCartDialog.module.css} +1 -1
  49. package/lib/components/AddressBookPage/__tests__/__snapshots__/addEditDialog.spec.js.snap +8 -8
  50. package/lib/components/AddressBookPage/__tests__/__snapshots__/addressBookPage.spec.js.snap +73 -4
  51. package/lib/components/AddressBookPage/__tests__/__snapshots__/addressCard.spec.js.snap +110 -0
  52. package/lib/components/AddressBookPage/addEditDialog.js +1 -1
  53. package/lib/components/AddressBookPage/{addEditDialog.css → addEditDialog.module.css} +0 -0
  54. package/lib/components/AddressBookPage/addressBookPage.js +1 -1
  55. package/lib/components/AddressBookPage/{addressBookPage.css → addressBookPage.module.css} +0 -0
  56. package/lib/components/AddressBookPage/addressCard.js +1 -1
  57. package/lib/components/AddressBookPage/{addressCard.css → addressCard.module.css} +3 -3
  58. package/lib/components/App/__tests__/__snapshots__/app.spec.js.snap +2 -6
  59. package/lib/components/App/__tests__/app.spec.js +4 -1
  60. package/lib/components/App/app.js +6 -7
  61. package/lib/components/AriaButton/__tests__/__snapshots__/ariaButton.spec.js.snap +7 -0
  62. package/lib/components/AriaButton/__tests__/ariaButton.spec.js +41 -0
  63. package/lib/components/AriaButton/ariaButton.js +40 -0
  64. package/lib/components/AriaButton/index.js +1 -0
  65. package/lib/components/AuthBar/authBar.js +1 -1
  66. package/lib/components/AuthBar/{authBar.css → authBar.module.css} +1 -1
  67. package/lib/components/AuthModal/authModal.js +1 -1
  68. package/lib/components/AuthModal/{authModal.css → authModal.module.css} +2 -2
  69. package/lib/components/Breadcrumbs/__tests__/__snapshots__/breadcrumbs.spec.js.snap +10 -6
  70. package/lib/components/Breadcrumbs/__tests__/breadcrumbs.spec.js +13 -1
  71. package/lib/components/Breadcrumbs/breadcrumbs.js +29 -10
  72. package/lib/components/Breadcrumbs/{breadcrumbs.css → breadcrumbs.module.css} +0 -0
  73. package/lib/components/Breadcrumbs/breadcrumbs.shimmer.js +24 -0
  74. package/lib/components/Breadcrumbs/index.js +1 -0
  75. package/lib/components/Button/button.js +18 -7
  76. package/lib/components/Button/{button.css → button.module.css} +1 -1
  77. package/lib/components/ButtonGroup/button.js +1 -1
  78. package/lib/components/ButtonGroup/{button.css → button.module.css} +1 -1
  79. package/lib/components/ButtonGroup/buttonGroup.js +1 -1
  80. package/lib/components/ButtonGroup/{buttonGroup.css → buttonGroup.module.css} +0 -0
  81. package/lib/components/CartPage/GiftCards/__tests__/__snapshots__/giftCard.spec.js.snap +22 -0
  82. package/lib/components/CartPage/GiftCards/__tests__/__snapshots__/giftCards.spec.js.snap +66 -0
  83. package/lib/components/CartPage/GiftCards/__tests__/giftCards.spec.js +10 -0
  84. package/lib/components/CartPage/GiftCards/giftCard.js +2 -2
  85. package/lib/components/CartPage/GiftCards/{giftCard.css → giftCard.module.css} +0 -0
  86. package/lib/components/CartPage/GiftCards/giftCards.js +4 -19
  87. package/lib/components/CartPage/GiftCards/{giftCards.css → giftCards.module.css} +2 -2
  88. package/lib/components/CartPage/PriceAdjustments/CouponCode/__tests__/__snapshots__/couponCode.spec.js.snap +58 -0
  89. package/lib/components/CartPage/PriceAdjustments/CouponCode/couponCode.js +4 -62
  90. package/lib/components/CartPage/PriceAdjustments/CouponCode/{couponCode.css → couponCode.module.css} +1 -1
  91. package/lib/components/CartPage/PriceAdjustments/GiftOptions/__tests__/__snapshots__/giftOptions.spec.js.snap +4 -4
  92. package/lib/components/CartPage/PriceAdjustments/GiftOptions/giftOptions.js +5 -6
  93. package/lib/components/CartPage/PriceAdjustments/GiftOptions/{giftOptions.css → giftOptions.module.css} +0 -0
  94. package/lib/components/CartPage/PriceAdjustments/ShippingMethods/__tests__/__snapshots__/shippingForm.spec.js.snap +48 -0
  95. package/lib/components/CartPage/PriceAdjustments/ShippingMethods/__tests__/__snapshots__/shippingMethods.spec.js.snap +11 -0
  96. package/lib/components/CartPage/PriceAdjustments/ShippingMethods/__tests__/__snapshots__/shippingRadios.spec.js.snap +8 -8
  97. package/lib/components/CartPage/PriceAdjustments/ShippingMethods/shippingForm.js +3 -37
  98. package/lib/components/CartPage/PriceAdjustments/ShippingMethods/{shippingForm.css → shippingForm.module.css} +1 -1
  99. package/lib/components/CartPage/PriceAdjustments/ShippingMethods/shippingMethods.js +3 -4
  100. package/lib/components/CartPage/PriceAdjustments/ShippingMethods/{shippingMethods.css → shippingMethods.module.css} +1 -1
  101. package/lib/components/CartPage/PriceAdjustments/ShippingMethods/shippingRadio.js +1 -1
  102. package/lib/components/CartPage/PriceAdjustments/ShippingMethods/{shippingRadio.css → shippingRadio.module.css} +0 -0
  103. package/lib/components/CartPage/PriceAdjustments/ShippingMethods/shippingRadios.js +4 -4
  104. package/lib/components/CartPage/PriceAdjustments/ShippingMethods/{shippingRadios.css → shippingRadios.module.css} +1 -1
  105. package/lib/components/CartPage/PriceAdjustments/priceAdjustments.js +2 -2
  106. package/lib/components/CartPage/PriceAdjustments/{priceAdjustments.css → priceAdjustments.module.css} +0 -0
  107. package/lib/components/CartPage/PriceSummary/__tests__/__snapshots__/priceSummary.spec.js.snap +22 -0
  108. package/lib/components/CartPage/PriceSummary/priceSummary.js +3 -18
  109. package/lib/components/CartPage/PriceSummary/{priceSummary.css → priceSummary.module.css} +0 -0
  110. package/lib/components/CartPage/ProductListing/EditModal/__tests__/__snapshots__/productForm.spec.js.snap +77 -8
  111. package/lib/components/CartPage/ProductListing/EditModal/editModal.js +1 -1
  112. package/lib/components/CartPage/ProductListing/EditModal/productDetail.js +1 -1
  113. package/lib/components/CartPage/ProductListing/EditModal/{productDetail.css → productDetail.module.css} +0 -0
  114. package/lib/components/CartPage/ProductListing/EditModal/productForm.js +1 -76
  115. package/lib/components/CartPage/ProductListing/EditModal/{productForm.css → productForm.module.css} +3 -3
  116. package/lib/components/CartPage/ProductListing/__tests__/__snapshots__/product.spec.js.snap +36 -9
  117. package/lib/components/CartPage/ProductListing/product.js +3 -3
  118. package/lib/components/CartPage/ProductListing/{product.css → product.module.css} +0 -0
  119. package/lib/components/CartPage/ProductListing/productListing.js +5 -19
  120. package/lib/components/CartPage/ProductListing/{productListing.css → productListing.module.css} +0 -0
  121. package/lib/components/CartPage/ProductListing/quantity.js +1 -1
  122. package/lib/components/CartPage/ProductListing/{quantity.css → quantity.module.css} +1 -1
  123. package/lib/components/CartPage/__tests__/cartPage.spec.js +10 -1
  124. package/lib/components/CartPage/cartPage.js +4 -9
  125. package/lib/components/CartPage/{cartPage.css → cartPage.module.css} +0 -0
  126. package/lib/components/CategoryList/categoryList.js +3 -2
  127. package/lib/components/CategoryList/{categoryList.css → categoryList.module.css} +0 -0
  128. package/lib/components/CategoryList/categoryTile.js +9 -5
  129. package/lib/components/CategoryList/{categoryTile.css → categoryTile.module.css} +0 -0
  130. package/lib/components/CategoryTree/__tests__/categoryLeaf.spec.js +3 -3
  131. package/lib/components/CategoryTree/categoryBranch.js +1 -1
  132. package/lib/components/CategoryTree/categoryBranch.module.css +11 -0
  133. package/lib/components/CategoryTree/categoryLeaf.js +6 -5
  134. package/lib/components/CategoryTree/{categoryLeaf.css → categoryLeaf.module.css} +0 -0
  135. package/lib/components/CategoryTree/categoryTree.js +8 -3
  136. package/lib/components/CategoryTree/{categoryTree.css → categoryTree.module.css} +0 -0
  137. package/lib/components/Checkbox/__tests__/__snapshots__/checkbox.spec.js.snap +2 -2
  138. package/lib/components/Checkbox/checkbox.js +3 -6
  139. package/lib/components/Checkbox/{checkbox.css → checkbox.module.css} +0 -0
  140. package/lib/components/Checkout/Receipt/__tests__/__snapshots__/receipt.spec.js.snap +11 -0
  141. package/lib/components/Checkout/Receipt/receipt.js +1 -1
  142. package/lib/components/Checkout/Receipt/{receipt.css → receipt.module.css} +0 -0
  143. package/lib/components/Checkout/__tests__/__snapshots__/addressForm.spec.js.snap +46 -0
  144. package/lib/components/Checkout/__tests__/__snapshots__/checkoutButton.spec.js.snap +22 -0
  145. package/lib/components/Checkout/__tests__/__snapshots__/overview.spec.js.snap +66 -0
  146. package/lib/components/Checkout/__tests__/__snapshots__/paymentsForm.spec.js.snap +50 -4
  147. package/lib/components/Checkout/__tests__/__snapshots__/shippingform.spec.js.snap +46 -0
  148. package/lib/components/Checkout/addressForm.js +1 -1
  149. package/lib/components/Checkout/{addressForm.css → addressForm.module.css} +3 -3
  150. package/lib/components/Checkout/braintreeDropin.js +1 -1
  151. package/lib/components/Checkout/{braintreeDropin.css → braintreeDropin.module.css} +0 -0
  152. package/lib/components/Checkout/checkoutButton.js +1 -1
  153. package/lib/components/Checkout/{checkoutButton.css → checkoutButton.module.css} +1 -1
  154. package/lib/components/Checkout/flow.js +1 -1
  155. package/lib/components/Checkout/{flow.css → flow.module.css} +0 -0
  156. package/lib/components/Checkout/form.js +1 -1
  157. package/lib/components/Checkout/{form.css → form.module.css} +2 -2
  158. package/lib/components/Checkout/label.js +1 -1
  159. package/lib/components/Checkout/{label.css → label.module.css} +0 -0
  160. package/lib/components/Checkout/paymentsForm.js +1 -1
  161. package/lib/components/Checkout/{paymentsForm.css → paymentsForm.module.css} +3 -3
  162. package/lib/components/Checkout/section.js +1 -1
  163. package/lib/components/Checkout/{section.css → section.module.css} +0 -0
  164. package/lib/components/Checkout/shippingForm.js +1 -1
  165. package/lib/components/Checkout/shippingForm.module.css +19 -0
  166. package/lib/components/CheckoutPage/AddressBook/__tests__/__snapshots__/addressBook.spec.js.snap +76 -1
  167. package/lib/components/CheckoutPage/AddressBook/addressBook.js +23 -22
  168. package/lib/components/CheckoutPage/AddressBook/{addressBook.css → addressBook.module.css} +0 -0
  169. package/lib/components/CheckoutPage/AddressBook/addressCard.js +1 -1
  170. package/lib/components/CheckoutPage/AddressBook/{addressCard.css → addressCard.module.css} +0 -0
  171. package/lib/components/CheckoutPage/BillingAddress/__tests__/billingAddress.spec.js +1 -1
  172. package/lib/components/CheckoutPage/BillingAddress/billingAddress.js +1 -1
  173. package/lib/components/CheckoutPage/BillingAddress/{billingAddress.css → billingAddress.module.css} +0 -0
  174. package/lib/components/CheckoutPage/GuestSignIn/__tests__/__snapshots__/guestSignIn.spec.js.snap +33 -0
  175. package/lib/components/CheckoutPage/GuestSignIn/guestSignIn.js +1 -1
  176. package/lib/components/CheckoutPage/GuestSignIn/{guestSignIn.css → guestSignIn.module.css} +3 -3
  177. package/lib/components/CheckoutPage/ItemsReview/__tests__/__snapshots__/itemsReview.spec.js.snap +3 -3
  178. package/lib/components/CheckoutPage/ItemsReview/__tests__/__snapshots__/showAllButton.spec.js.snap +2 -2
  179. package/lib/components/CheckoutPage/ItemsReview/item.js +1 -1
  180. package/lib/components/CheckoutPage/ItemsReview/{item.css → item.module.css} +0 -0
  181. package/lib/components/CheckoutPage/ItemsReview/itemsReview.js +1 -1
  182. package/lib/components/CheckoutPage/ItemsReview/{itemsReview.css → itemsReview.module.css} +0 -0
  183. package/lib/components/CheckoutPage/ItemsReview/showAllButton.js +1 -1
  184. package/lib/components/CheckoutPage/ItemsReview/{showAllButton.css → showAllButton.module.css} +1 -1
  185. package/lib/components/CheckoutPage/OrderConfirmationPage/__tests__/__snapshots__/createAccount.spec.js.snap +54 -8
  186. package/lib/components/CheckoutPage/OrderConfirmationPage/createAccount.js +1 -1
  187. package/lib/components/CheckoutPage/OrderConfirmationPage/{createAccount.css → createAccount.module.css} +1 -1
  188. package/lib/components/CheckoutPage/OrderConfirmationPage/orderConfirmationPage.js +1 -1
  189. package/lib/components/CheckoutPage/OrderConfirmationPage/{orderConfirmationPage.css → orderConfirmationPage.module.css} +0 -0
  190. package/lib/components/CheckoutPage/OrderSummary/orderSummary.js +1 -1
  191. package/lib/components/CheckoutPage/OrderSummary/{orderSummary.css → orderSummary.module.css} +0 -0
  192. package/lib/components/CheckoutPage/PaymentInformation/__tests__/__snapshots__/braintreeSummary.spec.js.snap +33 -0
  193. package/lib/components/CheckoutPage/PaymentInformation/__tests__/__snapshots__/paymentInformation.spec.js.snap +80 -0
  194. package/lib/components/CheckoutPage/PaymentInformation/__tests__/braintreeSummary.spec.js +1 -1
  195. package/lib/components/CheckoutPage/PaymentInformation/__tests__/creditCard.spec.js +1 -1
  196. package/lib/components/CheckoutPage/PaymentInformation/__tests__/paymentInformation.spec.js +10 -0
  197. package/lib/components/CheckoutPage/PaymentInformation/brainTreeDropIn.js +1 -1
  198. package/lib/components/CheckoutPage/PaymentInformation/{braintreeDropin.css → braintreeDropin.module.css} +0 -0
  199. package/lib/components/CheckoutPage/PaymentInformation/braintreeSummary.js +14 -11
  200. package/lib/components/CheckoutPage/PaymentInformation/{braintreeSummary.css → braintreeSummary.module.css} +1 -1
  201. package/lib/components/CheckoutPage/PaymentInformation/creditCard.js +1 -1
  202. package/lib/components/CheckoutPage/PaymentInformation/{creditCard.css → creditCard.module.css} +0 -0
  203. package/lib/components/CheckoutPage/PaymentInformation/editCard.js +1 -1
  204. package/lib/components/CheckoutPage/PaymentInformation/{editCard.css → editCard.module.css} +0 -0
  205. package/lib/components/CheckoutPage/PaymentInformation/editModal.js +1 -2
  206. package/lib/components/CheckoutPage/PaymentInformation/paymentInformation.js +2 -4
  207. package/lib/components/CheckoutPage/PaymentInformation/{paymentInformation.css → paymentInformation.module.css} +1 -1
  208. package/lib/components/CheckoutPage/PaymentInformation/paymentMethods.js +2 -5
  209. package/lib/components/CheckoutPage/PaymentInformation/{paymentMethods.css → paymentMethods.module.css} +0 -0
  210. package/lib/components/CheckoutPage/PaymentInformation/summary.js +1 -1
  211. package/lib/components/CheckoutPage/PaymentInformation/{summary.css → summary.module.css} +0 -0
  212. package/lib/components/CheckoutPage/PriceAdjustments/priceAdjustments.js +1 -1
  213. package/lib/components/CheckoutPage/PriceAdjustments/{priceAdjustments.css → priceAdjustments.module.css} +0 -0
  214. package/lib/components/CheckoutPage/ShippingInformation/AddressForm/__tests__/__snapshots__/customerForm.spec.js.snap +62 -4
  215. package/lib/components/CheckoutPage/ShippingInformation/AddressForm/__tests__/__snapshots__/guestForm.spec.js.snap +70 -0
  216. package/lib/components/CheckoutPage/ShippingInformation/AddressForm/customerForm.js +1 -3
  217. package/lib/components/CheckoutPage/ShippingInformation/AddressForm/{customerForm.css → customerForm.module.css} +0 -0
  218. package/lib/components/CheckoutPage/ShippingInformation/AddressForm/guestForm.js +1 -3
  219. package/lib/components/CheckoutPage/ShippingInformation/AddressForm/{guestForm.css → guestForm.module.css} +0 -0
  220. package/lib/components/CheckoutPage/ShippingInformation/__tests__/__snapshots__/editModal.spec.js.snap +4 -4
  221. package/lib/components/CheckoutPage/ShippingInformation/__tests__/__snapshots__/shippingInformation.spec.js.snap +22 -0
  222. package/lib/components/CheckoutPage/ShippingInformation/card.js +1 -1
  223. package/lib/components/CheckoutPage/ShippingInformation/{card.css → card.module.css} +0 -0
  224. package/lib/components/CheckoutPage/ShippingInformation/editModal.js +1 -1
  225. package/lib/components/CheckoutPage/ShippingInformation/{editModal.css → editModal.module.css} +0 -0
  226. package/lib/components/CheckoutPage/ShippingInformation/shippingInformation.js +2 -4
  227. package/lib/components/CheckoutPage/ShippingInformation/{shippingInformation.css → shippingInformation.module.css} +1 -1
  228. package/lib/components/CheckoutPage/ShippingMethod/__tests__/__snapshots__/completedView.spec.js.snap +22 -0
  229. package/lib/components/CheckoutPage/ShippingMethod/__tests__/__snapshots__/shippingMethod.spec.js.snap +28 -4
  230. package/lib/components/CheckoutPage/ShippingMethod/__tests__/__snapshots__/updateModal.spec.js.snap +54 -8
  231. package/lib/components/CheckoutPage/ShippingMethod/__tests__/shippingMethod.spec.js +3 -3
  232. package/lib/components/CheckoutPage/ShippingMethod/completedView.js +1 -1
  233. package/lib/components/CheckoutPage/ShippingMethod/{completedView.css → completedView.module.css} +0 -0
  234. package/lib/components/CheckoutPage/ShippingMethod/shippingMethod.js +3 -6
  235. package/lib/components/CheckoutPage/ShippingMethod/{shippingMethod.css → shippingMethod.module.css} +0 -0
  236. package/lib/components/CheckoutPage/ShippingMethod/shippingRadios.js +1 -1
  237. package/lib/components/CheckoutPage/ShippingMethod/{shippingRadios.css → shippingRadios.module.css} +1 -1
  238. package/lib/components/CheckoutPage/ShippingMethod/updateModal.js +1 -1
  239. package/lib/components/CheckoutPage/ShippingMethod/{updateModal.css → updateModal.module.css} +0 -0
  240. package/lib/components/CheckoutPage/__tests__/__snapshots__/checkoutPage.spec.js.snap +170 -1
  241. package/lib/components/CheckoutPage/__tests__/checkoutPage.spec.js +28 -2
  242. package/lib/components/CheckoutPage/checkoutPage.js +1 -1
  243. package/lib/components/CheckoutPage/{checkoutPage.css → checkoutPage.module.css} +4 -4
  244. package/lib/components/CmsBlock/cmsBlock.js +1 -1
  245. package/lib/components/CmsBlock/{cmsBlock.css → cmsBlock.module.css} +0 -0
  246. package/lib/components/CommunicationsPage/__tests__/__snapshots__/communicationsPage.spec.js.snap +56 -14
  247. package/lib/components/CommunicationsPage/__tests__/communicationsPage.spec.js +4 -17
  248. package/lib/components/CommunicationsPage/communicationsPage.js +2 -13
  249. package/lib/components/CommunicationsPage/{communicationsPage.css → communicationsPage.module.css} +0 -0
  250. package/lib/components/Country/country.js +1 -1
  251. package/lib/components/Country/{country.css → country.module.css} +0 -0
  252. package/lib/components/CreateAccount/__tests__/__snapshots__/createAccount.spec.js.snap +54 -8
  253. package/lib/components/CreateAccount/__tests__/createAccount.spec.js +1 -2
  254. package/lib/components/CreateAccount/createAccount.js +1 -7
  255. package/lib/components/CreateAccount/{createAccount.css → createAccount.module.css} +2 -2
  256. package/lib/components/CreateAccountPage/__tests__/__snapshots__/createAccountPage.spec.js.snap +12 -9
  257. package/lib/components/CreateAccountPage/__tests__/createAccountPage.spec.js +21 -15
  258. package/lib/components/CreateAccountPage/createAccountPage.js +34 -13
  259. package/lib/components/CreateAccountPage/createAccountPage.module.css +20 -0
  260. package/lib/components/Dialog/__stories__/dialog.js +1 -1
  261. package/lib/components/Dialog/__stories__/{dialog.css → dialog.module.css} +0 -0
  262. package/lib/components/Dialog/__tests__/__snapshots__/dialog.spec.js.snap +150 -12
  263. package/lib/components/Dialog/dialog.js +1 -1
  264. package/lib/components/Dialog/{dialog.css → dialog.module.css} +2 -2
  265. package/lib/components/ErrorMessage/errorMessage.js +1 -1
  266. package/lib/components/ErrorMessage/{errorMessage.css → errorMessage.module.css} +0 -0
  267. package/lib/components/ErrorView/errorView.js +1 -1
  268. package/lib/components/ErrorView/{errorView.css → errorView.module.css} +0 -0
  269. package/lib/components/Field/field.js +1 -1
  270. package/lib/components/Field/{field.css → field.module.css} +0 -0
  271. package/lib/components/Field/fieldIcons.js +1 -1
  272. package/lib/components/Field/{fieldIcons.css → fieldIcons.module.css} +0 -0
  273. package/lib/components/Field/message.js +1 -1
  274. package/lib/components/Field/{message.css → message.module.css} +0 -0
  275. package/lib/components/FilterModal/CurrentFilters/__tests__/currentFilter.spec.js +73 -0
  276. package/lib/components/FilterModal/CurrentFilters/__tests__/currentFilters.spec.js +60 -0
  277. package/lib/components/FilterModal/CurrentFilters/currentFilter.js +1 -1
  278. package/lib/components/FilterModal/CurrentFilters/{currentFilter.css → currentFilter.module.css} +0 -0
  279. package/lib/components/FilterModal/CurrentFilters/currentFilters.js +1 -1
  280. package/lib/components/FilterModal/CurrentFilters/{currentFilters.css → currentFilters.module.css} +0 -0
  281. package/lib/components/FilterModal/FilterList/__tests__/filterDefault.spec.js +77 -0
  282. package/lib/components/FilterModal/FilterList/__tests__/filterItem.spec.js +1 -6
  283. package/lib/components/FilterModal/FilterList/__tests__/filterList.spec.js +94 -0
  284. package/lib/components/FilterModal/FilterList/filterDefault.js +2 -9
  285. package/lib/components/FilterModal/FilterList/{filterDefault.css → filterDefault.module.css} +0 -0
  286. package/lib/components/FilterModal/FilterList/filterItem.js +1 -2
  287. package/lib/components/FilterModal/FilterList/filterList.js +11 -16
  288. package/lib/components/FilterModal/FilterList/{filterList.css → filterList.module.css} +0 -4
  289. package/lib/components/FilterModal/__tests__/filterBlock.spec.js +77 -0
  290. package/lib/components/FilterModal/__tests__/filterFooter.spec.js +59 -0
  291. package/lib/components/FilterModal/__tests__/filterModal.spec.js +42 -3
  292. package/lib/components/FilterModal/filterBlock.js +16 -16
  293. package/lib/components/FilterModal/{filterBlock.css → filterBlock.module.css} +0 -9
  294. package/lib/components/FilterModal/filterFooter.js +1 -1
  295. package/lib/components/FilterModal/{filterFooter.css → filterFooter.module.css} +0 -0
  296. package/lib/components/FilterModal/filterModal.js +2 -2
  297. package/lib/components/FilterModal/{filterModal.css → filterModal.module.css} +0 -0
  298. package/lib/components/FilterModal/{filterSearch.css → filterSearch.module.css} +0 -0
  299. package/lib/components/FilterModalOpenButton/__tests__/filterModalOpenButton.shimmer.spec.js +63 -0
  300. package/lib/components/FilterModalOpenButton/__tests__/filterModalOpenButton.spec.js +43 -0
  301. package/lib/components/FilterModalOpenButton/filterModalOpenButton.js +5 -3
  302. package/lib/components/FilterModalOpenButton/{filterModalOpenButton.css → filterModalOpenButton.module.css} +1 -1
  303. package/lib/components/FilterModalOpenButton/filterModalOpenButton.shimmer.js +27 -0
  304. package/lib/components/FilterModalOpenButton/filterModalOpenButton.shimmer.module.css +4 -0
  305. package/lib/components/FilterModalOpenButton/index.js +3 -0
  306. package/lib/components/FilterSidebar/__tests__/filterSidebar.spec.js +82 -5
  307. package/lib/components/FilterSidebar/filterSidebar.js +26 -23
  308. package/lib/components/FilterSidebar/{filterSidebar.css → filterSidebar.module.css} +0 -0
  309. package/lib/components/FilterSidebar/filterSidebar.shimmer.js +24 -0
  310. package/lib/components/FilterSidebar/index.js +1 -0
  311. package/lib/components/Footer/__tests__/__snapshots__/footer.spec.js.snap +3 -3
  312. package/lib/components/Footer/footer.js +3 -3
  313. package/lib/components/Footer/{footer.css → footer.module.css} +0 -0
  314. package/lib/components/ForgotPassword/ForgotPasswordForm/__tests__/__snapshots__/forgotPasswordForm.spec.js.snap +23 -0
  315. package/lib/components/ForgotPassword/ForgotPasswordForm/forgotPasswordForm.js +1 -1
  316. package/lib/components/ForgotPassword/ForgotPasswordForm/{forgotPasswordForm.css → forgotPasswordForm.module.css} +2 -2
  317. package/lib/components/ForgotPassword/FormSubmissionSuccessful/formSubmissionSuccessful.js +1 -1
  318. package/lib/components/ForgotPassword/FormSubmissionSuccessful/{formSubmissionSuccessful.css → formSubmissionSuccessful.module.css} +0 -0
  319. package/lib/components/ForgotPassword/forgotPassword.js +1 -1
  320. package/lib/components/ForgotPassword/{forgotPassword.css → forgotPassword.module.css} +0 -0
  321. package/lib/components/ForgotPasswordPage/__tests__/__snapshots__/forgotPasswordPage.spec.js.snap +16 -0
  322. package/lib/components/ForgotPasswordPage/__tests__/forgotPasswordPage.spec.js +34 -0
  323. package/lib/components/ForgotPasswordPage/forgotPasswordPage.js +53 -0
  324. package/lib/components/ForgotPasswordPage/forgotPasswordPage.module.css +20 -0
  325. package/lib/components/ForgotPasswordPage/index.js +1 -0
  326. package/lib/components/FormError/formError.js +1 -1
  327. package/lib/components/FormError/{formError.css → formError.module.css} +0 -0
  328. package/lib/components/Gallery/__tests__/__snapshots__/addToCartButton.spec.js.snap +177 -0
  329. package/lib/components/Gallery/__tests__/__snapshots__/gallery.spec.js.snap +64 -4
  330. package/lib/components/Gallery/__tests__/__snapshots__/item.spec.js.snap +54 -8
  331. package/lib/components/Gallery/__tests__/addToCartButton.spec.js +44 -0
  332. package/lib/components/Gallery/__tests__/gallery.shimmer.spec.js +75 -0
  333. package/lib/components/Gallery/__tests__/gallery.spec.js +19 -8
  334. package/lib/components/Gallery/__tests__/item.spec.js +19 -5
  335. package/lib/components/Gallery/addToCartButton.js +109 -0
  336. package/lib/components/Gallery/addToCartButton.module.css +36 -0
  337. package/lib/components/Gallery/gallery.js +4 -3
  338. package/lib/components/Gallery/{gallery.css → gallery.module.css} +0 -0
  339. package/lib/components/Gallery/gallery.shimmer.js +39 -0
  340. package/lib/components/Gallery/index.js +2 -0
  341. package/lib/components/Gallery/item.js +58 -40
  342. package/lib/components/Gallery/{item.css → item.module.css} +24 -30
  343. package/lib/components/Gallery/item.shimmer.js +38 -0
  344. package/lib/components/Header/__stories__/header.js +1 -1
  345. package/lib/components/Header/__tests__/__snapshots__/cartTrigger.spec.js.snap +12 -12
  346. package/lib/components/Header/__tests__/__snapshots__/header.spec.js.snap +4 -25
  347. package/lib/components/Header/__tests__/cartTrigger.spec.js +7 -8
  348. package/lib/components/Header/__tests__/currencySwitcher.spec.js +0 -1
  349. package/lib/components/Header/__tests__/header.spec.js +6 -4
  350. package/lib/components/Header/__tests__/storeSwitcher.spec.js +0 -1
  351. package/lib/components/Header/accountTrigger.js +1 -1
  352. package/lib/components/Header/{accountTrigger.css → accountTrigger.module.css} +1 -1
  353. package/lib/components/Header/cartTrigger.js +1 -1
  354. package/lib/components/Header/{cartTrigger.css → cartTrigger.module.css} +1 -1
  355. package/lib/components/Header/currencySwitcher.js +6 -3
  356. package/lib/components/Header/{currencySwitcher.css → currencySwitcher.module.css} +0 -0
  357. package/lib/components/Header/currencySwitcher.shimmer.js +6 -0
  358. package/lib/components/Header/header.js +4 -7
  359. package/lib/components/Header/{header.css → header.module.css} +1 -1
  360. package/lib/components/Header/navTrigger.js +1 -1
  361. package/lib/components/Header/{navTrigger.css → navTrigger.module.css} +1 -1
  362. package/lib/components/Header/onlineIndicator.js +1 -1
  363. package/lib/components/Header/{onlineIndicator.css → onlineIndicator.module.css} +0 -0
  364. package/lib/components/Header/searchTrigger.js +1 -1
  365. package/lib/components/Header/{searchTrigger.css → searchTrigger.module.css} +1 -1
  366. package/lib/components/Header/storeSwitcher.js +5 -2
  367. package/lib/components/Header/{storeSwitcher.css → storeSwitcher.module.css} +0 -0
  368. package/lib/components/Header/storeSwitcher.shimmer.js +6 -0
  369. package/lib/components/Header/switcherItem.js +1 -1
  370. package/lib/components/Header/{switcherItem.css → switcherItem.module.css} +0 -0
  371. package/lib/components/HomePage/homePage.ee.js +1 -1
  372. package/lib/components/HomePage/{homePage.css → homePage.module.css} +5 -0
  373. package/lib/components/Icon/icon.js +3 -3
  374. package/lib/components/Icon/{icon.css → icon.module.css} +0 -0
  375. package/lib/components/Image/__stories__/image.js +1 -1
  376. package/lib/components/Image/__stories__/{image.css → image.module.css} +0 -0
  377. package/lib/components/Image/image.js +1 -1
  378. package/lib/components/Image/{image.css → image.module.css} +1 -1
  379. package/lib/components/LegacyMiniCart/__tests__/__snapshots__/cartOptions.spec.js.snap +2 -2
  380. package/lib/components/LegacyMiniCart/__tests__/__snapshots__/header.spec.js.snap +10 -1
  381. package/lib/components/LegacyMiniCart/__tests__/__snapshots__/kebab.spec.js.snap +20 -2
  382. package/lib/components/LegacyMiniCart/__tests__/__snapshots__/miniCart.spec.js.snap +2 -2
  383. package/lib/components/LegacyMiniCart/__tests__/__snapshots__/section.spec.js.snap +20 -2
  384. package/lib/components/LegacyMiniCart/body.js +1 -1
  385. package/lib/components/LegacyMiniCart/{body.css → body.module.css} +0 -0
  386. package/lib/components/LegacyMiniCart/cartOptions.gql.js +1 -2
  387. package/lib/components/LegacyMiniCart/cartOptions.js +1 -1
  388. package/lib/components/LegacyMiniCart/{cartOptions.css → cartOptions.module.css} +2 -2
  389. package/lib/components/LegacyMiniCart/emptyMiniCartBody.js +1 -1
  390. package/lib/components/LegacyMiniCart/{emptyMiniCartBody.css → emptyMiniCartBody.module.css} +1 -1
  391. package/lib/components/LegacyMiniCart/footer.js +1 -1
  392. package/lib/components/LegacyMiniCart/{footer.css → footer.module.css} +0 -0
  393. package/lib/components/LegacyMiniCart/header.js +1 -1
  394. package/lib/components/LegacyMiniCart/{header.css → header.module.css} +0 -0
  395. package/lib/components/LegacyMiniCart/kebab.js +1 -1
  396. package/lib/components/LegacyMiniCart/{kebab.css → kebab.module.css} +0 -0
  397. package/lib/components/LegacyMiniCart/mask.js +1 -1
  398. package/lib/components/LegacyMiniCart/mask.module.css +4 -0
  399. package/lib/components/LegacyMiniCart/miniCart.js +1 -1
  400. package/lib/components/LegacyMiniCart/{miniCart.css → miniCart.module.css} +0 -0
  401. package/lib/components/LegacyMiniCart/product.js +1 -1
  402. package/lib/components/LegacyMiniCart/{product.css → product.module.css} +0 -0
  403. package/lib/components/LegacyMiniCart/productList.js +1 -1
  404. package/lib/components/LegacyMiniCart/{productList.css → productList.module.css} +0 -0
  405. package/lib/components/LegacyMiniCart/productOptions.js +1 -1
  406. package/lib/components/LegacyMiniCart/{productOptions.css → productOptions.module.css} +0 -0
  407. package/lib/components/LegacyMiniCart/section.js +1 -1
  408. package/lib/components/LegacyMiniCart/{section.css → section.module.css} +1 -1
  409. package/lib/components/LegacyMiniCart/totalsSummary.js +1 -1
  410. package/lib/components/LegacyMiniCart/{totalsSummary.css → totalsSummary.module.css} +0 -0
  411. package/lib/components/Link/__tests__/link.spec.js +53 -0
  412. package/lib/components/Link/index.js +1 -0
  413. package/lib/components/Link/link.js +38 -0
  414. package/lib/components/LinkButton/linkButton.js +1 -1
  415. package/lib/components/LinkButton/{linkButton.css → linkButton.module.css} +1 -1
  416. package/lib/components/LoadingIndicator/index.js +1 -0
  417. package/lib/components/LoadingIndicator/indicator.js +1 -1
  418. package/lib/components/LoadingIndicator/{indicator.css → indicator.module.css} +0 -0
  419. package/lib/components/{PageLoadingIndicator/indicator.js → LoadingIndicator/spinner.js} +3 -3
  420. package/lib/components/{PageLoadingIndicator/indicator.css → LoadingIndicator/spinner.module.css} +0 -0
  421. package/lib/components/Logo/logo.js +6 -7
  422. package/lib/components/MagentoRoute/magentoRoute.js +12 -6
  423. package/lib/components/Main/main.js +1 -1
  424. package/lib/components/Main/{main.css → main.module.css} +0 -0
  425. package/lib/components/Mask/mask.js +12 -50
  426. package/lib/components/Mask/{mask.css → mask.module.css} +0 -0
  427. package/lib/components/MegaMenu/__tests__/MegaMenu.spec.js +48 -15
  428. package/lib/components/MegaMenu/__tests__/MegaMenuItem.spec.js +66 -26
  429. package/lib/components/MegaMenu/__tests__/Submenu.spec.js +16 -4
  430. package/lib/components/MegaMenu/__tests__/SubmenuColumn.spec.js +2 -3
  431. package/lib/components/MegaMenu/__tests__/__snapshots__/MegaMenu.spec.js.snap +35 -3
  432. package/lib/components/MegaMenu/__tests__/__snapshots__/MegaMenuItem.spec.js.snap +47 -56
  433. package/lib/components/MegaMenu/__tests__/__snapshots__/Submenu.spec.js.snap +40 -45
  434. package/lib/components/MegaMenu/__tests__/__snapshots__/SubmenuColumn.spec.js.snap +2 -2
  435. package/lib/components/MegaMenu/megaMenu.js +32 -7
  436. package/lib/components/MegaMenu/{megaMenu.css → megaMenu.module.css} +0 -0
  437. package/lib/components/MegaMenu/megaMenuItem.js +80 -12
  438. package/lib/components/MegaMenu/{megaMenuItem.css → megaMenuItem.module.css} +10 -0
  439. package/lib/components/MegaMenu/submenu.js +45 -9
  440. package/lib/components/MegaMenu/{submenu.css → submenu.module.css} +5 -0
  441. package/lib/components/MegaMenu/submenuColumn.js +33 -11
  442. package/lib/components/MegaMenu/{submenuColumn.css → submenuColumn.module.css} +0 -0
  443. package/lib/components/MiniCart/ProductList/__tests__/__snapshots__/item.spec.js.snap +12 -12
  444. package/lib/components/MiniCart/ProductList/item.js +5 -4
  445. package/lib/components/MiniCart/ProductList/{item.css → item.module.css} +0 -0
  446. package/lib/components/MiniCart/ProductList/productList.js +11 -3
  447. package/lib/components/MiniCart/ProductList/{productList.css → productList.module.css} +0 -0
  448. package/lib/components/MiniCart/__tests__/__snapshots__/miniCart.spec.js.snap +22 -0
  449. package/lib/components/MiniCart/miniCart.gql.js +1 -1
  450. package/lib/components/MiniCart/miniCart.js +4 -2
  451. package/lib/components/MiniCart/{miniCart.css → miniCart.module.css} +1 -1
  452. package/lib/components/MyAccount/ResetPassword/__tests__/__snapshots__/resetPassword.spec.js.snap +50 -4
  453. package/lib/components/MyAccount/ResetPassword/resetPassword.js +1 -1
  454. package/lib/components/MyAccount/ResetPassword/{resetPassword.css → resetPassword.module.css} +1 -1
  455. package/lib/components/MyAccount/accountLink.js +1 -1
  456. package/lib/components/MyAccount/{accountLink.css → accountLink.module.css} +0 -0
  457. package/lib/components/MyAccount/myAccount.js +1 -1
  458. package/lib/components/MyAccount/{myAccount.css → myAccount.module.css} +0 -0
  459. package/lib/components/Navigation/__tests__/__snapshots__/navHeader.spec.js.snap +2 -2
  460. package/lib/components/Navigation/navHeader.js +3 -3
  461. package/lib/components/Navigation/{navHeader.css → navHeader.module.css} +0 -0
  462. package/lib/components/Navigation/navigation.js +1 -1
  463. package/lib/components/Navigation/{navigation.css → navigation.module.css} +0 -0
  464. package/lib/components/OrderHistoryPage/OrderDetails/__tests__/__snapshots__/item.spec.js.snap +12 -1
  465. package/lib/components/OrderHistoryPage/OrderDetails/__tests__/__snapshots__/orderDetails.spec.js.snap +75 -2
  466. package/lib/components/OrderHistoryPage/OrderDetails/__tests__/orderDetails.spec.js +42 -0
  467. package/lib/components/OrderHistoryPage/OrderDetails/billingInformation.js +1 -1
  468. package/lib/components/OrderHistoryPage/OrderDetails/{billingInformation.css → billingInformation.module.css} +0 -0
  469. package/lib/components/OrderHistoryPage/OrderDetails/item.js +1 -1
  470. package/lib/components/OrderHistoryPage/OrderDetails/{item.css → item.module.css} +0 -0
  471. package/lib/components/OrderHistoryPage/OrderDetails/items.js +1 -1
  472. package/lib/components/OrderHistoryPage/OrderDetails/{items.css → items.module.css} +0 -0
  473. package/lib/components/OrderHistoryPage/OrderDetails/orderDetails.js +26 -8
  474. package/lib/components/OrderHistoryPage/OrderDetails/{orderDetails.css → orderDetails.module.css} +0 -0
  475. package/lib/components/OrderHistoryPage/OrderDetails/orderTotal.js +1 -1
  476. package/lib/components/OrderHistoryPage/OrderDetails/{orderTotal.css → orderTotal.module.css} +0 -0
  477. package/lib/components/OrderHistoryPage/OrderDetails/paymentMethod.js +1 -1
  478. package/lib/components/OrderHistoryPage/OrderDetails/{paymentMethod.css → paymentMethod.module.css} +0 -0
  479. package/lib/components/OrderHistoryPage/OrderDetails/shippingInformation.js +1 -1
  480. package/lib/components/OrderHistoryPage/OrderDetails/{shippingInformation.css → shippingInformation.module.css} +0 -0
  481. package/lib/components/OrderHistoryPage/OrderDetails/shippingMethod.js +1 -1
  482. package/lib/components/OrderHistoryPage/OrderDetails/{shippingMethod.css → shippingMethod.module.css} +0 -0
  483. package/lib/components/OrderHistoryPage/__tests__/__snapshots__/orderHistoryPage.spec.js.snap +81 -1
  484. package/lib/components/OrderHistoryPage/__tests__/__snapshots__/orderRow.spec.js.snap +297 -0
  485. package/lib/components/OrderHistoryPage/__tests__/orderRow.spec.js +36 -0
  486. package/lib/components/OrderHistoryPage/collapsedImageGallery.js +1 -1
  487. package/lib/components/OrderHistoryPage/{collapsedImageGallery.css → collapsedImageGallery.module.css} +0 -0
  488. package/lib/components/OrderHistoryPage/orderHistoryPage.js +1 -1
  489. package/lib/components/OrderHistoryPage/{orderHistoryPage.css → orderHistoryPage.module.css} +2 -2
  490. package/lib/components/OrderHistoryPage/orderProgressBar.js +1 -1
  491. package/lib/components/OrderHistoryPage/{orderProgressBar.css → orderProgressBar.module.css} +0 -0
  492. package/lib/components/OrderHistoryPage/orderRow.js +9 -4
  493. package/lib/components/OrderHistoryPage/{orderRow.css → orderRow.module.css} +0 -0
  494. package/lib/components/PageLoadingIndicator/__tests__/pageLoadingIndicator.spec.js +63 -0
  495. package/lib/components/PageLoadingIndicator/index.js +1 -1
  496. package/lib/components/PageLoadingIndicator/pageLoadingIndicator.js +35 -0
  497. package/lib/components/PageLoadingIndicator/pageLoadingIndicator.module.css +39 -0
  498. package/lib/components/Pagination/navButton.js +1 -1
  499. package/lib/components/Pagination/{navButton.css → navButton.module.css} +2 -2
  500. package/lib/components/Pagination/pagination.js +1 -1
  501. package/lib/components/Pagination/{pagination.css → pagination.module.css} +0 -0
  502. package/lib/components/Pagination/tile.js +1 -1
  503. package/lib/components/Pagination/{tile.css → tile.module.css} +0 -0
  504. package/lib/components/Password/__tests__/__snapshots__/password.spec.js.snap +26 -4
  505. package/lib/components/Password/password.js +1 -1
  506. package/lib/components/Password/{password.css → password.module.css} +1 -1
  507. package/lib/components/Postcode/postcode.js +1 -1
  508. package/lib/components/Postcode/{postcode.css → postcode.module.css} +0 -0
  509. package/lib/components/ProductFullDetail/__tests__/__snapshots__/productFullDetail.spec.js.snap +369 -110
  510. package/lib/components/ProductFullDetail/__tests__/productFullDetail.spec.js +46 -3
  511. package/lib/components/ProductFullDetail/productFullDetail.js +27 -15
  512. package/lib/components/ProductFullDetail/{productFullDetail.css → productFullDetail.module.css} +3 -3
  513. package/lib/components/ProductImageCarousel/__tests__/__snapshots__/carousel.spec.js.snap +71 -19
  514. package/lib/components/ProductImageCarousel/__tests__/__snapshots__/thumbnail.spec.js.snap +16 -13
  515. package/lib/components/ProductImageCarousel/__tests__/carousel.spec.js +4 -4
  516. package/lib/components/ProductImageCarousel/__tests__/thumbnail.spec.js +2 -2
  517. package/lib/components/ProductImageCarousel/carousel.js +30 -14
  518. package/lib/components/ProductImageCarousel/{carousel.css → carousel.module.css} +10 -2
  519. package/lib/components/ProductImageCarousel/carousel.shimmer.js +51 -0
  520. package/lib/components/ProductImageCarousel/carousel.shimmer.module.css +7 -0
  521. package/lib/components/ProductImageCarousel/thumbnail.js +5 -4
  522. package/lib/components/ProductImageCarousel/{thumbnail.css → thumbnail.module.css} +0 -0
  523. package/lib/components/ProductOptions/__tests__/__snapshots__/option.spec.js.snap +3 -5
  524. package/lib/components/ProductOptions/__tests__/__snapshots__/options.spec.js.snap +6 -10
  525. package/lib/components/ProductOptions/__tests__/__snapshots__/swatch.spec.js.snap +4 -4
  526. package/lib/components/ProductOptions/index.js +1 -0
  527. package/lib/components/ProductOptions/option.js +2 -4
  528. package/lib/components/ProductOptions/{option.css → option.module.css} +1 -0
  529. package/lib/components/ProductOptions/option.shimmer.js +25 -0
  530. package/lib/components/ProductOptions/options.shimmer.js +16 -0
  531. package/lib/components/ProductOptions/swatch.js +1 -1
  532. package/lib/components/ProductOptions/{swatch.css → swatch.module.css} +1 -1
  533. package/lib/components/ProductOptions/swatchList.js +1 -1
  534. package/lib/components/ProductOptions/swatchList.module.css +3 -0
  535. package/lib/components/ProductOptions/tile.js +1 -1
  536. package/lib/components/ProductOptions/{tile.css → tile.module.css} +1 -1
  537. package/lib/components/ProductOptions/tileList.js +1 -1
  538. package/lib/components/ProductOptions/{tileList.css → tileList.module.css} +0 -0
  539. package/lib/components/ProductOptions/tileList.shimmer.js +32 -0
  540. package/lib/components/ProductQuantity/quantity.js +1 -1
  541. package/lib/components/ProductQuantity/{quantity.css → quantity.module.css} +0 -0
  542. package/lib/components/ProductSort/__tests__/__snapshots__/productSort.spec.js.snap +17 -3
  543. package/lib/components/ProductSort/__tests__/productSort.shimmer.spec.js +63 -0
  544. package/lib/components/ProductSort/index.js +1 -0
  545. package/lib/components/ProductSort/productSort.js +7 -2
  546. package/lib/components/ProductSort/{productSort.css → productSort.module.css} +3 -3
  547. package/lib/components/ProductSort/productSort.shimmer.js +28 -0
  548. package/lib/components/ProductSort/productSort.shimmer.module.css +14 -0
  549. package/lib/components/ProductSort/sortItem.js +1 -1
  550. package/lib/components/ProductSort/{sortItem.css → sortItem.module.css} +0 -0
  551. package/lib/components/RadioGroup/__tests__/__snapshots__/radioGroup.spec.js.snap +32 -32
  552. package/lib/components/RadioGroup/radio.js +1 -1
  553. package/lib/components/RadioGroup/{radio.css → radio.module.css} +0 -0
  554. package/lib/components/RadioGroup/radioGroup.js +3 -2
  555. package/lib/components/RadioGroup/{radioGroup.css → radioGroup.module.css} +0 -0
  556. package/lib/components/Region/region.js +1 -1
  557. package/lib/components/Region/{region.css → region.module.css} +0 -0
  558. package/lib/components/RichContent/richContent.js +1 -1
  559. package/lib/components/RichContent/{richContent.css → richContent.module.css} +0 -0
  560. package/lib/components/RichText/richText.js +1 -1
  561. package/lib/components/RichText/{richText.css → richText.module.css} +0 -0
  562. package/lib/components/Routes/__tests__/authRoute.spec.js +55 -0
  563. package/lib/components/Routes/authRoute.js +36 -0
  564. package/lib/components/Routes/routes.js +3 -1
  565. package/lib/components/SavedPaymentsPage/__tests__/__snapshots__/creditCard.spec.js.snap +76 -1
  566. package/lib/components/SavedPaymentsPage/creditCard.js +1 -1
  567. package/lib/components/SavedPaymentsPage/{creditCard.css → creditCard.module.css} +3 -3
  568. package/lib/components/SavedPaymentsPage/savedPaymentsPage.js +1 -1
  569. package/lib/components/SavedPaymentsPage/{savedPaymentsPage.css → savedPaymentsPage.module.css} +0 -0
  570. package/lib/components/ScrollAnchor/scrollAnchor.js +1 -1
  571. package/lib/components/ScrollAnchor/{scrollAnchor.css → scrollAnchor.module.css} +0 -0
  572. package/lib/components/SearchBar/__stories__/searchBar.js +1 -1
  573. package/lib/components/SearchBar/__tests__/__snapshots__/suggestedCategories.spec.js.snap +24 -4
  574. package/lib/components/SearchBar/__tests__/__snapshots__/suggestedProduct.spec.js.snap +1 -1
  575. package/lib/components/SearchBar/__tests__/suggestedCategories.spec.js +5 -6
  576. package/lib/components/SearchBar/autocomplete.js +1 -1
  577. package/lib/components/SearchBar/{autocomplete.css → autocomplete.module.css} +0 -0
  578. package/lib/components/SearchBar/searchBar.js +1 -1
  579. package/lib/components/SearchBar/{searchBar.css → searchBar.module.css} +1 -0
  580. package/lib/components/SearchBar/suggestedCategories.js +1 -1
  581. package/lib/components/SearchBar/{suggestedCategories.css → suggestedCategories.module.css} +0 -0
  582. package/lib/components/SearchBar/suggestedCategory.js +1 -1
  583. package/lib/components/SearchBar/{suggestedCategory.css → suggestedCategory.module.css} +0 -0
  584. package/lib/components/SearchBar/suggestedProduct.js +1 -1
  585. package/lib/components/SearchBar/{suggestedProduct.css → suggestedProduct.module.css} +0 -0
  586. package/lib/components/SearchBar/suggestedProducts.js +1 -1
  587. package/lib/components/SearchBar/{suggestedProducts.css → suggestedProducts.module.css} +0 -0
  588. package/lib/components/SearchBar/suggestions.js +1 -1
  589. package/lib/components/SearchBar/{suggestions.css → suggestions.module.css} +0 -0
  590. package/lib/components/SearchPage/__tests__/__snapshots__/searchPage.spec.js.snap +63 -90
  591. package/lib/components/SearchPage/__tests__/searchPage.spec.js +27 -5
  592. package/lib/components/SearchPage/searchPage.js +41 -9
  593. package/lib/components/SearchPage/{searchPage.css → searchPage.module.css} +0 -0
  594. package/lib/components/Select/select.js +1 -1
  595. package/lib/components/Select/{select.css → select.module.css} +1 -1
  596. package/lib/components/Shimmer/__stories__/shimmer.js +72 -0
  597. package/lib/components/Shimmer/__tests__/__snapshots__/shimmer.spec.js.snap +12 -0
  598. package/lib/components/Shimmer/__tests__/shimmer.spec.js +74 -0
  599. package/lib/components/Shimmer/index.js +1 -0
  600. package/lib/components/Shimmer/shimmer.js +101 -0
  601. package/lib/components/Shimmer/shimmer.module.css +77 -0
  602. package/lib/components/SignIn/__tests__/__snapshots__/signIn.spec.js.snap +4 -4
  603. package/lib/components/SignIn/signIn.gql.js +1 -2
  604. package/lib/components/SignIn/signIn.js +3 -3
  605. package/lib/components/SignIn/{signIn.css → signIn.module.css} +2 -1
  606. package/lib/components/SignInPage/__tests__/__snapshots__/signInPage.spec.js.snap +16 -0
  607. package/lib/components/SignInPage/__tests__/signInPage.spec.js +31 -0
  608. package/lib/components/SignInPage/index.js +1 -0
  609. package/lib/components/SignInPage/signInPage.js +55 -0
  610. package/lib/components/SignInPage/signInPage.module.css +20 -0
  611. package/lib/components/SortedByContainer/__tests__/sortedByContainer.shimmer.spec.js +36 -0
  612. package/lib/components/SortedByContainer/index.js +3 -0
  613. package/lib/components/SortedByContainer/sortedByContainer.js +2 -2
  614. package/lib/components/SortedByContainer/sortedByContainer.module.css +16 -0
  615. package/lib/components/SortedByContainer/sortedByContainer.shimmer.js +24 -0
  616. package/lib/components/StockStatusMessage/stockStatusMessage.js +1 -1
  617. package/lib/components/StockStatusMessage/{stockStatusMessage.css → stockStatusMessage.module.css} +0 -0
  618. package/lib/components/StoreCodeRoute/storeCodeRoute.js +3 -3
  619. package/lib/components/TextArea/textArea.js +3 -2
  620. package/lib/components/TextArea/{textArea.css → textArea.module.css} +1 -1
  621. package/lib/components/TextInput/textInput.js +3 -2
  622. package/lib/components/TextInput/{textInput.css → textInput.module.css} +2 -2
  623. package/lib/components/ToastContainer/toast.js +1 -1
  624. package/lib/components/ToastContainer/{toast.css → toast.module.css} +0 -0
  625. package/lib/components/ToastContainer/toastContainer.js +1 -1
  626. package/lib/components/ToastContainer/{toastContainer.css → toastContainer.module.css} +0 -0
  627. package/lib/components/Trigger/trigger.js +1 -1
  628. package/lib/components/Trigger/trigger.module.css +3 -0
  629. package/lib/components/Wishlist/AddToListButton/__tests__/__snapshots__/addToListButton.ce.spec.js.snap +26 -3
  630. package/lib/components/Wishlist/AddToListButton/__tests__/__snapshots__/addToListButton.ee.spec.js.snap +39 -3
  631. package/lib/components/Wishlist/AddToListButton/__tests__/__snapshots__/useCommonToasts.spec.js.snap +30 -3
  632. package/lib/components/Wishlist/AddToListButton/__tests__/addToListButton.ce.spec.js +18 -3
  633. package/lib/components/Wishlist/AddToListButton/__tests__/addToListButton.ee.spec.js +22 -3
  634. package/lib/components/Wishlist/AddToListButton/addToListButton.ce.js +7 -3
  635. package/lib/components/Wishlist/AddToListButton/addToListButton.ee.js +10 -3
  636. package/lib/components/Wishlist/AddToListButton/{addToListButton.css → addToListButton.module.css} +3 -4
  637. package/lib/components/Wishlist/WishlistDialog/CreateWishlistForm/__tests__/__snapshots__/createWishlistForm.spec.js.snap +44 -0
  638. package/lib/components/Wishlist/WishlistDialog/CreateWishlistForm/createWishlistForm.js +1 -1
  639. package/lib/components/Wishlist/WishlistDialog/CreateWishlistForm/{createWishlistForm.css → createWishlistForm.module.css} +0 -0
  640. package/lib/components/Wishlist/WishlistDialog/WishlistLineItem/wishlistLineItem.js +1 -1
  641. package/lib/components/Wishlist/WishlistDialog/WishlistLineItem/{wishlistLineItem.css → wishlistLineItem.module.css} +0 -0
  642. package/lib/components/Wishlist/WishlistDialog/wishlistDialog.js +1 -1
  643. package/lib/components/Wishlist/WishlistDialog/{wishlistDialog.css → wishlistDialog.module.css} +0 -0
  644. package/lib/components/WishlistPage/__tests__/__snapshots__/actionMenu.ee.spec.js.snap +2 -0
  645. package/lib/components/WishlistPage/__tests__/__snapshots__/createWishlist.ee.spec.js.snap +2 -2
  646. package/lib/components/WishlistPage/__tests__/__snapshots__/wishlistItem.spec.js.snap +2 -2
  647. package/lib/components/WishlistPage/__tests__/actionMenu.ee.spec.js +13 -1
  648. package/lib/components/WishlistPage/actionMenu.ee.js +6 -1
  649. package/lib/components/WishlistPage/createWishlist.ee.js +1 -1
  650. package/lib/components/WishlistPage/{createWishlist.css → createWishlist.module.css} +2 -2
  651. package/lib/components/WishlistPage/wishlist.js +2 -2
  652. package/lib/components/WishlistPage/{wishlist.css → wishlist.module.css} +1 -1
  653. package/lib/components/WishlistPage/wishlistConfirmRemoveProductDialog.js +1 -1
  654. package/lib/components/WishlistPage/{wishlistConfirmRemoveProductDialog.css → wishlistConfirmRemoveProductDialog.module.css} +2 -2
  655. package/lib/components/WishlistPage/wishlistEditFavoritesListDialog.js +1 -1
  656. package/lib/components/WishlistPage/{wishlistEditFavoritesListDialog.css → wishlistEditFavoritesListDialog.module.css} +3 -3
  657. package/lib/components/WishlistPage/wishlistItem.js +2 -2
  658. package/lib/components/WishlistPage/{wishlistItem.css → wishlistItem.module.css} +1 -1
  659. package/lib/components/WishlistPage/wishlistItems.js +1 -1
  660. package/lib/components/WishlistPage/{wishlistItems.css → wishlistItems.module.css} +0 -0
  661. package/lib/components/WishlistPage/wishlistListActionsDialog.js +1 -1
  662. package/lib/components/WishlistPage/wishlistMoreActionsDialog.js +1 -1
  663. package/lib/components/WishlistPage/{wishlistMoreActionsDialog.css → wishlistMoreActionsDialog.module.css} +0 -0
  664. package/lib/components/WishlistPage/wishlistPage.js +1 -1
  665. package/lib/components/WishlistPage/{wishlistPage.css → wishlistPage.module.css} +0 -0
  666. package/lib/components/{clickable.css → clickable.module.css} +0 -0
  667. package/lib/defaultRoutes.json +31 -7
  668. package/lib/{index.css → index.module.css} +1 -1
  669. package/lib/targets/RootShimmerTypes.js +31 -0
  670. package/lib/targets/__tests__/RootShimmerTypes.spec.js +22 -0
  671. package/lib/targets/__tests__/makeRoutesTarget.spec.js +29 -3
  672. package/lib/targets/makeRoutesTarget.js +19 -3
  673. package/lib/targets/venia-ui-declare.js +43 -3
  674. package/lib/targets/venia-ui-intercept.js +8 -0
  675. package/lib/{tokens.css → tokens.module.css} +0 -0
  676. package/package.json +11 -13
  677. package/upward.yml +68 -2
  678. package/venia-static/veniaClosed.png +0 -0
  679. package/lib/components/CartPage/GiftCards/giftCardFragments.ee.js +0 -14
  680. package/lib/components/CartPage/GiftCards/giftCardFragments.js +0 -8
  681. package/lib/components/CartPage/GiftCards/giftCardQueries.ee.js +0 -66
  682. package/lib/components/CartPage/PriceAdjustments/CouponCode/couponCodeFragments.js +0 -10
  683. package/lib/components/CartPage/PriceAdjustments/GiftOptions/giftOptions.gql.js +0 -23
  684. package/lib/components/CartPage/PriceAdjustments/ShippingMethods/shippingMethods.gql.js +0 -20
  685. package/lib/components/CartPage/PriceAdjustments/ShippingMethods/shippingMethodsFragments.gql.js +0 -60
  686. package/lib/components/CartPage/PriceSummary/queries/giftCardSummary.ce.js +0 -8
  687. package/lib/components/CartPage/PriceSummary/queries/giftCardSummary.ee.js +0 -15
  688. package/lib/components/CartPage/ProductListing/EditModal/productFormFragment.gql.js +0 -47
  689. package/lib/components/CartPage/ProductListing/productListingFragments.js +0 -53
  690. package/lib/components/CartPage/cartPage.gql.js +0 -12
  691. package/lib/components/CartPage/cartPageFragments.gql.js +0 -21
  692. package/lib/components/CategoryTree/categoryBranch.css +0 -11
  693. package/lib/components/Checkout/shippingForm.css +0 -19
  694. package/lib/components/CheckoutPage/AddressBook/addressBook.gql.js +0 -38
  695. package/lib/components/CheckoutPage/AddressBook/addressBookFragments.gql.js +0 -31
  696. package/lib/components/CheckoutPage/PaymentInformation/editModal.gql.js +0 -19
  697. package/lib/components/CheckoutPage/PaymentInformation/paymentInformation.gql.js +0 -131
  698. package/lib/components/CheckoutPage/PaymentInformation/paymentMethods.gql.js +0 -20
  699. package/lib/components/CheckoutPage/ShippingInformation/AddressForm/customerForm.gql.js +0 -59
  700. package/lib/components/CheckoutPage/ShippingInformation/AddressForm/guestForm.gql.js +0 -47
  701. package/lib/components/CheckoutPage/ShippingInformation/shippingInformation.gql.js +0 -58
  702. package/lib/components/CheckoutPage/ShippingInformation/shippingInformationFragments.gql.js +0 -25
  703. package/lib/components/CheckoutPage/ShippingMethod/shippingMethod.gql.js +0 -68
  704. package/lib/components/CheckoutPage/ShippingMethod/shippingMethodFragments.gql.js +0 -64
  705. package/lib/components/CreateAccountPage/createAccountPage.css +0 -4
  706. package/lib/components/LegacyMiniCart/mask.css +0 -4
  707. package/lib/components/ProductOptions/swatchList.css +0 -3
  708. package/lib/components/SortedByContainer/sortedByContainer.css +0 -16
  709. package/lib/components/Trigger/trigger.css +0 -3
@@ -83,14 +83,14 @@ exports[`it disables the add to cart button when the talon indicates 1`] = `
83
83
  <section
84
84
  className="quantity"
85
85
  >
86
- <h2
86
+ <span
87
87
  className="quantityTitle"
88
88
  >
89
89
  <mock-FormattedMessage
90
90
  defaultMessage="Quantity"
91
91
  id="global.quantity"
92
92
  />
93
- </h2>
93
+ </span>
94
94
  QuantityFields
95
95
  </section>
96
96
  <section
@@ -99,6 +99,18 @@ exports[`it disables the add to cart button when the talon indicates 1`] = `
99
99
  <button
100
100
  className="root_highPriority"
101
101
  disabled={true}
102
+ onClick={[Function]}
103
+ onDragStart={[Function]}
104
+ onKeyDown={[Function]}
105
+ onKeyUp={[Function]}
106
+ onMouseDown={[Function]}
107
+ onMouseEnter={[Function]}
108
+ onMouseLeave={[Function]}
109
+ onMouseUp={[Function]}
110
+ onTouchCancel={[Function]}
111
+ onTouchEnd={[Function]}
112
+ onTouchMove={[Function]}
113
+ onTouchStart={[Function]}
102
114
  type="submit"
103
115
  >
104
116
  <span
@@ -106,7 +118,7 @@ exports[`it disables the add to cart button when the talon indicates 1`] = `
106
118
  >
107
119
  <mock-FormattedMessage
108
120
  defaultMessage="Add to Cart"
109
- id="productFullDetail.cartAction"
121
+ id="productFullDetail.addItemToCart"
110
122
  />
111
123
  </span>
112
124
  </button>
@@ -115,29 +127,29 @@ exports[`it disables the add to cart button when the talon indicates 1`] = `
115
127
  <section
116
128
  className="description"
117
129
  >
118
- <h2
130
+ <span
119
131
  className="descriptionTitle"
120
132
  >
121
133
  <mock-FormattedMessage
122
134
  defaultMessage="Product Description"
123
135
  id="productFullDetail.productDescription"
124
136
  />
125
- </h2>
126
- <RichText
127
- content="Powers the Delorean"
137
+ </span>
138
+ <RichContent
139
+ html="Powers the Delorean"
128
140
  />
129
141
  </section>
130
142
  <section
131
143
  className="details"
132
144
  >
133
- <h2
145
+ <span
134
146
  className="detailsTitle"
135
147
  >
136
148
  <mock-FormattedMessage
137
149
  defaultMessage="SKU"
138
150
  id="global.sku"
139
151
  />
140
- </h2>
152
+ </span>
141
153
  <strong>
142
154
  BTTF123
143
155
  </strong>
@@ -198,14 +210,14 @@ exports[`it does not render options if the product is not a ConfigurableProduct
198
210
  <section
199
211
  className="quantity"
200
212
  >
201
- <h2
213
+ <span
202
214
  className="quantityTitle"
203
215
  >
204
216
  <mock-FormattedMessage
205
217
  defaultMessage="Quantity"
206
218
  id="global.quantity"
207
219
  />
208
- </h2>
220
+ </span>
209
221
  QuantityFields
210
222
  </section>
211
223
  <section
@@ -214,6 +226,18 @@ exports[`it does not render options if the product is not a ConfigurableProduct
214
226
  <button
215
227
  className="root_highPriority"
216
228
  disabled={false}
229
+ onClick={[Function]}
230
+ onDragStart={[Function]}
231
+ onKeyDown={[Function]}
232
+ onKeyUp={[Function]}
233
+ onMouseDown={[Function]}
234
+ onMouseEnter={[Function]}
235
+ onMouseLeave={[Function]}
236
+ onMouseUp={[Function]}
237
+ onTouchCancel={[Function]}
238
+ onTouchEnd={[Function]}
239
+ onTouchMove={[Function]}
240
+ onTouchStart={[Function]}
217
241
  type="submit"
218
242
  >
219
243
  <span
@@ -221,7 +245,7 @@ exports[`it does not render options if the product is not a ConfigurableProduct
221
245
  >
222
246
  <mock-FormattedMessage
223
247
  defaultMessage="Add to Cart"
224
- id="productFullDetail.cartAction"
248
+ id="productFullDetail.addItemToCart"
225
249
  />
226
250
  </span>
227
251
  </button>
@@ -230,29 +254,29 @@ exports[`it does not render options if the product is not a ConfigurableProduct
230
254
  <section
231
255
  className="description"
232
256
  >
233
- <h2
257
+ <span
234
258
  className="descriptionTitle"
235
259
  >
236
260
  <mock-FormattedMessage
237
261
  defaultMessage="Product Description"
238
262
  id="productFullDetail.productDescription"
239
263
  />
240
- </h2>
241
- <RichText
242
- content="Powers the Delorean"
264
+ </span>
265
+ <RichContent
266
+ html="Powers the Delorean"
243
267
  />
244
268
  </section>
245
269
  <section
246
270
  className="details"
247
271
  >
248
- <h2
272
+ <span
249
273
  className="detailsTitle"
250
274
  >
251
275
  <mock-FormattedMessage
252
276
  defaultMessage="SKU"
253
277
  id="global.sku"
254
278
  />
255
- </h2>
279
+ </span>
256
280
  <strong>
257
281
  BTTF123
258
282
  </strong>
@@ -347,14 +371,14 @@ exports[`it renders an error for an invalid cart 1`] = `
347
371
  <section
348
372
  className="quantity"
349
373
  >
350
- <h2
374
+ <span
351
375
  className="quantityTitle"
352
376
  >
353
377
  <mock-FormattedMessage
354
378
  defaultMessage="Quantity"
355
379
  id="global.quantity"
356
380
  />
357
- </h2>
381
+ </span>
358
382
  QuantityFields
359
383
  </section>
360
384
  <section
@@ -363,6 +387,18 @@ exports[`it renders an error for an invalid cart 1`] = `
363
387
  <button
364
388
  className="root_highPriority"
365
389
  disabled={false}
390
+ onClick={[Function]}
391
+ onDragStart={[Function]}
392
+ onKeyDown={[Function]}
393
+ onKeyUp={[Function]}
394
+ onMouseDown={[Function]}
395
+ onMouseEnter={[Function]}
396
+ onMouseLeave={[Function]}
397
+ onMouseUp={[Function]}
398
+ onTouchCancel={[Function]}
399
+ onTouchEnd={[Function]}
400
+ onTouchMove={[Function]}
401
+ onTouchStart={[Function]}
366
402
  type="submit"
367
403
  >
368
404
  <span
@@ -370,7 +406,7 @@ exports[`it renders an error for an invalid cart 1`] = `
370
406
  >
371
407
  <mock-FormattedMessage
372
408
  defaultMessage="Add to Cart"
373
- id="productFullDetail.cartAction"
409
+ id="productFullDetail.addItemToCart"
374
410
  />
375
411
  </span>
376
412
  </button>
@@ -379,29 +415,29 @@ exports[`it renders an error for an invalid cart 1`] = `
379
415
  <section
380
416
  className="description"
381
417
  >
382
- <h2
418
+ <span
383
419
  className="descriptionTitle"
384
420
  >
385
421
  <mock-FormattedMessage
386
422
  defaultMessage="Product Description"
387
423
  id="productFullDetail.productDescription"
388
424
  />
389
- </h2>
390
- <RichText
391
- content="Powers the Delorean"
425
+ </span>
426
+ <RichContent
427
+ html="Powers the Delorean"
392
428
  />
393
429
  </section>
394
430
  <section
395
431
  className="details"
396
432
  >
397
- <h2
433
+ <span
398
434
  className="detailsTitle"
399
435
  >
400
436
  <mock-FormattedMessage
401
437
  defaultMessage="SKU"
402
438
  id="global.sku"
403
439
  />
404
- </h2>
440
+ </span>
405
441
  <strong>
406
442
  BTTF123
407
443
  </strong>
@@ -496,14 +532,14 @@ exports[`it renders an error for an invalid user token when adding to cart 1`] =
496
532
  <section
497
533
  className="quantity"
498
534
  >
499
- <h2
535
+ <span
500
536
  className="quantityTitle"
501
537
  >
502
538
  <mock-FormattedMessage
503
539
  defaultMessage="Quantity"
504
540
  id="global.quantity"
505
541
  />
506
- </h2>
542
+ </span>
507
543
  QuantityFields
508
544
  </section>
509
545
  <section
@@ -512,6 +548,18 @@ exports[`it renders an error for an invalid user token when adding to cart 1`] =
512
548
  <button
513
549
  className="root_highPriority"
514
550
  disabled={false}
551
+ onClick={[Function]}
552
+ onDragStart={[Function]}
553
+ onKeyDown={[Function]}
554
+ onKeyUp={[Function]}
555
+ onMouseDown={[Function]}
556
+ onMouseEnter={[Function]}
557
+ onMouseLeave={[Function]}
558
+ onMouseUp={[Function]}
559
+ onTouchCancel={[Function]}
560
+ onTouchEnd={[Function]}
561
+ onTouchMove={[Function]}
562
+ onTouchStart={[Function]}
515
563
  type="submit"
516
564
  >
517
565
  <span
@@ -519,7 +567,7 @@ exports[`it renders an error for an invalid user token when adding to cart 1`] =
519
567
  >
520
568
  <mock-FormattedMessage
521
569
  defaultMessage="Add to Cart"
522
- id="productFullDetail.cartAction"
570
+ id="productFullDetail.addItemToCart"
523
571
  />
524
572
  </span>
525
573
  </button>
@@ -528,29 +576,29 @@ exports[`it renders an error for an invalid user token when adding to cart 1`] =
528
576
  <section
529
577
  className="description"
530
578
  >
531
- <h2
579
+ <span
532
580
  className="descriptionTitle"
533
581
  >
534
582
  <mock-FormattedMessage
535
583
  defaultMessage="Product Description"
536
584
  id="productFullDetail.productDescription"
537
585
  />
538
- </h2>
539
- <RichText
540
- content="Powers the Delorean"
586
+ </span>
587
+ <RichContent
588
+ html="Powers the Delorean"
541
589
  />
542
590
  </section>
543
591
  <section
544
592
  className="details"
545
593
  >
546
- <h2
594
+ <span
547
595
  className="detailsTitle"
548
596
  >
549
597
  <mock-FormattedMessage
550
598
  defaultMessage="SKU"
551
599
  id="global.sku"
552
600
  />
553
- </h2>
601
+ </span>
554
602
  <strong>
555
603
  BTTF123
556
604
  </strong>
@@ -646,14 +694,14 @@ Array [
646
694
  <section
647
695
  className="quantity"
648
696
  >
649
- <h2
697
+ <span
650
698
  className="quantityTitle"
651
699
  >
652
700
  <mock-FormattedMessage
653
701
  defaultMessage="Quantity"
654
702
  id="global.quantity"
655
703
  />
656
- </h2>
704
+ </span>
657
705
  QuantityFields
658
706
  </section>
659
707
  <section
@@ -662,6 +710,18 @@ Array [
662
710
  <button
663
711
  className="root_highPriority"
664
712
  disabled={false}
713
+ onClick={[Function]}
714
+ onDragStart={[Function]}
715
+ onKeyDown={[Function]}
716
+ onKeyUp={[Function]}
717
+ onMouseDown={[Function]}
718
+ onMouseEnter={[Function]}
719
+ onMouseLeave={[Function]}
720
+ onMouseUp={[Function]}
721
+ onTouchCancel={[Function]}
722
+ onTouchEnd={[Function]}
723
+ onTouchMove={[Function]}
724
+ onTouchStart={[Function]}
665
725
  type="submit"
666
726
  >
667
727
  <span
@@ -669,7 +729,7 @@ Array [
669
729
  >
670
730
  <mock-FormattedMessage
671
731
  defaultMessage="Add to Cart"
672
- id="productFullDetail.cartAction"
732
+ id="productFullDetail.addItemToCart"
673
733
  />
674
734
  </span>
675
735
  </button>
@@ -678,29 +738,29 @@ Array [
678
738
  <section
679
739
  className="description"
680
740
  >
681
- <h2
741
+ <span
682
742
  className="descriptionTitle"
683
743
  >
684
744
  <mock-FormattedMessage
685
745
  defaultMessage="Product Description"
686
746
  id="productFullDetail.productDescription"
687
747
  />
688
- </h2>
689
- <RichText
690
- content="Powers the Delorean"
748
+ </span>
749
+ <RichContent
750
+ html="Powers the Delorean"
691
751
  />
692
752
  </section>
693
753
  <section
694
754
  className="details"
695
755
  >
696
- <h2
756
+ <span
697
757
  className="detailsTitle"
698
758
  >
699
759
  <mock-FormattedMessage
700
760
  defaultMessage="SKU"
701
761
  id="global.sku"
702
762
  />
703
- </h2>
763
+ </span>
704
764
  <strong>
705
765
  BTTF123
706
766
  </strong>
@@ -792,14 +852,14 @@ exports[`it renders correctly 1`] = `
792
852
  <section
793
853
  className="quantity"
794
854
  >
795
- <h2
855
+ <span
796
856
  className="quantityTitle"
797
857
  >
798
858
  <mock-FormattedMessage
799
859
  defaultMessage="Quantity"
800
860
  id="global.quantity"
801
861
  />
802
- </h2>
862
+ </span>
803
863
  QuantityFields
804
864
  </section>
805
865
  <section
@@ -808,6 +868,18 @@ exports[`it renders correctly 1`] = `
808
868
  <button
809
869
  className="root_highPriority"
810
870
  disabled={false}
871
+ onClick={[Function]}
872
+ onDragStart={[Function]}
873
+ onKeyDown={[Function]}
874
+ onKeyUp={[Function]}
875
+ onMouseDown={[Function]}
876
+ onMouseEnter={[Function]}
877
+ onMouseLeave={[Function]}
878
+ onMouseUp={[Function]}
879
+ onTouchCancel={[Function]}
880
+ onTouchEnd={[Function]}
881
+ onTouchMove={[Function]}
882
+ onTouchStart={[Function]}
811
883
  type="submit"
812
884
  >
813
885
  <span
@@ -815,7 +887,7 @@ exports[`it renders correctly 1`] = `
815
887
  >
816
888
  <mock-FormattedMessage
817
889
  defaultMessage="Add to Cart"
818
- id="productFullDetail.cartAction"
890
+ id="productFullDetail.addItemToCart"
819
891
  />
820
892
  </span>
821
893
  </button>
@@ -824,29 +896,29 @@ exports[`it renders correctly 1`] = `
824
896
  <section
825
897
  className="description"
826
898
  >
827
- <h2
899
+ <span
828
900
  className="descriptionTitle"
829
901
  >
830
902
  <mock-FormattedMessage
831
903
  defaultMessage="Product Description"
832
904
  id="productFullDetail.productDescription"
833
905
  />
834
- </h2>
835
- <RichText
836
- content="Powers the Delorean"
906
+ </span>
907
+ <RichContent
908
+ html="Powers the Delorean"
837
909
  />
838
910
  </section>
839
911
  <section
840
912
  className="details"
841
913
  >
842
- <h2
914
+ <span
843
915
  className="detailsTitle"
844
916
  >
845
917
  <mock-FormattedMessage
846
918
  defaultMessage="SKU"
847
919
  id="global.sku"
848
920
  />
849
- </h2>
921
+ </span>
850
922
  <strong>
851
923
  BTTF123
852
924
  </strong>
@@ -937,14 +1009,14 @@ exports[`it renders field level errors for quantity - message 1 1`] = `
937
1009
  <section
938
1010
  className="quantity"
939
1011
  >
940
- <h2
1012
+ <span
941
1013
  className="quantityTitle"
942
1014
  >
943
1015
  <mock-FormattedMessage
944
1016
  defaultMessage="Quantity"
945
1017
  id="global.quantity"
946
1018
  />
947
- </h2>
1019
+ </span>
948
1020
  QuantityFields
949
1021
  </section>
950
1022
  <section
@@ -953,6 +1025,18 @@ exports[`it renders field level errors for quantity - message 1 1`] = `
953
1025
  <button
954
1026
  className="root_highPriority"
955
1027
  disabled={false}
1028
+ onClick={[Function]}
1029
+ onDragStart={[Function]}
1030
+ onKeyDown={[Function]}
1031
+ onKeyUp={[Function]}
1032
+ onMouseDown={[Function]}
1033
+ onMouseEnter={[Function]}
1034
+ onMouseLeave={[Function]}
1035
+ onMouseUp={[Function]}
1036
+ onTouchCancel={[Function]}
1037
+ onTouchEnd={[Function]}
1038
+ onTouchMove={[Function]}
1039
+ onTouchStart={[Function]}
956
1040
  type="submit"
957
1041
  >
958
1042
  <span
@@ -960,7 +1044,7 @@ exports[`it renders field level errors for quantity - message 1 1`] = `
960
1044
  >
961
1045
  <mock-FormattedMessage
962
1046
  defaultMessage="Add to Cart"
963
- id="productFullDetail.cartAction"
1047
+ id="productFullDetail.addItemToCart"
964
1048
  />
965
1049
  </span>
966
1050
  </button>
@@ -969,29 +1053,29 @@ exports[`it renders field level errors for quantity - message 1 1`] = `
969
1053
  <section
970
1054
  className="description"
971
1055
  >
972
- <h2
1056
+ <span
973
1057
  className="descriptionTitle"
974
1058
  >
975
1059
  <mock-FormattedMessage
976
1060
  defaultMessage="Product Description"
977
1061
  id="productFullDetail.productDescription"
978
1062
  />
979
- </h2>
980
- <RichText
981
- content="Powers the Delorean"
1063
+ </span>
1064
+ <RichContent
1065
+ html="Powers the Delorean"
982
1066
  />
983
1067
  </section>
984
1068
  <section
985
1069
  className="details"
986
1070
  >
987
- <h2
1071
+ <span
988
1072
  className="detailsTitle"
989
1073
  >
990
1074
  <mock-FormattedMessage
991
1075
  defaultMessage="SKU"
992
1076
  id="global.sku"
993
1077
  />
994
- </h2>
1078
+ </span>
995
1079
  <strong>
996
1080
  BTTF123
997
1081
  </strong>
@@ -1082,14 +1166,14 @@ exports[`it renders field level errors for quantity - message 2 1`] = `
1082
1166
  <section
1083
1167
  className="quantity"
1084
1168
  >
1085
- <h2
1169
+ <span
1086
1170
  className="quantityTitle"
1087
1171
  >
1088
1172
  <mock-FormattedMessage
1089
1173
  defaultMessage="Quantity"
1090
1174
  id="global.quantity"
1091
1175
  />
1092
- </h2>
1176
+ </span>
1093
1177
  QuantityFields
1094
1178
  </section>
1095
1179
  <section
@@ -1098,6 +1182,18 @@ exports[`it renders field level errors for quantity - message 2 1`] = `
1098
1182
  <button
1099
1183
  className="root_highPriority"
1100
1184
  disabled={false}
1185
+ onClick={[Function]}
1186
+ onDragStart={[Function]}
1187
+ onKeyDown={[Function]}
1188
+ onKeyUp={[Function]}
1189
+ onMouseDown={[Function]}
1190
+ onMouseEnter={[Function]}
1191
+ onMouseLeave={[Function]}
1192
+ onMouseUp={[Function]}
1193
+ onTouchCancel={[Function]}
1194
+ onTouchEnd={[Function]}
1195
+ onTouchMove={[Function]}
1196
+ onTouchStart={[Function]}
1101
1197
  type="submit"
1102
1198
  >
1103
1199
  <span
@@ -1105,7 +1201,7 @@ exports[`it renders field level errors for quantity - message 2 1`] = `
1105
1201
  >
1106
1202
  <mock-FormattedMessage
1107
1203
  defaultMessage="Add to Cart"
1108
- id="productFullDetail.cartAction"
1204
+ id="productFullDetail.addItemToCart"
1109
1205
  />
1110
1206
  </span>
1111
1207
  </button>
@@ -1114,29 +1210,29 @@ exports[`it renders field level errors for quantity - message 2 1`] = `
1114
1210
  <section
1115
1211
  className="description"
1116
1212
  >
1117
- <h2
1213
+ <span
1118
1214
  className="descriptionTitle"
1119
1215
  >
1120
1216
  <mock-FormattedMessage
1121
1217
  defaultMessage="Product Description"
1122
1218
  id="productFullDetail.productDescription"
1123
1219
  />
1124
- </h2>
1125
- <RichText
1126
- content="Powers the Delorean"
1220
+ </span>
1221
+ <RichContent
1222
+ html="Powers the Delorean"
1127
1223
  />
1128
1224
  </section>
1129
1225
  <section
1130
1226
  className="details"
1131
1227
  >
1132
- <h2
1228
+ <span
1133
1229
  className="detailsTitle"
1134
1230
  >
1135
1231
  <mock-FormattedMessage
1136
1232
  defaultMessage="SKU"
1137
1233
  id="global.sku"
1138
1234
  />
1139
- </h2>
1235
+ </span>
1140
1236
  <strong>
1141
1237
  BTTF123
1142
1238
  </strong>
@@ -1227,14 +1323,14 @@ exports[`it renders field level errors for quantity - message 3 1`] = `
1227
1323
  <section
1228
1324
  className="quantity"
1229
1325
  >
1230
- <h2
1326
+ <span
1231
1327
  className="quantityTitle"
1232
1328
  >
1233
1329
  <mock-FormattedMessage
1234
1330
  defaultMessage="Quantity"
1235
1331
  id="global.quantity"
1236
1332
  />
1237
- </h2>
1333
+ </span>
1238
1334
  QuantityFields
1239
1335
  </section>
1240
1336
  <section
@@ -1243,6 +1339,18 @@ exports[`it renders field level errors for quantity - message 3 1`] = `
1243
1339
  <button
1244
1340
  className="root_highPriority"
1245
1341
  disabled={false}
1342
+ onClick={[Function]}
1343
+ onDragStart={[Function]}
1344
+ onKeyDown={[Function]}
1345
+ onKeyUp={[Function]}
1346
+ onMouseDown={[Function]}
1347
+ onMouseEnter={[Function]}
1348
+ onMouseLeave={[Function]}
1349
+ onMouseUp={[Function]}
1350
+ onTouchCancel={[Function]}
1351
+ onTouchEnd={[Function]}
1352
+ onTouchMove={[Function]}
1353
+ onTouchStart={[Function]}
1246
1354
  type="submit"
1247
1355
  >
1248
1356
  <span
@@ -1250,7 +1358,7 @@ exports[`it renders field level errors for quantity - message 3 1`] = `
1250
1358
  >
1251
1359
  <mock-FormattedMessage
1252
1360
  defaultMessage="Add to Cart"
1253
- id="productFullDetail.cartAction"
1361
+ id="productFullDetail.addItemToCart"
1254
1362
  />
1255
1363
  </span>
1256
1364
  </button>
@@ -1259,29 +1367,29 @@ exports[`it renders field level errors for quantity - message 3 1`] = `
1259
1367
  <section
1260
1368
  className="description"
1261
1369
  >
1262
- <h2
1370
+ <span
1263
1371
  className="descriptionTitle"
1264
1372
  >
1265
1373
  <mock-FormattedMessage
1266
1374
  defaultMessage="Product Description"
1267
1375
  id="productFullDetail.productDescription"
1268
1376
  />
1269
- </h2>
1270
- <RichText
1271
- content="Powers the Delorean"
1377
+ </span>
1378
+ <RichContent
1379
+ html="Powers the Delorean"
1272
1380
  />
1273
1381
  </section>
1274
1382
  <section
1275
1383
  className="details"
1276
1384
  >
1277
- <h2
1385
+ <span
1278
1386
  className="detailsTitle"
1279
1387
  >
1280
1388
  <mock-FormattedMessage
1281
1389
  defaultMessage="SKU"
1282
1390
  id="global.sku"
1283
1391
  />
1284
- </h2>
1392
+ </span>
1285
1393
  <strong>
1286
1394
  BTTF123
1287
1395
  </strong>
@@ -1376,14 +1484,14 @@ exports[`it renders form level errors 1`] = `
1376
1484
  <section
1377
1485
  className="quantity"
1378
1486
  >
1379
- <h2
1487
+ <span
1380
1488
  className="quantityTitle"
1381
1489
  >
1382
1490
  <mock-FormattedMessage
1383
1491
  defaultMessage="Quantity"
1384
1492
  id="global.quantity"
1385
1493
  />
1386
- </h2>
1494
+ </span>
1387
1495
  QuantityFields
1388
1496
  </section>
1389
1497
  <section
@@ -1392,6 +1500,18 @@ exports[`it renders form level errors 1`] = `
1392
1500
  <button
1393
1501
  className="root_highPriority"
1394
1502
  disabled={false}
1503
+ onClick={[Function]}
1504
+ onDragStart={[Function]}
1505
+ onKeyDown={[Function]}
1506
+ onKeyUp={[Function]}
1507
+ onMouseDown={[Function]}
1508
+ onMouseEnter={[Function]}
1509
+ onMouseLeave={[Function]}
1510
+ onMouseUp={[Function]}
1511
+ onTouchCancel={[Function]}
1512
+ onTouchEnd={[Function]}
1513
+ onTouchMove={[Function]}
1514
+ onTouchStart={[Function]}
1395
1515
  type="submit"
1396
1516
  >
1397
1517
  <span
@@ -1399,7 +1519,7 @@ exports[`it renders form level errors 1`] = `
1399
1519
  >
1400
1520
  <mock-FormattedMessage
1401
1521
  defaultMessage="Add to Cart"
1402
- id="productFullDetail.cartAction"
1522
+ id="productFullDetail.addItemToCart"
1403
1523
  />
1404
1524
  </span>
1405
1525
  </button>
@@ -1408,29 +1528,29 @@ exports[`it renders form level errors 1`] = `
1408
1528
  <section
1409
1529
  className="description"
1410
1530
  >
1411
- <h2
1531
+ <span
1412
1532
  className="descriptionTitle"
1413
1533
  >
1414
1534
  <mock-FormattedMessage
1415
1535
  defaultMessage="Product Description"
1416
1536
  id="productFullDetail.productDescription"
1417
1537
  />
1418
- </h2>
1419
- <RichText
1420
- content="Powers the Delorean"
1538
+ </span>
1539
+ <RichContent
1540
+ html="Powers the Delorean"
1421
1541
  />
1422
1542
  </section>
1423
1543
  <section
1424
1544
  className="details"
1425
1545
  >
1426
- <h2
1546
+ <span
1427
1547
  className="detailsTitle"
1428
1548
  >
1429
1549
  <mock-FormattedMessage
1430
1550
  defaultMessage="SKU"
1431
1551
  id="global.sku"
1432
1552
  />
1433
- </h2>
1553
+ </span>
1434
1554
  <strong>
1435
1555
  BTTF123
1436
1556
  </strong>
@@ -1521,14 +1641,14 @@ exports[`it renders message with unsupported product type 1`] = `
1521
1641
  <section
1522
1642
  className="quantity"
1523
1643
  >
1524
- <h2
1644
+ <span
1525
1645
  className="quantityTitle"
1526
1646
  >
1527
1647
  <mock-FormattedMessage
1528
1648
  defaultMessage="Quantity"
1529
1649
  id="global.quantity"
1530
1650
  />
1531
- </h2>
1651
+ </span>
1532
1652
  QuantityFields
1533
1653
  </section>
1534
1654
  <section
@@ -1539,13 +1659,13 @@ exports[`it renders message with unsupported product type 1`] = `
1539
1659
  >
1540
1660
  <svg
1541
1661
  fill="none"
1542
- height="24"
1662
+ height={24}
1543
1663
  stroke="currentColor"
1544
1664
  strokeLinecap="round"
1545
1665
  strokeLinejoin="round"
1546
1666
  strokeWidth="2"
1547
1667
  viewBox="0 0 24 24"
1548
- width="24"
1668
+ width={24}
1549
1669
  xmlns="http://www.w3.org/2000/svg"
1550
1670
  >
1551
1671
  <circle
@@ -1561,7 +1681,7 @@ exports[`it renders message with unsupported product type 1`] = `
1561
1681
  />
1562
1682
  <line
1563
1683
  x1="12"
1564
- x2="12"
1684
+ x2="12.01"
1565
1685
  y1="8"
1566
1686
  y2="8"
1567
1687
  />
@@ -1578,29 +1698,156 @@ exports[`it renders message with unsupported product type 1`] = `
1578
1698
  <section
1579
1699
  className="description"
1580
1700
  >
1581
- <h2
1701
+ <span
1702
+ className="descriptionTitle"
1703
+ >
1704
+ <mock-FormattedMessage
1705
+ defaultMessage="Product Description"
1706
+ id="productFullDetail.productDescription"
1707
+ />
1708
+ </span>
1709
+ <RichContent
1710
+ html="Powers the Delorean"
1711
+ />
1712
+ </section>
1713
+ <section
1714
+ className="details"
1715
+ >
1716
+ <span
1717
+ className="detailsTitle"
1718
+ >
1719
+ <mock-FormattedMessage
1720
+ defaultMessage="SKU"
1721
+ id="global.sku"
1722
+ />
1723
+ </span>
1724
+ <strong>
1725
+ BTTF123
1726
+ </strong>
1727
+ </section>
1728
+ </form>
1729
+ `;
1730
+
1731
+ exports[`out of stock disabled CTA button is rendered if out of stock 1`] = `
1732
+ <form
1733
+ className="root"
1734
+ onKeyDown={[Function]}
1735
+ onReset={[Function]}
1736
+ onSubmit={[Function]}
1737
+ >
1738
+ <section
1739
+ className="title"
1740
+ >
1741
+ <h1
1742
+ className="productName"
1743
+ >
1744
+ Flux Capacitor
1745
+ </h1>
1746
+ <p
1747
+ className="productPrice"
1748
+ >
1749
+ <span>
1750
+ $
1751
+ </span>
1752
+ <span>
1753
+ 3
1754
+ </span>
1755
+ <span>
1756
+ .
1757
+ </span>
1758
+ <span>
1759
+ 50
1760
+ </span>
1761
+ </p>
1762
+ </section>
1763
+ <section
1764
+ className="imageCarousel"
1765
+ >
1766
+ <ProductImageCarousel
1767
+ images={Array []}
1768
+ />
1769
+ </section>
1770
+ <FormError
1771
+ classes={
1772
+ Object {
1773
+ "root": "formErrors",
1774
+ }
1775
+ }
1776
+ errors={Array []}
1777
+ />
1778
+ <section
1779
+ className="options"
1780
+ />
1781
+ <section
1782
+ className="quantity"
1783
+ >
1784
+ <span
1785
+ className="quantityTitle"
1786
+ >
1787
+ <mock-FormattedMessage
1788
+ defaultMessage="Quantity"
1789
+ id="global.quantity"
1790
+ />
1791
+ </span>
1792
+ QuantityFields
1793
+ </section>
1794
+ <section
1795
+ className="actions"
1796
+ >
1797
+ <button
1798
+ className="root_highPriority"
1799
+ disabled={true}
1800
+ onClick={[Function]}
1801
+ onDragStart={[Function]}
1802
+ onKeyDown={[Function]}
1803
+ onKeyUp={[Function]}
1804
+ onMouseDown={[Function]}
1805
+ onMouseEnter={[Function]}
1806
+ onMouseLeave={[Function]}
1807
+ onMouseUp={[Function]}
1808
+ onTouchCancel={[Function]}
1809
+ onTouchEnd={[Function]}
1810
+ onTouchMove={[Function]}
1811
+ onTouchStart={[Function]}
1812
+ type="submit"
1813
+ >
1814
+ <span
1815
+ className="content"
1816
+ >
1817
+ <mock-FormattedMessage
1818
+ defaultMessage="Out of Stock"
1819
+ id="productFullDetail.itemOutOfStock"
1820
+ />
1821
+ </span>
1822
+ </button>
1823
+ <require('../Wishlist/AddToListButton') />
1824
+ </section>
1825
+ <section
1826
+ className="description"
1827
+ >
1828
+ <span
1582
1829
  className="descriptionTitle"
1583
1830
  >
1584
1831
  <mock-FormattedMessage
1585
1832
  defaultMessage="Product Description"
1586
1833
  id="productFullDetail.productDescription"
1587
1834
  />
1588
- </h2>
1589
- <RichText
1590
- content="Powers the Delorean"
1835
+ </span>
1836
+ <RichContent
1837
+ html="Powers the Delorean"
1591
1838
  />
1592
1839
  </section>
1593
1840
  <section
1594
1841
  className="details"
1595
1842
  >
1596
- <h2
1843
+ <span
1597
1844
  className="detailsTitle"
1598
1845
  >
1599
1846
  <mock-FormattedMessage
1600
1847
  defaultMessage="SKU"
1601
1848
  id="global.sku"
1602
1849
  />
1603
- </h2>
1850
+ </span>
1604
1851
  <strong>
1605
1852
  BTTF123
1606
1853
  </strong>
@@ -1691,14 +1938,14 @@ exports[`renders a WishlistButton with props 1`] = `
1691
1938
  <section
1692
1939
  className="quantity"
1693
1940
  >
1694
- <h2
1941
+ <span
1695
1942
  className="quantityTitle"
1696
1943
  >
1697
1944
  <mock-FormattedMessage
1698
1945
  defaultMessage="Quantity"
1699
1946
  id="global.quantity"
1700
1947
  />
1701
- </h2>
1948
+ </span>
1702
1949
  QuantityFields
1703
1950
  </section>
1704
1951
  <section
@@ -1707,6 +1954,18 @@ exports[`renders a WishlistButton with props 1`] = `
1707
1954
  <button
1708
1955
  className="root_highPriority"
1709
1956
  disabled={false}
1957
+ onClick={[Function]}
1958
+ onDragStart={[Function]}
1959
+ onKeyDown={[Function]}
1960
+ onKeyUp={[Function]}
1961
+ onMouseDown={[Function]}
1962
+ onMouseEnter={[Function]}
1963
+ onMouseLeave={[Function]}
1964
+ onMouseUp={[Function]}
1965
+ onTouchCancel={[Function]}
1966
+ onTouchEnd={[Function]}
1967
+ onTouchMove={[Function]}
1968
+ onTouchStart={[Function]}
1710
1969
  type="submit"
1711
1970
  >
1712
1971
  <span
@@ -1714,7 +1973,7 @@ exports[`renders a WishlistButton with props 1`] = `
1714
1973
  >
1715
1974
  <mock-FormattedMessage
1716
1975
  defaultMessage="Add to Cart"
1717
- id="productFullDetail.cartAction"
1976
+ id="productFullDetail.addItemToCart"
1718
1977
  />
1719
1978
  </span>
1720
1979
  </button>
@@ -1725,29 +1984,29 @@ exports[`renders a WishlistButton with props 1`] = `
1725
1984
  <section
1726
1985
  className="description"
1727
1986
  >
1728
- <h2
1987
+ <span
1729
1988
  className="descriptionTitle"
1730
1989
  >
1731
1990
  <mock-FormattedMessage
1732
1991
  defaultMessage="Product Description"
1733
1992
  id="productFullDetail.productDescription"
1734
1993
  />
1735
- </h2>
1736
- <RichText
1737
- content="Powers the Delorean"
1994
+ </span>
1995
+ <RichContent
1996
+ html="Powers the Delorean"
1738
1997
  />
1739
1998
  </section>
1740
1999
  <section
1741
2000
  className="details"
1742
2001
  >
1743
- <h2
2002
+ <span
1744
2003
  className="detailsTitle"
1745
2004
  >
1746
2005
  <mock-FormattedMessage
1747
2006
  defaultMessage="SKU"
1748
2007
  id="global.sku"
1749
2008
  />
1750
- </h2>
2009
+ </span>
1751
2010
  <strong>
1752
2011
  BTTF123
1753
2012
  </strong>