wickes-css2 2.98.0-develop.8 → 2.98.0-develop.9

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 (114) hide show
  1. package/Readme.md +4 -3
  2. package/build/css/category-main.css +1 -1
  3. package/build/css/components/checkout-payment-details-v2.css +1 -1
  4. package/build/css/components/global-search.css +1 -1
  5. package/build/css/components/loader.css +1 -1
  6. package/build/css/components/price-block-v2-critical.css +1 -1
  7. package/build/css/components/price-block-v2.css +1 -1
  8. package/build/css/homepage-main.css +1 -1
  9. package/build/css/main.css +1 -1
  10. package/build/css/my-account-main-v2.css +1 -1
  11. package/build/css/my-account-main.css +1 -1
  12. package/build/css/pages/checkout-new.css +1 -1
  13. package/build/css/pages/checkout.css +1 -1
  14. package/build/css/pages/my-account-v2.css +1 -1
  15. package/build/css/pages/page_home.css +1 -1
  16. package/build/css/pages/page_my-order.css +1 -1
  17. package/build/css/pages/page_my-orders.css +1 -1
  18. package/build/css/pages/page_wismo-details.css +1 -1
  19. package/build/css/pdp-main-before-combine.css +1 -1
  20. package/build/css/pdp-main-critical.css +1 -1
  21. package/build/css/pdp-main-non-critical.css +1 -1
  22. package/build/css/pdp-main.css +1 -1
  23. package/build/css/plp-main.css +1 -1
  24. package/build/css/store-locator-main.css +1 -1
  25. package/build/img/billie-logo.svg +4 -0
  26. package/build/img/billie-modal.svg +4 -0
  27. package/build/img/billie-pdp.svg +11 -0
  28. package/build/img/billie-spinner.svg +5 -0
  29. package/build/img/billie.svg +4 -0
  30. package/build/img/calm-primary-logo.png +0 -0
  31. package/build/img/payment/checkout/billie.svg +4 -0
  32. package/build/img/payment/footer/billie.svg +4 -0
  33. package/build/js/basket.min.js +1 -1
  34. package/build/js/emulation.min.js +23 -11
  35. package/build/js/page/basket-v2.js +16 -7
  36. package/build/js/page/billie-business-type.js +34 -0
  37. package/build/js/page/checkout-payment-details.js +8 -0
  38. package/build/js/page/components/charity.js +58 -43
  39. package/build/js/page/components/modal-observer.js +51 -0
  40. package/package.json +1 -1
  41. package/src/components/address-billie.hbs +42 -0
  42. package/src/components/address-postcode-look-up.hbs +2 -2
  43. package/src/components/basket-charity-donations-new.hbs +40 -0
  44. package/src/components/billie-modal.hbs +41 -0
  45. package/src/components/billie-online-messaging.hbs +14 -0
  46. package/src/components/checkout-edit-billing-address.hbs +20 -6
  47. package/src/components/checkout-payment-details-v2.hbs +94 -55
  48. package/src/components/checkout-payment-info-block.hbs +49 -0
  49. package/src/components/checkout-payment-option.hbs +40 -0
  50. package/src/components/checkout_payment-new.hbs +10 -1
  51. package/src/components/donation-cart-new.hbs +38 -0
  52. package/src/components/modal.hbs +4 -1
  53. package/src/components/my-account/active-orders/list-orders.hbs +1 -1
  54. package/src/components/my-account/active-orders/order.hbs +2 -0
  55. package/src/components/my-account/active-orders/payment-status.hbs +17 -0
  56. package/src/components/my-account/payment-status.hbs +19 -0
  57. package/src/components/order-summary.hbs +3 -0
  58. package/src/components/payment-loader.hbs +59 -21
  59. package/src/components/payments-checkout-v2.hbs +12 -6
  60. package/src/components/payments-checkout.hbs +6 -0
  61. package/src/components/payments.hbs +10 -4
  62. package/src/components/price-block-v2.hbs +13 -8
  63. package/src/components/wismo-payment.hbs +16 -0
  64. package/src/data/data_shopping-cart-v2.json +51 -0
  65. package/src/data/data_wismo.json +53 -0
  66. package/src/data/my-account/data_my-account.json +57 -0
  67. package/src/elements/radiobutton.hbs +7 -0
  68. package/src/img/billie-logo.svg +4 -0
  69. package/src/img/billie-modal.svg +4 -0
  70. package/src/img/billie-pdp.svg +11 -0
  71. package/src/img/billie-spinner.svg +5 -0
  72. package/src/img/billie.svg +4 -0
  73. package/src/img/calm-primary-logo.png +0 -0
  74. package/src/img/payment/checkout/billie.svg +4 -0
  75. package/src/img/payment/footer/billie.svg +4 -0
  76. package/src/js/emulation/paymentLoader.js +22 -11
  77. package/src/js/page/basket-v2.js +16 -7
  78. package/src/js/page/billie-business-type.js +34 -0
  79. package/src/js/page/checkout-payment-details.js +8 -0
  80. package/src/js/page/components/charity.js +58 -43
  81. package/src/js/page/components/modal-observer.js +51 -0
  82. package/src/page_basket-billie.html +54 -0
  83. package/src/page_checkout_confirmation-billie.html +339 -0
  84. package/src/page_checkout_delivery-address-customer-journey.html +2 -2
  85. package/src/page_my-account.html +1 -0
  86. package/src/page_my-order.html +1 -1
  87. package/src/page_payment-details-with-billie.html +67 -0
  88. package/src/page_product-details-billie.html +87 -0
  89. package/src/page_shopping-cart-v2.html +4 -3
  90. package/src/page_wismo-details.html +2 -2
  91. package/src/partials/head.hbs +1 -5
  92. package/src/scss/common/_app.scss +0 -1
  93. package/src/scss/common/_elements.scss +4 -0
  94. package/src/scss/components/_billie-modal.scss +181 -0
  95. package/src/scss/components/_billie-online-messaging.scss +46 -0
  96. package/src/scss/components/_charity-donations.scss +114 -186
  97. package/src/scss/components/_donation-cart-new.scss +192 -0
  98. package/src/scss/components/_payments-checkout.scss +2 -1
  99. package/src/scss/components/_payments-v2.scss +8 -0
  100. package/src/scss/components/_tooltip.scss +19 -0
  101. package/src/scss/components/checkout-payment-details-v2.scss +237 -0
  102. package/src/scss/components/loader.scss +8 -0
  103. package/src/scss/components/my-account/_active-orders.scss +2 -0
  104. package/src/scss/components/my-account/_payment-status.scss +84 -0
  105. package/src/scss/components/price-block-v2-critical.scss +4 -0
  106. package/src/scss/components/price-block-v2.scss +4 -0
  107. package/src/scss/pages/_checkout-confirmation-new.scss +10 -3
  108. package/src/scss/pages/checkout-new.scss +3 -0
  109. package/src/scss/pages/my-account-v2.scss +2 -0
  110. package/src/scss/pages/page_wismo-details.scss +1 -0
  111. package/src/scss/pdp-main-critical.scss +1 -0
  112. package/src/scss/pdp-main.scss +2 -0
  113. package/src/sitemap.html +31 -2
  114. package/src/page_shopping-cart-charity.html +0 -56
