wickes-css2 2.109.0-develop.2 → 2.109.0-develop.4

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 (91) hide show
  1. package/build/css/category-main.css +1 -1
  2. package/build/css/components/card-product-banner.css +1 -1
  3. package/build/css/homepage-main.css +1 -1
  4. package/build/css/kitchen-plp-main.css +1 -1
  5. package/build/css/main.css +1 -1
  6. package/build/css/my-account-main-v2.css +1 -1
  7. package/build/css/my-account-main.css +1 -1
  8. package/build/css/pages/page_checkout_delivery-new.css +1 -1
  9. package/build/css/pages/page_products-list-combined.css +1 -1
  10. package/build/css/pages/page_products-list.css +1 -1
  11. package/build/css/pages/page_shopping-cart-v2.css +1 -1
  12. package/build/css/pdp-main-before-combine.css +1 -1
  13. package/build/css/pdp-main-critical.css +1 -1
  14. package/build/css/pdp-main-non-critical.css +1 -1
  15. package/build/css/pdp-main.css +1 -1
  16. package/build/css/plp-main.css +1 -1
  17. package/build/css/store-locator-main.css +1 -1
  18. package/build/js/basket.min.js +1 -1
  19. package/build/js/checkout.min.js +1 -1
  20. package/build/js/emulation.min.js +490 -56
  21. package/build/js/gift-cards.min.js +1 -1
  22. package/build/js/merged-checkout.min.js +1 -1
  23. package/build/js/mini-basket-slider.min.js +1 -1
  24. package/build/js/page/basket/mini-basket-total.js +17 -2
  25. package/build/js/page/basket-v2.js +30 -26
  26. package/build/js/page/components/notify-me.js +99 -0
  27. package/build/js/page/components/order-summary.js +35 -0
  28. package/build/js/pdp.bundle.min.js +2 -1
  29. package/build/js/wickes-dc.js +1 -0
  30. package/package.json +1 -3
  31. package/src/components/base/button.hbs +1 -1
  32. package/src/components/card_product_banner_v2.hbs +4 -1
  33. package/src/components/card_sponsor_banner.hbs +4 -1
  34. package/src/components/checkout_order-summary-new.hbs +10 -1
  35. package/src/components/click-and-collect-modal.hbs +0 -14
  36. package/src/components/date-selection.hbs +1 -1
  37. package/src/components/delivery-types.hbs +11 -3
  38. package/src/components/injected-content.hbs +6 -1
  39. package/src/components/modal.hbs +1 -1
  40. package/src/components/modals/notify-me-modal.hbs +76 -0
  41. package/src/components/order-item.hbs +7 -7
  42. package/src/components/order-summary.hbs +2 -2
  43. package/src/components/potential-promotion.hbs +4 -4
  44. package/src/components/price-block-v2.hbs +211 -214
  45. package/src/components/sponsor-top-banner.hbs +10 -0
  46. package/src/data/data_delivery-address-v2.json +1 -1
  47. package/src/data/data_search-results_v2.json +9 -2
  48. package/src/data/data_shopping-cart-v2.json +46 -2
  49. package/src/data/data_shopping-cart-with-energy.json +26 -2
  50. package/src/data/data_spr_injected_content.json +4 -0
  51. package/src/js/emulation/basket-data.js +312 -0
  52. package/src/js/emulation/checkout-delivery-details.js +28 -25
  53. package/src/js/emulation/custom-slider-emulation.js +1 -1
  54. package/src/js/emulation/date-selection.js +136 -24
  55. package/src/js/emulation/forms.js +12 -0
  56. package/src/js/emulation/mini-basket-data.js +3 -3
  57. package/src/js/emulation/notify-me.js +9 -0
  58. package/src/js/emulation/switchCalendar.js +12 -8
  59. package/src/js/page/basket/mini-basket-total.js +17 -2
  60. package/src/js/page/basket-v2.js +30 -26
  61. package/src/js/page/components/notify-me.js +99 -0
  62. package/src/js/page/components/order-summary.js +35 -0
  63. package/src/page_checkout_next-day-delivery-details.html +2 -2
  64. package/src/page_checkout_payment-details-v2-asm.html +1 -1
  65. package/src/page_checkout_payment-details-v2.html +1 -1
  66. package/src/page_checkout_payment-details_with-card-loader.html +1 -1
  67. package/src/page_checkout_payment-details_with-klarna-loader.html +1 -1
  68. package/src/page_checkout_payment-details_with-loader-v2.html +1 -1
  69. package/src/page_checkout_rapid-delivery-details.html +7 -5
  70. package/src/page_klarna_payment-details_with-klarna.html +1 -1
  71. package/src/page_payment-details-with-billie.html +1 -1
  72. package/src/page_payment-details-with-clearpay.html +1 -1
  73. package/src/page_payment-details-with-gift-card.html +1 -1
  74. package/src/page_payment-details_with_apple-pay.html +1 -1
  75. package/src/page_payment-details_with_google-pay.html +1 -1
  76. package/src/page_plp_v2.html +1 -0
  77. package/src/page_product-details-mfe-calculator.html +9 -3
  78. package/src/scss/common/_CTAs.scss +7 -3
  79. package/src/scss/components/_custom-slider.scss +18 -0
  80. package/src/scss/components/_date-selection-add-new-styles.scss +43 -1
  81. package/src/scss/components/_notify-me-modal.scss +139 -0
  82. package/src/scss/components/_order-summary.scss +25 -12
  83. package/src/scss/components/_price-block-critical.scss +2 -2
  84. package/src/scss/components/_price-block.scss +14 -4
  85. package/src/scss/components/card-product-banner.scss +8 -0
  86. package/src/scss/helpers/_CTAs.scss +15 -5
  87. package/src/scss/pages/page_checkout_delivery-new.scss +36 -0
  88. package/src/scss/pages/page_products-list-combined.scss +8 -1
  89. package/src/scss/pages/page_products-list.scss +8 -1
  90. package/src/scss/pages/page_shopping-cart-v2.scss +34 -10
  91. package/src/scss/pdp-main.scss +1 -0
@@ -1853,6 +1853,18 @@ Wick.BasketData = function () {
1853
1853
  currencyIso: 'GBP',
1854
1854
  formattedPriceWithoutCurrencySymbol: '4'
1855
1855
  },
