wickes-css2 2.100.0 → 2.101.0-develop.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/css/category-main.css +1 -1
- package/build/css/main.css +1 -1
- package/build/css/pages/page_products-list.css +1 -1
- package/build/css/plp-main.css +1 -1
- package/build/js/basket.min.js +2 -2
- package/build/js/bundle.min.js +1 -1
- package/build/js/checkout.min.js +1 -1
- package/build/js/general.bundle.min.js +1 -1
- package/build/js/merged-checkout.min.js +1 -1
- package/build/js/page/basket/wisdom.js +2 -2
- package/build/js/pdp.bundle.min.js +1 -1
- package/build/js/plp.bundle.min.js +1 -1
- package/build/js/project-list.min.js +1 -1
- package/package.json +2 -2
- package/src/components/srp-injected.hbs +19 -0
- package/src/data/my-account/data_my-account.json +3 -3
- package/src/data/my-account/data_my-order.json +1 -1
- package/src/data/my-account/data_my-orders.json +1 -1
- package/src/js/components/general/clamp-content.js +8 -0
- package/src/js/page/basket/wisdom.js +2 -2
- package/src/page_category-landing-with-banner.html +14 -6
- package/src/page_plp_v2-vat.html +4 -7
- package/src/scss/components/_clamp-content.scss +6 -0
- package/src/scss/pages/page_products-list.scss +0 -8
|
@@ -139,7 +139,7 @@ export function addDeliveryStock(e) {
|
|
|
139
139
|
|
|
140
140
|
function addForDelivery(data) {
|
|
141
141
|
Wick.BasketPage.showNotification(data);
|
|
142
|
-
const statusCode = ['success', 'noStock', 'lowStock']
|
|
142
|
+
const statusCode = ['success', 'noStock', 'lowStock', 'maxOrderQuantityExceeded']
|
|
143
143
|
|
|
144
144
|
if (statusCode.includes(data.statusCode)) {
|
|
145
145
|
Wick.BasketPage.updateCart(true);
|
|
@@ -294,4 +294,4 @@ export function prettifyWisdomPostcode(e) {
|
|
|
294
294
|
const postcode = targetPostcode.val();
|
|
295
295
|
const prettifiedPostcode = transformPostcodeToCanonicalView(postcode);
|
|
296
296
|
$(wisdomEl.postcodeInput).val(prettifiedPostcode);
|
|
297
|
-
}
|
|
297
|
+
}
|