@@ -43,6 +43,7 @@
43
43
  @import 'components/wisdom-critical';
44
44
  @import 'components/pdp-action-v2';
45
45
  @import 'components/clearpay';
46
+ @import 'components/billie-online-messaging';
46
47
 
47
48
  // Pages
48
49
  @import 'pages/page_product-details-critical';
@@ -78,6 +78,8 @@
78
78
  @import 'components/wisdom';
79
79
  @import 'components/long-banner';
80
80
  @import 'components/clearpay';
81
+ @import 'components/billie-online-messaging';
82
+ @import 'components/billie-modal';
81
83
 
82
84
  // Pages
83
85
  @import 'pages/page_ti';
package/src/sitemap.html CHANGED
@@ -927,6 +927,35 @@
927
927
  </a>
928
928
  </li>
929
929
  </ul>
930
+ <h3>
931
+ Pages with Billie payment
932
+ </h3>
933
+ <ul>
934
+ <li>
935
+ <span class="page-id">1</span>
936
+ <a href="page_payment-details-with-billie.html" target="_blank">
937
+ Billie - Payment details
938
+ </a>
939
+ </li>
940
+ <li>
941
+ <span class="page-id">2</span>
942
+ <a href="page_product-details-billie.html" target="_blank">
943
+ Billie PDP
944
+ </a>
945
+ </li>
946
+ <li>
947
+ <span class="page-id">3</span>
948
+ <a href="page_checkout_confirmation-billie.html" target="_blank">
949
+ Billie Checkout - Confirmation new
950
+ </a>
951
+ </li>
952
+ <li>
953
+ <span class="page-id">4</span>
954
+ <a href="page_basket-billie.html" target="_blank">
955
+ Billie Basket
956
+ </a>
957
+ </li>
958
+ </ul>
930
959
  <h3>