1856
+ displayBasePrice: {
1857
+ value: 5.0,
1858
+ formattedValue: '£5.00',
1859
+ currencyIso: 'GBP',
1860
+ formattedPriceWithoutCurrencySymbol: '5.00'
1861
+ },
1862
+ displayBasePriceExclusiveVat: {
1863
+ value: 4,
1864
+ formattedValue: '£4',
1865
+ currencyIso: 'GBP',
1866
+ formattedPriceWithoutCurrencySymbol: '4'
1867
+ },
1856
1868
  totalPrice: {
1857
1869
  currencyIso: 'GBP',
1858
1870
  value: 3700.0,
@@ -2173,6 +2185,18 @@ Wick.BasketData = function () {
2173
2185
  currencyIso: 'GBP',
2174
2186
  formattedPriceWithoutCurrencySymbol: '3600'
2175
2187
  },
2188
+ displayItemTotalWithoutDiscount: {
2189
+ value: 3700.0,
2190
+ formattedValue: '£3700.00',
2191
+ currencyIso: 'GBP',
2192
+ formattedPriceWithoutCurrencySymbol: '3700.00'
2193
+ },
2194
+ displayItemTotalWithoutDiscountExclusiveVat: {
2195
+ value: 3600,
2196
+ formattedValue: '£3600',
2197
+ currencyIso: 'GBP',
2198
+ formattedPriceWithoutCurrencySymbol: '3600'
2199
+ },
2176
2200
  appliedPromotions: null,
2177
2201
  tilingInstallationData: null,
2178
2202
  flooringInstallationData: null,
@@ -2258,6 +2282,18 @@ Wick.BasketData = function () {
2258
2282
  currencyIso: 'GBP',
2259
2283
  formattedPriceWithoutCurrencySymbol: '99'
2260
2284
  },
2285
+ displayBasePrice: {
2286
+ value: 100.0,
2287
+ formattedValue: '£100',
2288
+ currencyIso: 'GBP',
2289
+ formattedPriceWithoutCurrencySymbol: '100'
2290
+ },
2291
+ displayBasePriceExclusiveVat: {
2292
+ value: 99,
2293
+ formattedValue: '£99',
2294
+ currencyIso: 'GBP',
2295
+ formattedPriceWithoutCurrencySymbol: '99'
2296
+ },
2261
2297
  product: {
2262
2298
  code: '221100',
2263
2299
  name: 'Blue Circle Ready To Use Postcrete - 20kg',
@@ -2309,6 +2345,18 @@ Wick.BasketData = function () {
2309
2345
  currencyIso: 'GBP',
2310
2346
  formattedPriceWithoutCurrencySymbol: '99'
2311
2347
  },
2348
+ displayItemTotalWithoutDiscount: {
2349
+ value: 100.0,
2350
+ formattedValue: '£100',
2351
+ currencyIso: 'GBP',
2352
+ formattedPriceWithoutCurrencySymbol: '100'
2353
+ },
2354
+ displayItemTotalWithoutDiscountExclusiveVat: {
2355
+ value: 99,
2356
+ formattedValue: '£99',
2357
+ currencyIso: 'GBP',
2358
+ formattedPriceWithoutCurrencySymbol: '99'
2359
+ },
2312
2360
  orderFulfilmentControls: {
2313
2361
  availableForDelivery: true,
2314
2362
  availableForCollection: true,
@@ -2338,6 +2386,18 @@ Wick.BasketData = function () {
2338
2386
  currencyIso: 'GBP',
2339
2387
  formattedPriceWithoutCurrencySymbol: '23'
2340
2388
  },
2389
+ displayBasePrice: {
2390
+ value: 24.0,
2391
+ formattedValue: '£24',
2392
+ currencyIso: 'GBP',
2393
+ formattedPriceWithoutCurrencySymbol: '24'
2394
+ },
2395
+ displayBasePriceExclusiveVat: {
2396
+ value: 23,
2397
+ formattedValue: '£23',
2398
+ currencyIso: 'GBP',
2399
+ formattedPriceWithoutCurrencySymbol: '23'
2400
+ },
2341
2401
  product: {
2342
2402
  code: '109450',
2343
2403
  name: 'Knauf Insulation Space Standard Top Up 170mm Loft Roll - 6.47m²',
@@ -2386,6 +2446,18 @@ Wick.BasketData = function () {
2386
2446
  currencyIso: 'GBP',
2387
2447
  formattedPriceWithoutCurrencySymbol: '23'
2388
2448
  },
2449
+ displayItemTotalWithoutDiscount: {
2450
+ value: 24.0,
2451
+ formattedValue: '£24',
2452
+ currencyIso: 'GBP',
2453
+ formattedPriceWithoutCurrencySymbol: '24'
2454
+ },
2455
+ displayItemTotalWithoutDiscountExclusiveVat: {
2456
+ value: 23,
2457
+ formattedValue: '£23',
2458
+ currencyIso: 'GBP',
2459
+ formattedPriceWithoutCurrencySymbol: '23'
2460
+ },
2389
2461
  orderFulfilmentControls: {
2390
2462
  availableForDelivery: true,
2391
2463
  availableForCollection: true,
@@ -2406,6 +2478,18 @@ Wick.BasketData = function () {
2406
2478
  currencyIso: 'GBP',
2407
2479
  formattedPriceWithoutCurrencySymbol: '0'
2408
2480
  },
2481
+ displayBasePrice: {
2482
+ value: 0.0,
2483
+ formattedValue: '£0',
2484
+ currencyIso: 'GBP',
2485
+ formattedPriceWithoutCurrencySymbol: '0'
2486
+ },
2487
+ displayBasePriceExclusiveVat: {
2488
+ value: 0,
2489
+ formattedValue: '£0',
2490
+ currencyIso: 'GBP',
2491
+ formattedPriceWithoutCurrencySymbol: '0'
2492
+ },
2409
2493
  product: {
2410
2494
  code: '103123',
2411
2495
  name: 'Wickes Passage Door Knob Set - Brass 1 Pair',
@@ -2460,6 +2544,18 @@ Wick.BasketData = function () {
2460
2544
  currencyIso: 'GBP',
2461
2545
  formattedPriceWithoutCurrencySymbol: '0'
2462
2546
  },
2547
+ displayItemTotalWithoutDiscount: {
2548
+ value: 0.0,
2549
+ formattedValue: '£0',
2550
+ currencyIso: 'GBP',
2551
+ formattedPriceWithoutCurrencySymbol: '0'
2552
+ },
2553
+ displayItemTotalWithoutDiscountExclusiveVat: {
2554
+ value: 0,
2555
+ formattedValue: '£0',
2556
+ currencyIso: 'GBP',
2557
+ formattedPriceWithoutCurrencySymbol: '0'
2558
+ },
2463
2559
  orderFulfilmentControls: {
2464
2560
  availableForDelivery: true,
2465
2561
  availableForCollection: true,
@@ -2490,6 +2586,18 @@ Wick.BasketData = function () {
2490
2586
  currencyIso: 'GBP',
2491
2587
  formattedPriceWithoutCurrencySymbol: '24'
2492
2588
  },
2589
+ displayBasePrice: {
2590
+ value: 25.0,
2591
+ formattedValue: '£25',
2592
+ currencyIso: 'GBP',
2593
+ formattedPriceWithoutCurrencySymbol: '25'
2594
+ },
2595
+ displayBasePriceExclusiveVat: {
2596
+ value: 24,
2597
+ formattedValue: '£24',
2598
+ currencyIso: 'GBP',
2599
+ formattedPriceWithoutCurrencySymbol: '24'
2600
+ },
2493
2601
  product: {
2494
2602
  code: '109451',
2495
2603
  name: 'Knauf Insulation Super Top Up 200mm Loft Roll - 5.61m²',
@@ -2546,6 +2654,18 @@ Wick.BasketData = function () {
2546
2654
  currencyIso: 'GBP',
2547
2655
  formattedPriceWithoutCurrencySymbol: '24'
2548
2656
  },
2657
+ displayItemTotalWithoutDiscount: {
2658
+ value: 25.0,
2659
+ formattedValue: '£25',
2660
+ currencyIso: 'GBP',
2661
+ formattedPriceWithoutCurrencySymbol: '25'
2662
+ },
2663
+ displayItemTotalWithoutDiscountExclusiveVat: {
2664
+ value: 24,
2665
+ formattedValue: '£24',
2666
+ currencyIso: 'GBP',
2667
+ formattedPriceWithoutCurrencySymbol: '24'
2668
+ },
2549
2669
  orderFulfilmentControls: {
2550
2670
  availableForDelivery: true,
2551
2671
  availableForCollection: true,
@@ -2566,6 +2686,18 @@ Wick.BasketData = function () {
2566
2686
  currencyIso: 'GBP',
2567
2687
  formattedPriceWithoutCurrencySymbol: '24'
2568
2688
  },
2689
+ displayBasePrice: {
2690
+ value: 25.0,
2691
+ formattedValue: '£25',
2692
+ currencyIso: 'GBP',
2693
+ formattedPriceWithoutCurrencySymbol: '25'
2694
+ },
2695
+ displayBasePriceExclusiveVat: {
2696
+ value: 24,
2697
+ formattedValue: '£24',
2698
+ currencyIso: 'GBP',
2699
+ formattedPriceWithoutCurrencySymbol: '24'
2700
+ },
2569
2701
  product: {
2570
2702
  code: '123143',
2571
2703
  name: '6 Wickes General Purpose Claw test',
@@ -2611,6 +2743,18 @@ Wick.BasketData = function () {
2611
2743
  currencyIso: 'GBP',
2612
2744
  formattedPriceWithoutCurrencySymbol: '24'
2613
2745
  },
2746
+ displayItemTotalWithoutDiscount: {
2747
+ value: 25.0,
2748
+ formattedValue: '£25',
2749
+ currencyIso: 'GBP',
2750
+ formattedPriceWithoutCurrencySymbol: '25'
2751
+ },
2752
+ displayItemTotalWithoutDiscountExclusiveVat: {
2753
+ value: 24,
2754
+ formattedValue: '£24',
2755
+ currencyIso: 'GBP',
2756
+ formattedPriceWithoutCurrencySymbol: '24'
2757
+ },
2614
2758
  orderFulfilmentControls: {
2615
2759
  availableForDelivery: true,
2616
2760
  availableForCollection: true,
@@ -2708,6 +2852,18 @@ Wick.BasketData = function () {
2708
2852
  currencyIso: 'GBP',
2709
2853
  formattedPriceWithoutCurrencySymbol: '99'
2710
2854
  },
2855
+ displayBasePrice: {
2856
+ value: 100.0,
2857
+ formattedValue: '£100',
2858
+ currencyIso: 'GBP',
2859
+ formattedPriceWithoutCurrencySymbol: '100'
2860
+ },
2861
+ displayBasePriceExclusiveVat: {
2862
+ value: 99,
2863
+ formattedValue: '£99',
2864
+ currencyIso: 'GBP',
2865
+ formattedPriceWithoutCurrencySymbol: '99'
2866
+ },
2711
2867
  product: {
2712
2868
  code: '221100',
2713
2869
  name: 'Blue Circle Ready To Use Postcrete - 20kg',
@@ -2759,6 +2915,18 @@ Wick.BasketData = function () {
2759
2915
  currencyIso: 'GBP',
2760
2916
  formattedPriceWithoutCurrencySymbol: '99'
2761
2917
  },
2918
+ displayItemTotalWithoutDiscount: {
2919
+ value: 100.0,
2920
+ formattedValue: '£100',
2921
+ currencyIso: 'GBP',
2922
+ formattedPriceWithoutCurrencySymbol: '100'
2923
+ },
2924
+ displayItemTotalWithoutDiscountExclusiveVat: {
2925
+ value: 99,
2926
+ formattedValue: '£99',
2927
+ currencyIso: 'GBP',
2928
+ formattedPriceWithoutCurrencySymbol: '99'
2929
+ },
2762
2930
  orderFulfilmentControls: {
2763
2931
  availableForDelivery: true,
2764
2932
  availableForCollection: true,
@@ -2788,6 +2956,18 @@ Wick.BasketData = function () {
2788
2956
  currencyIso: 'GBP',
2789
2957
  formattedPriceWithoutCurrencySymbol: '23'
2790
2958
  },
2959
+ displayBasePrice: {
2960
+ value: 24.0,
2961
+ formattedValue: '£24',
2962
+ currencyIso: 'GBP',
2963
+ formattedPriceWithoutCurrencySymbol: '24'
2964
+ },
2965
+ displayBasePriceExclusiveVat: {
2966
+ value: 23,
2967
+ formattedValue: '£23',
2968
+ currencyIso: 'GBP',
2969
+ formattedPriceWithoutCurrencySymbol: '23'
2970
+ },
2791
2971
  product: {
2792
2972
  code: '109450',
2793
2973
  name: 'Knauf Insulation Space Standard Top Up 170mm Loft Roll - 6.47m²',
@@ -2836,6 +3016,18 @@ Wick.BasketData = function () {
2836
3016
  currencyIso: 'GBP',
2837
3017
  formattedPriceWithoutCurrencySymbol: '23'
2838
3018
  },
3019
+ displayItemTotalWithoutDiscount: {
3020
+ value: 24.0,
3021
+ formattedValue: '£24',
3022
+ currencyIso: 'GBP',
3023
+ formattedPriceWithoutCurrencySymbol: '24'
3024
+ },
3025
+ displayItemTotalWithoutDiscountExclusiveVat: {
3026
+ value: 23,
3027
+ formattedValue: '£23',
3028
+ currencyIso: 'GBP',
3029
+ formattedPriceWithoutCurrencySymbol: '23'
3030
+ },
2839
3031
  orderFulfilmentControls: {
2840
3032
  availableForDelivery: true,
2841
3033
  availableForCollection: true,
@@ -2856,6 +3048,18 @@ Wick.BasketData = function () {
2856
3048
  currencyIso: 'GBP',
2857
3049
  formattedPriceWithoutCurrencySymbol: '0'
2858
3050
  },
3051
+ displayBasePrice: {
3052
+ value: 0.0,
3053
+ formattedValue: '£0',
3054
+ currencyIso: 'GBP',
3055
+ formattedPriceWithoutCurrencySymbol: '0'
3056
+ },
3057
+ displayBasePriceExclusiveVat: {
3058
+ value: 0,
3059
+ formattedValue: '£0',
3060
+ currencyIso: 'GBP',
3061
+ formattedPriceWithoutCurrencySymbol: '0'
3062
+ },
2859
3063
  product: {
2860
3064
  code: '103123',
2861
3065
  name: 'Wickes Passage Door Knob Set - Brass 1 Pair',
@@ -2910,6 +3114,18 @@ Wick.BasketData = function () {
2910
3114
  currencyIso: 'GBP',
2911
3115
  formattedPriceWithoutCurrencySymbol: '0'
2912
3116
  },
3117
+ displayItemTotalWithoutDiscount: {
3118
+ value: 0.0,
3119
+ formattedValue: '£0',
3120
+ currencyIso: 'GBP',
3121
+ formattedPriceWithoutCurrencySymbol: '0'
3122
+ },
3123
+ displayItemTotalWithoutDiscountExclusiveVat: {
3124
+ value: 0,
3125
+ formattedValue: '£0',
3126
+ currencyIso: 'GBP',
3127
+ formattedPriceWithoutCurrencySymbol: '0'
3128
+ },
2913
3129
  orderFulfilmentControls: {
2914
3130
  availableForDelivery: true,
2915
3131
  availableForCollection: true,
@@ -2940,6 +3156,18 @@ Wick.BasketData = function () {
2940
3156
  currencyIso: 'GBP',
2941
3157
  formattedPriceWithoutCurrencySymbol: '24'
2942
3158
  },
3159
+ displayBasePrice: {
3160
+ value: 25.0,
3161
+ formattedValue: '£25',
3162
+ currencyIso: 'GBP',
3163
+ formattedPriceWithoutCurrencySymbol: '25'
3164
+ },
3165
+ displayBasePriceExclusiveVat: {
3166
+ value: 24,
3167
+ formattedValue: '£24',
3168
+ currencyIso: 'GBP',
3169
+ formattedPriceWithoutCurrencySymbol: '24'
3170
+ },
2943
3171
  product: {
2944
3172
  code: '109451',
2945
3173
  name: 'Knauf Insulation Super Top Up 200mm Loft Roll - 5.61m²',
@@ -2996,6 +3224,18 @@ Wick.BasketData = function () {
2996
3224
  currencyIso: 'GBP',
2997
3225
  formattedPriceWithoutCurrencySymbol: '24'
2998
3226
  },
3227
+ displayItemTotalWithoutDiscount: {
3228
+ value: 25.0,
3229
+ formattedValue: '£25',
3230
+ currencyIso: 'GBP',
3231
+ formattedPriceWithoutCurrencySymbol: '25'
3232
+ },
3233
+ displayItemTotalWithoutDiscountExclusiveVat: {
3234
+ value: 24,
3235
+ formattedValue: '£24',
3236
+ currencyIso: 'GBP',
3237
+ formattedPriceWithoutCurrencySymbol: '24'
3238
+ },
2999
3239
  orderFulfilmentControls: {
3000
3240
  availableForDelivery: true,
3001
3241
  availableForCollection: true,
@@ -3016,6 +3256,18 @@ Wick.BasketData = function () {
3016
3256
  currencyIso: 'GBP',
3017
3257
  formattedPriceWithoutCurrencySymbol: '24'
3018
3258
  },
3259
+ displayBasePrice: {
3260
+ value: 25.0,
3261
+ formattedValue: '£25',
3262
+ currencyIso: 'GBP',
3263
+ formattedPriceWithoutCurrencySymbol: '25'
3264
+ },
3265
+ displayBasePriceExclusiveVat: {
3266
+ value: 24,
3267
+ formattedValue: '£24',
3268
+ currencyIso: 'GBP',
3269
+ formattedPriceWithoutCurrencySymbol: '24'
3270
+ },
3019
3271
  product: {
3020
3272
  code: '123143',
3021
3273
  name: '6 Wickes General Purpose Claw test',
@@ -3061,6 +3313,18 @@ Wick.BasketData = function () {
3061
3313
  currencyIso: 'GBP',
3062
3314
  formattedPriceWithoutCurrencySymbol: '24'
3063
3315
  },
3316
+ displayItemTotalWithoutDiscount: {
3317
+ value: 25.0,
3318
+ formattedValue: '£25',
3319
+ currencyIso: 'GBP',
3320
+ formattedPriceWithoutCurrencySymbol: '25'
3321
+ },
3322
+ displayItemTotalWithoutDiscountExclusiveVat: {
3323
+ value: 24,
3324
+ formattedValue: '£24',
3325
+ currencyIso: 'GBP',
3326
+ formattedPriceWithoutCurrencySymbol: '24'
3327
+ },
3064
3328
  orderFulfilmentControls: {
3065
3329
  availableForDelivery: true,
3066
3330
  availableForCollection: true,
@@ -3122,6 +3386,18 @@ Wick.BasketData = function () {
3122
3386
  currencyIso: 'GBP',
3123
3387
  formattedPriceWithoutCurrencySymbol: '17'
3124
3388
  },
3389
+ displayBasePrice: {
3390
+ value: 18.0,
3391
+ formattedValue: '£18.00',
3392
+ currencyIso: 'GBP',
3393
+ formattedPriceWithoutCurrencySymbol: '18.00'
3394
+ },
3395
+ displayBasePriceExclusiveVat: {
3396
+ value: 17,
3397
+ formattedValue: '£17',
3398
+ currencyIso: 'GBP',
3399
+ formattedPriceWithoutCurrencySymbol: '17'
3400
+ },
3125
3401
  totalPrice: {
3126
3402
  currencyIso: 'GBP',
3127
3403
  value: 36.0,
@@ -3572,6 +3848,18 @@ Wick.BasketData = function () {
3572
3848
  currencyIso: 'GBP',
3573
3849
  formattedPriceWithoutCurrencySymbol: '35'
3574
3850
  },
3851
+ displayItemTotalWithoutDiscount: {
3852
+ value: 36.0,
3853
+ formattedValue: '£36.00',
3854
+ currencyIso: 'GBP',
3855
+ formattedPriceWithoutCurrencySymbol: '36.00'
3856
+ },
3857
+ displayItemTotalWithoutDiscountExclusiveVat: {
3858
+ value: 35,
3859
+ formattedValue: '£35',
3860
+ currencyIso: 'GBP',
3861
+ formattedPriceWithoutCurrencySymbol: '35'
3862
+ },
3575
3863
  appliedPromotions: null,
3576
3864
  tilingInstallationData: null,
3577
3865
  flooringInstallationData: null,
@@ -3622,6 +3910,18 @@ Wick.BasketData = function () {
3622
3910
  currencyIso: 'GBP',
3623
3911
  formattedPriceWithoutCurrencySymbol: '3'
3624
3912
  },
3913
+ displayBasePrice: {
3914
+ value: 4.0,
3915
+ formattedValue: '£4.00',
3916
+ currencyIso: 'GBP',
3917
+ formattedPriceWithoutCurrencySymbol: '4.00'
3918
+ },
3919
+ displayBasePriceExclusiveVat: {
3920
+ value: 3,
3921
+ formattedValue: '£3',
3922
+ currencyIso: 'GBP',
3923
+ formattedPriceWithoutCurrencySymbol: '3'
3924
+ },
3625
3925
  totalPrice: {
3626
3926
  currencyIso: 'GBP',
3627
3927
  value: 24.0,
@@ -3822,6 +4122,18 @@ Wick.BasketData = function () {
3822
4122
  currencyIso: 'GBP',
3823
4123
  formattedPriceWithoutCurrencySymbol: '23'
3824
4124
  },
4125
+ displayItemTotalWithoutDiscount: {
4126
+ value: 24.0,
4127
+ formattedValue: '£24.00',
4128
+ currencyIso: 'GBP',
4129
+ formattedPriceWithoutCurrencySymbol: '24.00'
4130
+ },
4131
+ displayItemTotalWithoutDiscountExclusiveVat: {
4132
+ value: 23,
4133
+ formattedValue: '£23',
4134
+ currencyIso: 'GBP',
4135
+ formattedPriceWithoutCurrencySymbol: '23'
4136
+ },
3825
4137
  appliedPromotions: null,
3826
4138
  tilingInstallationData: null,
3827
4139
  flooringInstallationData: null,
@@ -5027,7 +5339,7 @@ function simulateHybrisSendingHtml() {
5027
5339
  html: htmlFromHybris
5028
5340
  }
5029
5341
  });
5030
- document.dispatchEvent(event);
5342
+ window.dispatchEvent(event);
5031
5343
  }
5032
5344
  function bindResolveEvent(events) {
5033
5345
  $(window).on(events.join(' '), function (_ref) {
@@ -5045,33 +5357,133 @@ $(document).ready(function () {
5045
5357
  },{}],45:[function(require,module,exports){
5046
5358
  "use strict";
5047
5359
 
5048
- var Wick = Wick || {};
5049
- Wick.DateSelection = function () {
5050
- var $self = $('.date-selection'),
5051
- cell = '.calendar__cell_cnt',
5052
- selectedCell = 'calendar__cell_selected',
5053
- isSelected = 'date-selection_selected',
5054
- _isDateSelected = false;
5055
- var selectTimeSlot = function selectTimeSlot(e) {
5056
- $(cell).removeClass(selectedCell);
5057
- $(e.target).addClass(selectedCell);
5058
- $self.addClass(isSelected);
5059
- $self.trigger('selected');
5060
- _isDateSelected = true;
5061
- };
5062
- var init = function init() {
5063
- if (!$self.length) {
5360
+ var DS_EL = {
5361
+ cell: '.calendar__cell_cnt',
5362
+ dateSelection: '.date-selection',
5363
+ loader: '.rapid-loader',
5364
+ title: '.delivery-btn .title',
5365
+ subtitle: '.delivery-btn .subtitle',
5366
+ infoIcon: '.rapid-info-icon',
5367
+ image: '.delivery-btn__image'
5368
+ };
5369
+ var DS_CLASSES = {
5370
+ selectedCell: 'calendar__cell_selected',
5371
+ isSelected: 'date-selection_selected',
5372
+ rapidCell: 'calendar__cell_rapid',
5373
+ hidden: 'd-none'
5374
+ };
5375
+ var rapidLoaderShown = false;
5376
+ var _isDateSelected = false;
5377
+ function generateRapidEstimate() {
5378
+ var scenario = Math.floor(Math.random() * 4);
5379
+ switch (scenario) {
5380
+ case 0:
5381
+ {
5382
+ var mins = Math.floor(Math.random() * 59) + 1;
5383
+ var padded = String(mins).padStart(2, '0');
5384
+ var word = mins === 1 ? 'minute' : 'minutes';
5385
+ return "Delivered in as little as <br>".concat(padded, " ").concat(word, " for &pound;10.00");
5386
+ }
5387
+ case 1:
5388
+ {
5389
+ var _mins = Math.floor(Math.random() * 60);
5390
+ var _padded = String(_mins).padStart(2, '0');
5391
+ var _word = _mins === 1 ? 'minute' : 'minutes';
5392
+ var minutePart = _mins === 0 ? '00 minutes' : "".concat(_padded, " ").concat(_word);
5393
+ return "Delivered in as little as <br>1 hour ".concat(minutePart, " for &pound;10.00");
5394
+ }
5395
+ case 2:
5396
+ {
5397
+ var _mins2 = Math.floor(Math.random() * 60);
5398
+ var _padded2 = String(_mins2).padStart(2, '0');
5399
+ var _word2 = _mins2 === 1 ? 'minute' : 'minutes';
5400
+ var _minutePart = _mins2 === 0 ? '00 minutes' : "".concat(_padded2, " ").concat(_word2);
5401
+ return "Delivered in as little as <br>2 hours ".concat(_minutePart, " for &pound;10.00");
5402
+ }
5403
+ default:
5404
+ return null;
5405
+ }
5406
+ }
5407
+ function updateDeliveryInfo() {
5408
+ var $subtitle = $(DS_EL.subtitle);
5409
+ var $infoIcon = $subtitle.find(DS_EL.infoIcon).detach();
5410
+ var estimate = generateRapidEstimate();
5411
+ if (estimate) {
5412
+ $subtitle.html(estimate);
5413
+ $infoIcon.removeClass(DS_CLASSES.hidden);
5414
+ } else {
5415
+ $subtitle.html('Delivery within 3 hours for <b>&pound;10.00');
5416
+ $infoIcon.addClass(DS_CLASSES.hidden);
5417
+ }
5418
+ $subtitle.append($infoIcon);
5419
+ $infoIcon.filter('[data-toggle="tooltip"]').tooltip();
5420
+ }
5421
+ function showRapidLoader() {
5422
+ var $self = $(DS_EL.dateSelection);
5423
+ var $loader = $(DS_EL.loader);
5424
+ $loader.removeClass(DS_CLASSES.hidden);
5425
+ setTimeout(function () {
5426
+ $loader.addClass(DS_CLASSES.hidden);
5427
+ $self.addClass(DS_CLASSES.isSelected);
5428
+ updateRapidInfo();
5429
+ }, 3000);
5430
+ }
5431
+ function updateNonRapidInfo() {
5432
+ var $title = $(DS_EL.title);
5433
+ var $subtitle = $(DS_EL.subtitle);
5434
+ var $infoIcon = $subtitle.find(DS_EL.infoIcon).detach();
5435
+ var $image = $(DS_EL.image);
5436
+ $title.text('Next or Named day delivery');
5437
+ $subtitle.html('Delivery between 7am - 7pm for &pound;12.00');
5438
+ $infoIcon.addClass(DS_CLASSES.hidden);
5439
+ $subtitle.append($infoIcon);
5440
+ $image.addClass(DS_CLASSES.hidden);
5441
+ }
5442
+ function updateRapidInfo() {
5443
+ var $title = $(DS_EL.title);
5444
+ var $image = $(DS_EL.image);
5445
+ $title.text('Rapid delivery');
5446
+ $image.removeClass(DS_CLASSES.hidden);
5447
+ updateDeliveryInfo();
5448
+ }
5449
+ function selectTimeSlot(e) {
5450
+ var $self = $(DS_EL.dateSelection);
5451
+ var $cell = $(e.target).closest(DS_EL.cell);
5452
+ var isRapid = $cell.hasClass(DS_CLASSES.rapidCell);
5453
+ $(DS_EL.cell).removeClass(DS_CLASSES.selectedCell);
5454
+ $cell.addClass(DS_CLASSES.selectedCell);
5455
+ $self.trigger('selected');
5456
+ _isDateSelected = true;
5457
+ if (isRapid) {
5458
+ if (!rapidLoaderShown) {
5459
+ rapidLoaderShown = true;
5460
+ showRapidLoader();
5064
5461
  return;
5462
+ } else {
5463
+ $self.addClass(DS_CLASSES.isSelected);
5464
+ updateRapidInfo();
5065
5465
  }
5066
- $self.on('click', cell, selectTimeSlot);
5067
- };
5068
- init();
5069
- return {
5070
- isDateSelected: function isDateSelected() {
5071
- return _isDateSelected;
5072
- }
5073
- };
5074
- }();
5466
+ } else {
5467
+ $self.addClass(DS_CLASSES.isSelected);
5468
+ updateNonRapidInfo();
5469
+ }
5470
+ }
5471
+ function initDateSelection() {
5472
+ var $self = $(DS_EL.dateSelection);
5473
+ if (!$self.length) {
5474
+ return;
5475
+ }
5476
+ $self.on('click', DS_EL.cell, selectTimeSlot);
5477
+ }
5478
+ var Wick = window.Wick || {};
5479
+ Wick.DateSelection = {
5480
+ isDateSelected: function isDateSelected() {
5481
+ return _isDateSelected;
5482
+ }
5483
+ };
5484
+ $(document).ready(function () {
5485
+ initDateSelection();
5486
+ });
5075
5487
 
5076
5488
  },{}],46:[function(require,module,exports){
5077
5489
  "use strict";
@@ -5332,7 +5744,7 @@ function waitFor(getter, cb, opts) {
5332
5744
  });
5333
5745
  })();
5334
5746
 
5335
- },{"../page/utils/show-more-less":91}],49:[function(require,module,exports){
5747
+ },{"../page/utils/show-more-less":92}],49:[function(require,module,exports){
5336
5748
  "use strict";
5337
5749
 
5338
5750
  var Wick = Wick || {};
@@ -5637,6 +6049,16 @@ Wick.Forms = function () {
5637
6049
  return false;
5638
6050
  }
5639
6051
  }
6052
+ if ($(form).is('.notify-me-form')) {
6053
+ if ($(form).find('#notify-me-email').val().length) {
6054
+ return false;
6055
+ }
6056
+ }
6057
+ if ($(form).is('.add-list-id__form')) {
6058
+ if ($(form).find('#project-id').val().length) {
6059
+ return false;
6060
+ }
6061
+ }
5640
6062
  if ($(form).is('.header-search')) {
5641
6063
  window.location.href = './page_search-results.html';
5642
6064
  }
@@ -11352,7 +11774,7 @@ Wick.MainNavData = function () {
11352
11774
  },{}],61:[function(require,module,exports){
11353
11775
  "use strict";
11354
11776
 
11355
- var Wick = Wick || {};
11777
+ window.Wick = window.Wick || {};
11356
11778
  Wick.MiniBasketData = function () {
11357
11779
  return {
11358
11780
  updateQuantity: {
@@ -12175,14 +12597,14 @@ Wick.MiniBasketData = function () {
12175
12597
  clickAndCollectOnly: false,
12176
12598
  deliveryItemsQuantity: 1,
12177
12599
  pickupItemsQuantity: 2,
12178
- freeDelivery: true,
12600
+ freeDelivery: false,
12179
12601
  subtotalWithoutCharity: {
12180
12602
  value: 19.0,
12181
12603
  formattedValue: '£19.00',
12182
12604
  currencyIso: 'GBP',
12183
12605
  formattedPriceWithoutCurrencySymbol: '19.00'
12184
12606
  },
12185
- messageForFreeDelivery: 'Free delivery<i class="icon fas fa-check"></i>',
12607
+ messageForFreeDelivery: null,
12186
12608
  pickupOrderGroups: [{
12187
12609
  entries: [{
12188
12610
  entryNumber: 1,
@@ -12524,6 +12946,18 @@ $(document).ready(function () {
12524
12946
  },{}],66:[function(require,module,exports){
12525
12947
  "use strict";
12526
12948
 
12949
+ function initNotifyMeEmulation() {
12950
+ $(document).on('submit', Wick.NotifyMeSubscription.el.form, function () {
12951
+ return Wick.NotifyMeSubscription.showSuccessState();
12952
+ });
12953
+ }
12954
+ $(document).ready(function () {
12955
+ initNotifyMeEmulation();
12956
+ });
12957
+
12958
+ },{}],67:[function(require,module,exports){
12959
+ "use strict";
12960
+
12527
12961
  function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
12528
12962
  function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
12529
12963
  function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
@@ -12558,7 +12992,7 @@ Object.entries(paymentTypeSelectors).forEach(function (_ref) {
12558
12992
  });
12559
12993
  });
12560
12994
 
12561
- },{}],67:[function(require,module,exports){
12995
+ },{}],68:[function(require,module,exports){
12562
12996
  "use strict";
12563
12997
 
12564
12998
  var Wick = window.Wick = window.Wick || {};
@@ -12652,7 +13086,7 @@ $(document).ready(function () {
12652
13086
  }
12653
13087
  });
12654
13088
 
12655
- },{}],68:[function(require,module,exports){
13089
+ },{}],69:[function(require,module,exports){
12656
13090
  "use strict";
12657
13091
 
12658
13092
  function handleClickAndScroll(cta, elementToScroll) {
@@ -12672,7 +13106,7 @@ $(document).ready(function () {
12672
13106
  handleClickAndScroll('.pdp-price-sale__value .pdp-price__excluding-delivery', '.pdp__fulfilment');
12673
13107
  });
12674
13108
 
12675
- },{}],69:[function(require,module,exports){
13109
+ },{}],70:[function(require,module,exports){
12676
13110
  "use strict";
12677
13111
 
12678
13112
  var Wick = Wick || {};
@@ -12758,7 +13192,7 @@ $(document).ready(function () {
12758
13192
  initPersonalDetails();
12759
13193
  });
12760
13194
 
12761
- },{}],70:[function(require,module,exports){
13195
+ },{}],71:[function(require,module,exports){
12762
13196
  "use strict";
12763
13197
 
12764
13198
  function getHtmlByCurrentPage(_ref) {
@@ -12787,7 +13221,7 @@ $(document).ready(function () {
12787
13221
  initPLPLoadMoreFunctionality();
12788
13222
  });
12789
13223
 
12790
- },{}],71:[function(require,module,exports){
13224
+ },{}],72:[function(require,module,exports){
12791
13225
  "use strict";
12792
13226
 
12793
13227
  var Wick = window.Wick = window.Wick || {};
@@ -13005,7 +13439,7 @@ Wick.MiniBasket = function () {
13005
13439
  };
13006
13440
  }();
13007
13441
 
13008
- },{}],72:[function(require,module,exports){
13442
+ },{}],73:[function(require,module,exports){
13009
13443
  "use strict";
13010
13444
 
13011
13445
  var Wick = Wick || {};
@@ -13046,7 +13480,7 @@ $(document).ready(function () {
13046
13480
  Wick.ProductCounter.bind();
13047
13481
  });
13048
13482
 
13049
- },{}],73:[function(require,module,exports){
13483
+ },{}],74:[function(require,module,exports){
13050
13484
  "use strict";
13051
13485
 
13052
13486
  var Wick = Wick || {};
@@ -13081,7 +13515,7 @@ $(document).ready(function () {
13081
13515
  Wick.ProjectListMultiple.bindAll();
13082
13516
  });
13083
13517
 
13084
- },{}],74:[function(require,module,exports){
13518
+ },{}],75:[function(require,module,exports){
13085
13519
  "use strict";
13086
13520
 
13087
13521
  var Wick = window.Wick = window.Wick || {};
@@ -13368,7 +13802,7 @@ $(document).ready(function () {
13368
13802
  init();
13369
13803
  });
13370
13804
 
13371
- },{}],75:[function(require,module,exports){
13805
+ },{}],76:[function(require,module,exports){
13372
13806
  "use strict";
13373
13807
 
13374
13808
  function initProjectShadowList() {
@@ -13430,7 +13864,7 @@ $(document).ready(function () {
13430
13864
  initProjectShadowList();
13431
13865
  });
13432
13866
 
13433
- },{}],76:[function(require,module,exports){
13867
+ },{}],77:[function(require,module,exports){
13434
13868
  "use strict";
13435
13869
 
13436
13870
  function initQuizEmail() {
@@ -13450,7 +13884,7 @@ $(document).ready(function () {
13450
13884
  initQuizEmail();
13451
13885
  });
13452
13886
 
13453
- },{}],77:[function(require,module,exports){
13887
+ },{}],78:[function(require,module,exports){
13454
13888
  "use strict";
13455
13889
 
13456
13890
  var Wick = Wick || {};
@@ -13550,7 +13984,7 @@ Wick.ReferenceField = function () {
13550
13984
  init();
13551
13985
  }();
13552
13986
 
13553
- },{}],78:[function(require,module,exports){
13987
+ },{}],79:[function(require,module,exports){
13554
13988
  "use strict";
13555
13989
 
13556
13990
  var Wick = Wick || {};
@@ -13580,7 +14014,7 @@ Wick.RepaymentToggle = function () {
13580
14014
  bindEvents();
13581
14015
  }();
13582
14016
 
13583
- },{}],79:[function(require,module,exports){
14017
+ },{}],80:[function(require,module,exports){
13584
14018
  "use strict";
13585
14019
 
13586
14020
  $(document).on('click', '.filter-results__clear', function () {
@@ -13589,7 +14023,7 @@ $(document).on('click', '.filter-results__clear', function () {
13589
14023
  form.submit();
13590
14024
  });
13591
14025
 
13592
- },{}],80:[function(require,module,exports){
14026
+ },{}],81:[function(require,module,exports){
13593
14027
  "use strict";
13594
14028
 
13595
14029
  var Wick = Wick || {};
@@ -13615,7 +14049,7 @@ Wick.Selectable = function () {
13615
14049
  bindEvents();
13616
14050
  }();
13617
14051
 
13618
- },{}],81:[function(require,module,exports){
14052
+ },{}],82:[function(require,module,exports){
13619
14053
  "use strict";
13620
14054
 
13621
14055
  var Wick = Wick || {};
@@ -13698,7 +14132,7 @@ $(document).ready(function () {
13698
14132
  Wick.ShoppingList.bindAll();
13699
14133
  });
13700
14134
 
13701
- },{}],82:[function(require,module,exports){
14135
+ },{}],83:[function(require,module,exports){
13702
14136
  "use strict";
13703
14137
 
13704
14138
  var Wick = Wick || {};
@@ -13723,7 +14157,7 @@ Wick.SignUp = function () {
13723
14157
  });
13724
14158
  }();
13725
14159
 
13726
- },{}],83:[function(require,module,exports){
14160
+ },{}],84:[function(require,module,exports){
13727
14161
  "use strict";
13728
14162
 
13729
14163
  //TODO: needs refactoring in future, gather tother with range-type.js for common script
@@ -13742,7 +14176,7 @@ Wick.StoreLocator = function () {
13742
14176
  });
13743
14177
  }();
13744
14178
 
13745
- },{}],84:[function(require,module,exports){
14179
+ },{}],85:[function(require,module,exports){
13746
14180
  "use strict";
13747
14181
 
13748
14182
  var Wick = window.Wick || {};
@@ -13783,7 +14217,7 @@ $(document).ready(function () {
13783
14217
  }, 250));
13784
14218
  });
13785
14219
 
13786
- },{}],85:[function(require,module,exports){
14220
+ },{}],86:[function(require,module,exports){
13787
14221
  "use strict";
13788
14222
 
13789
14223
  var Wick = Wick || {};
@@ -13805,7 +14239,7 @@ $(document).ready(function () {
13805
14239
  Wick.addListToBasket.addAllProjectList();
13806
14240
  });
13807
14241
 
13808
- },{}],86:[function(require,module,exports){
14242
+ },{}],87:[function(require,module,exports){
13809
14243
  "use strict";
13810
14244
 
13811
14245
  var Wick = Wick || {};
@@ -13843,7 +14277,7 @@ Wick.User = function () {
13843
14277
  };
13844
14278
  }();
13845
14279
 
13846
- },{}],87:[function(require,module,exports){
14280
+ },{}],88:[function(require,module,exports){
13847
14281
  "use strict";
13848
14282
 
13849
14283
  var suppressQuantityReportValidityOnBlur = false;
@@ -13870,14 +14304,14 @@ $(document).off('keydown.quantityValidation', '#quantity-field').on('keydown.qua
13870
14304
  }, 150);
13871
14305
  });
13872
14306
 
13873
- },{}],88:[function(require,module,exports){
14307
+ },{}],89:[function(require,module,exports){
13874
14308
  "use strict";
13875
14309
 
13876
14310
  window.ACC = window.ACC || {};
13877
14311
  window.ACC.app = window.ACC.app || {};
13878
14312
  window.ACC.app.isVatToggleAvailable = !!$('.switch-vat input').length;
13879
14313
 
13880
- },{}],89:[function(require,module,exports){
14314
+ },{}],90:[function(require,module,exports){
13881
14315
  "use strict";
13882
14316
 
13883
14317
  var Wick = window.Wick = window.Wick || {};
@@ -13909,7 +14343,7 @@ Wick.Wismo = function () {
13909
14343
  });
13910
14344
  }();
13911
14345
 
13912
- },{}],90:[function(require,module,exports){
14346
+ },{}],91:[function(require,module,exports){
13913
14347
  "use strict";
13914
14348
 
13915
14349
  var Wick = Wick || {};
@@ -13988,7 +14422,7 @@ Wick.YourDetails = function () {
13988
14422
  });
13989
14423
  }();
13990
14424
 
13991
- },{}],91:[function(require,module,exports){
14425
+ },{}],92:[function(require,module,exports){
13992
14426
  "use strict";
13993
14427
 
13994
14428
  Object.defineProperty(exports, "__esModule", {
@@ -14225,4 +14659,4 @@ function createShowMoreLess() {
14225
14659
  };
14226
14660
  }
14227
14661
 
14228
- },{"../../../elements/btn.hbs":24}]},{},[25,26,27,28,29,30,31,32,33,34,35,36,41,37,38,39,40,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90]);
14662
+ },{"../../../elements/btn.hbs":24}]},{},[25,26,27,28,29,30,31,32,33,34,35,36,41,37,38,39,40,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91]);