931
960
  Old Navigation
932
961
  </h3>
@@ -938,6 +967,8 @@
938
967
  </a>
939
968
  </li>
940
969
  </ul>
970
+
971
+
941
972
  </div>
942
973
  <div class="col">
943
974
  <h3>Basket</h3>
@@ -950,8 +981,6 @@
950
981
  Basket</a></li>
951
982
  <li><span class="page-id">8.6</span><a href="page_checkout_merge-basket.html" target="_blank">Merged
952
983
  basket</a></li>
953
- <li><span class="page-id">8.7</span><a href="page_shopping-cart-charity.html" target="_blank">Basket Charity Donation</a>
954
- </li>
955
984
  <li><span class="page-id">8.8</span><a href="page_shopping-cart-v2.html" target="_blank">Basket NEW</a>
956
985
  </li>
957
986
  <li><span class="page-id">8.9</span><a href="page_shopping-cart-registered-v2.html" target="_blank">Basket Registered NEW</a>
@@ -1,56 +0,0 @@
1
- {{#extend "right-aside" page_shopping-cart pageClass="page_basket" title="Basket" pageBasket=true}}
2
- {{#content "head" mode="append"}}
3
- <link type="text/css" rel="stylesheet" href="./css/pages/page_shopping-cart.css">
4
- <link type="text/css" rel="stylesheet" href="./css/pages/checkout.css">
5
- {{/content}}
6
- {{#content "heading"}}
7
- <div class="notification-area desktop">
8
- {{> notifications notification-page.warning-tiles-changed withCloseBtn="true"}}
9
- </div>
10
-
11
- <div class="page-header">
12
- <a href="./" class="page-header__back-link">Continue shopping</a>
13
-
14
- <div class="notification-area mobile">
15
- {{> notifications notification-page.warning-tiles-changed withCloseBtn="true"}}
16
- </div>
17
-
18
- <h1 class="page-header__title">Your Basket</h1>
19
- </div>
20
- {{/content}}
21
- {{#content "main"}}
22
- {{> checkout_actions
23
- top-actions=true
24
- modifier="checkout-widget__basket-block_small"}}
25
- {{> checkout_order-summary_basket label="Total: " id=1 }}
26
- {{#extend "lines-group" name="For delivery" count=4 id=136589003}}
27
- {{#content "content"}}
28
- {{#each linesDelivery}}
29
- {{>order-line mod="order-line_shrink" dynamic=true deliveryChecked=true pageShopCart=true}}
30
- {{/each}}
31
- {{/content}}
32
- {{/extend}}
33
- {{#if charityDonations}}
34
- {{> charity-donations charityDonations}}
35
- {{#each linesCharity}}
36
- {{>order-line mod="order-line_shrink" dynamic=true}}
37
- {{/each}}
38
- {{/if}}
39
- {{/content}}
40
- {{#content "aside"}}
41
- {{> checkout_order-summary_basket label="Total: " id=2}}
42
- {{/content}}
43
- {{#content "prefooter"}}
44
- <div class="container component pb-0">
45
- <hr>
46
- </div>
47
-
48
- {{/content}}
49
- {{#content "footer"}}
50
- {{> footer_basket }}
51
- {{/content}}
52
- {{#content "foot" mode="append"}}
53
- <script defer src="./js/page/basket.js"></script>
54
- {{> click-and-collect-modal }}
55
- {{/content}}
56
- {{/extend}}