@akinon/projectzero 1.55.0 → 1.56.0-rc.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/CHANGELOG.md +39 -0
- package/app-template/.gitignore +2 -0
- package/app-template/CHANGELOG.md +1890 -59
- package/app-template/package.json +17 -18
- package/app-template/public/locales/en/account.json +4 -4
- package/app-template/public/locales/tr/account.json +1 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/[...prettyurl]/page.tsx +8 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +4 -4
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +1 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +5 -2
- package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +12 -8
- package/app-template/src/components/checkbox.tsx +2 -2
- package/app-template/src/components/input.tsx +19 -7
- package/app-template/src/components/pagination.tsx +13 -18
- package/app-template/src/components/price.tsx +9 -4
- package/app-template/src/redux/reducers/category.ts +7 -1
- package/app-template/src/settings.js +6 -1
- package/app-template/src/views/account/address-form.tsx +12 -2
- package/app-template/src/views/account/contact-form.tsx +23 -6
- package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +5 -1
- package/app-template/src/views/breadcrumb.tsx +4 -1
- package/app-template/src/views/category/category-active-filters.tsx +16 -6
- package/app-template/src/views/category/category-info.tsx +31 -17
- package/app-template/src/views/category/filters/filter-item.tsx +163 -0
- package/app-template/src/views/category/filters/index.tsx +16 -108
- package/app-template/src/views/category/layout.tsx +5 -3
- package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +43 -37
- package/app-template/src/views/checkout/steps/payment/payment-option-buttons.tsx +19 -3
- package/app-template/src/views/checkout/steps/shipping/shipping-options.tsx +230 -34
- package/app-template/src/views/header/mobile-menu.tsx +25 -8
- package/app-template/tsconfig.json +14 -4
- package/package.json +2 -2
|
@@ -1,5 +1,115 @@
|
|
|
1
1
|
# projectzeronext
|
|
2
2
|
|
|
3
|
+
## 1.56.0-rc.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [207ac6e]
|
|
8
|
+
- @akinon/next@1.56.0-rc.1
|
|
9
|
+
- @akinon/pz-akifast@1.56.0-rc.1
|
|
10
|
+
- @akinon/pz-b2b@1.56.0-rc.1
|
|
11
|
+
- @akinon/pz-basket-gift-pack@1.56.0-rc.1
|
|
12
|
+
- @akinon/pz-bkm@1.56.0-rc.1
|
|
13
|
+
- @akinon/pz-checkout-gift-pack@1.56.0-rc.1
|
|
14
|
+
- @akinon/pz-click-collect@1.56.0-rc.1
|
|
15
|
+
- @akinon/pz-credit-payment@1.56.0-rc.1
|
|
16
|
+
- @akinon/pz-gpay@1.56.0-rc.1
|
|
17
|
+
- @akinon/pz-masterpass@1.56.0-rc.1
|
|
18
|
+
- @akinon/pz-one-click-checkout@1.56.0-rc.1
|
|
19
|
+
- @akinon/pz-otp@1.56.0-rc.1
|
|
20
|
+
- @akinon/pz-pay-on-delivery@1.56.0-rc.1
|
|
21
|
+
|
|
22
|
+
## 1.56.0-rc.0
|
|
23
|
+
|
|
24
|
+
### Minor Changes
|
|
25
|
+
|
|
26
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
27
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
28
|
+
- 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
|
|
29
|
+
- 8217463: ZERO-2887: Add LoaderSpinner to Filters component
|
|
30
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
31
|
+
- 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
32
|
+
- bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
33
|
+
- e665a0ac: ZERO-2625: Add click outside functionality to close mobile menu
|
|
34
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
35
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
36
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
37
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
38
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
39
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
40
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
41
|
+
- 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
|
|
42
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
43
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
44
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
45
|
+
- 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
|
|
46
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
47
|
+
- fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
48
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
49
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
50
|
+
- b9273fd3: ZERO-2889: add host headers to requests
|
|
51
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
52
|
+
|
|
53
|
+
### Patch Changes
|
|
54
|
+
|
|
55
|
+
- Updated dependencies [572d2e84]
|
|
56
|
+
- Updated dependencies [5dfeea0]
|
|
57
|
+
- Updated dependencies [a4c8d6a9]
|
|
58
|
+
- Updated dependencies [fda5b927]
|
|
59
|
+
- Updated dependencies [2d9b2b2c]
|
|
60
|
+
- Updated dependencies [c53ea3e6]
|
|
61
|
+
- Updated dependencies [d93a507]
|
|
62
|
+
- Updated dependencies [714e0b46]
|
|
63
|
+
- Updated dependencies [6c25f666]
|
|
64
|
+
- Updated dependencies [bc2b4117]
|
|
65
|
+
- Updated dependencies [3bf2dd94]
|
|
66
|
+
- Updated dependencies [e9541a13]
|
|
67
|
+
- Updated dependencies [c53ef7b9]
|
|
68
|
+
- Updated dependencies [2e6104d]
|
|
69
|
+
- Updated dependencies [64699d3f]
|
|
70
|
+
- Updated dependencies [0d3a913e]
|
|
71
|
+
- Updated dependencies [d6edb1d0]
|
|
72
|
+
- Updated dependencies [d3474c64]
|
|
73
|
+
- Updated dependencies [17f87524]
|
|
74
|
+
- Updated dependencies [c45b62c9]
|
|
75
|
+
- Updated dependencies [91265bba]
|
|
76
|
+
- Updated dependencies [bbe18b9f]
|
|
77
|
+
- Updated dependencies [d4099960]
|
|
78
|
+
- Updated dependencies [4920742c]
|
|
79
|
+
- Updated dependencies [12a873e]
|
|
80
|
+
- Updated dependencies [7e56d6b6]
|
|
81
|
+
- Updated dependencies [94b69285]
|
|
82
|
+
- Updated dependencies [98bb8dcd]
|
|
83
|
+
- Updated dependencies [dcc8a150]
|
|
84
|
+
- Updated dependencies [8f47ccae]
|
|
85
|
+
- Updated dependencies [fad27689]
|
|
86
|
+
- Updated dependencies [dff0d595]
|
|
87
|
+
- Updated dependencies [fdd0b41]
|
|
88
|
+
- Updated dependencies [f2c325c1]
|
|
89
|
+
- Updated dependencies [9e25a64b]
|
|
90
|
+
- Updated dependencies [beb499e6]
|
|
91
|
+
- Updated dependencies [f2c92d5c]
|
|
92
|
+
- Updated dependencies [7bd3d992]
|
|
93
|
+
- Updated dependencies [f046f8e0]
|
|
94
|
+
- Updated dependencies [b9273fd3]
|
|
95
|
+
- Updated dependencies [49eeebf]
|
|
96
|
+
- Updated dependencies [86d25315]
|
|
97
|
+
- Updated dependencies [c670bd48]
|
|
98
|
+
- Updated dependencies [3f9b8d7e]
|
|
99
|
+
- @akinon/next@1.56.0-rc.0
|
|
100
|
+
- @akinon/pz-click-collect@1.56.0-rc.0
|
|
101
|
+
- @akinon/pz-checkout-gift-pack@1.56.0-rc.0
|
|
102
|
+
- @akinon/pz-one-click-checkout@1.56.0-rc.0
|
|
103
|
+
- @akinon/pz-basket-gift-pack@1.56.0-rc.0
|
|
104
|
+
- @akinon/pz-pay-on-delivery@1.56.0-rc.0
|
|
105
|
+
- @akinon/pz-credit-payment@1.56.0-rc.0
|
|
106
|
+
- @akinon/pz-masterpass@1.56.0-rc.0
|
|
107
|
+
- @akinon/pz-akifast@1.56.0-rc.0
|
|
108
|
+
- @akinon/pz-gpay@1.56.0-rc.0
|
|
109
|
+
- @akinon/pz-b2b@1.56.0-rc.0
|
|
110
|
+
- @akinon/pz-bkm@1.56.0-rc.0
|
|
111
|
+
- @akinon/pz-otp@1.56.0-rc.0
|
|
112
|
+
|
|
3
113
|
## 1.55.0
|
|
4
114
|
|
|
5
115
|
### Minor Changes
|
|
@@ -141,20 +251,220 @@
|
|
|
141
251
|
|
|
142
252
|
### Patch Changes
|
|
143
253
|
|
|
254
|
+
- Updated dependencies [90282b53]
|
|
255
|
+
- Updated dependencies [50b90692]
|
|
256
|
+
- Updated dependencies [572d2e84]
|
|
257
|
+
- Updated dependencies [5dfeea0]
|
|
258
|
+
- Updated dependencies [a4c8d6a9]
|
|
259
|
+
- Updated dependencies [fda5b927]
|
|
260
|
+
- Updated dependencies [2d9b2b2]
|
|
261
|
+
- Updated dependencies [c53ea3e6]
|
|
262
|
+
- Updated dependencies [d93a507]
|
|
263
|
+
- Updated dependencies [8d9ac9a]
|
|
264
|
+
- Updated dependencies [18e8197]
|
|
265
|
+
- Updated dependencies [714e0b46]
|
|
266
|
+
- Updated dependencies [70279e7]
|
|
267
|
+
- Updated dependencies [6c25f66]
|
|
268
|
+
- Updated dependencies [bc2b411]
|
|
269
|
+
- Updated dependencies [3bf2dd9]
|
|
270
|
+
- Updated dependencies [e9541a1]
|
|
271
|
+
- Updated dependencies [c53ef7b9]
|
|
272
|
+
- Updated dependencies [9d94f7e]
|
|
273
|
+
- Updated dependencies [2e6104d]
|
|
274
|
+
- Updated dependencies [64699d3]
|
|
275
|
+
- Updated dependencies [0d3a913e]
|
|
276
|
+
- Updated dependencies [1448a96e]
|
|
277
|
+
- Updated dependencies [1ec2e9d]
|
|
278
|
+
- Updated dependencies [d6edb1d]
|
|
279
|
+
- Updated dependencies [d3474c64]
|
|
280
|
+
- Updated dependencies [75080fd6]
|
|
281
|
+
- Updated dependencies [17f8752]
|
|
282
|
+
- Updated dependencies [c45b62c]
|
|
283
|
+
- Updated dependencies [91265bba]
|
|
284
|
+
- Updated dependencies [bbe18b9f]
|
|
285
|
+
- Updated dependencies [d4099960]
|
|
286
|
+
- Updated dependencies [4920742]
|
|
287
|
+
- Updated dependencies [12a873e]
|
|
288
|
+
- Updated dependencies [69ca0801]
|
|
289
|
+
- Updated dependencies [7e56d6b]
|
|
290
|
+
- Updated dependencies [94b6928]
|
|
291
|
+
- Updated dependencies [98bb8dcd]
|
|
292
|
+
- Updated dependencies [46b7aad7]
|
|
293
|
+
- Updated dependencies [dcc8a150]
|
|
294
|
+
- Updated dependencies [8f47cca]
|
|
295
|
+
- Updated dependencies [fad27689]
|
|
296
|
+
- Updated dependencies [dff0d595]
|
|
297
|
+
- Updated dependencies [fdd0b41]
|
|
298
|
+
- Updated dependencies [eecb282]
|
|
299
|
+
- Updated dependencies [f2c325c]
|
|
300
|
+
- Updated dependencies [9e25a64]
|
|
301
|
+
- Updated dependencies [beb499e6]
|
|
302
|
+
- Updated dependencies [146ea391]
|
|
303
|
+
- Updated dependencies [f2c92d5]
|
|
304
|
+
- Updated dependencies [7bd3d99]
|
|
305
|
+
- Updated dependencies [c47be30d]
|
|
306
|
+
- Updated dependencies [e9a46acb]
|
|
307
|
+
- Updated dependencies [f046f8e0]
|
|
308
|
+
- Updated dependencies [b9273fd]
|
|
309
|
+
- Updated dependencies [49eeebf]
|
|
310
|
+
- Updated dependencies [86d25315]
|
|
311
|
+
- Updated dependencies [c670bd4]
|
|
312
|
+
- Updated dependencies [3f9b8d7]
|
|
313
|
+
- Updated dependencies [3d35f70]
|
|
314
|
+
- @akinon/next@1.50.0-rc.2
|
|
315
|
+
- @akinon/pz-checkout-gift-pack@1.50.0-rc.2
|
|
316
|
+
- @akinon/pz-one-click-checkout@1.50.0-rc.2
|
|
317
|
+
- @akinon/pz-basket-gift-pack@1.50.0-rc.2
|
|
318
|
+
- @akinon/pz-click-collect@1.50.0-rc.2
|
|
319
|
+
- @akinon/pz-masterpass@1.50.0-rc.2
|
|
320
|
+
- @akinon/pz-akifast@1.50.0-rc.2
|
|
321
|
+
- @akinon/pz-gpay@1.50.0-rc.2
|
|
322
|
+
- @akinon/pz-b2b@1.50.0-rc.2
|
|
323
|
+
- @akinon/pz-bkm@1.50.0-rc.2
|
|
324
|
+
- @akinon/pz-otp@1.50.0-rc.2
|
|
325
|
+
- @akinon/pz-pay-on-delivery@1.50.0-rc.2
|
|
326
|
+
- @akinon/pz-credit-payment@1.50.0-rc.2
|
|
327
|
+
|
|
328
|
+
## 1.50.0-rc.1
|
|
329
|
+
|
|
330
|
+
### Patch Changes
|
|
331
|
+
|
|
332
|
+
- Updated dependencies [49eeebf]
|
|
333
|
+
- @akinon/next@1.50.0-rc.1
|
|
334
|
+
- @akinon/pz-akifast@1.50.0-rc.1
|
|
335
|
+
- @akinon/pz-b2b@1.50.0-rc.1
|
|
336
|
+
- @akinon/pz-basket-gift-pack@1.50.0-rc.1
|
|
337
|
+
- @akinon/pz-bkm@1.50.0-rc.1
|
|
338
|
+
- @akinon/pz-checkout-gift-pack@1.50.0-rc.1
|
|
339
|
+
- @akinon/pz-click-collect@1.50.0-rc.1
|
|
340
|
+
- @akinon/pz-credit-payment@1.50.0-rc.1
|
|
341
|
+
- @akinon/pz-gpay@1.50.0-rc.1
|
|
342
|
+
- @akinon/pz-masterpass@1.50.0-rc.1
|
|
343
|
+
- @akinon/pz-one-click-checkout@1.50.0-rc.1
|
|
344
|
+
- @akinon/pz-otp@1.50.0-rc.1
|
|
345
|
+
- @akinon/pz-pay-on-delivery@1.50.0-rc.1
|
|
346
|
+
|
|
347
|
+
## 1.50.0-rc.0
|
|
348
|
+
|
|
349
|
+
### Minor Changes
|
|
350
|
+
|
|
351
|
+
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
352
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
353
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
354
|
+
- 97b8bdc9: ZERO-2724: Remove onClick event in shipping options component
|
|
355
|
+
- 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
|
|
356
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
357
|
+
- 8217463: ZERO-2887: Add LoaderSpinner to Filters component
|
|
358
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
359
|
+
- 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
360
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
361
|
+
- e665a0ac: ZERO-2625: Add click outside functionality to close mobile menu
|
|
362
|
+
- 52c13732: ZERO-2619: Added fix flag for the staged linter
|
|
363
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
364
|
+
- 03c4c3eb: ZERO-2731: Update Project Zero CLI command
|
|
365
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
366
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
367
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
368
|
+
- 778a9a0b: ZERO-2740: Upgrade next to 14.2.4
|
|
369
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
370
|
+
- 06650cab: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
371
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
372
|
+
- 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
|
|
373
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
374
|
+
- d2f0f15c: ZERO-2723: Update sentry version and dependencies
|
|
375
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
376
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
377
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
378
|
+
- 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
|
|
379
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
380
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
381
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
382
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
383
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
384
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
385
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
386
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
387
|
+
- fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
388
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
389
|
+
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
390
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
391
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
392
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
393
|
+
|
|
394
|
+
### Patch Changes
|
|
395
|
+
|
|
396
|
+
- Updated dependencies [90282b53]
|
|
397
|
+
- Updated dependencies [50b90692]
|
|
398
|
+
- Updated dependencies [572d2e84]
|
|
399
|
+
- Updated dependencies [5dfeea0]
|
|
400
|
+
- Updated dependencies [a4c8d6a9]
|
|
401
|
+
- Updated dependencies [fda5b927]
|
|
402
|
+
- Updated dependencies [2d9b2b2]
|
|
403
|
+
- Updated dependencies [c53ea3e6]
|
|
404
|
+
- Updated dependencies [d93a507]
|
|
405
|
+
- Updated dependencies [8d9ac9a]
|
|
406
|
+
- Updated dependencies [18e8197]
|
|
144
407
|
- Updated dependencies [eaf97d6]
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
408
|
+
- Updated dependencies [714e0b46]
|
|
409
|
+
- Updated dependencies [70279e7]
|
|
410
|
+
- Updated dependencies [6c25f66]
|
|
411
|
+
- Updated dependencies [bc2b411]
|
|
412
|
+
- Updated dependencies [3bf2dd9]
|
|
413
|
+
- Updated dependencies [e9541a1]
|
|
414
|
+
- Updated dependencies [c53ef7b9]
|
|
415
|
+
- Updated dependencies [9d94f7e]
|
|
416
|
+
- Updated dependencies [2e6104d]
|
|
417
|
+
- Updated dependencies [64699d3]
|
|
418
|
+
- Updated dependencies [0d3a913e]
|
|
419
|
+
- Updated dependencies [1448a96e]
|
|
420
|
+
- Updated dependencies [1ec2e9d]
|
|
421
|
+
- Updated dependencies [d6edb1d]
|
|
422
|
+
- Updated dependencies [d3474c64]
|
|
423
|
+
- Updated dependencies [75080fd6]
|
|
424
|
+
- Updated dependencies [17f8752]
|
|
425
|
+
- Updated dependencies [c45b62c]
|
|
426
|
+
- Updated dependencies [91265bba]
|
|
427
|
+
- Updated dependencies [bbe18b9f]
|
|
428
|
+
- Updated dependencies [d4099960]
|
|
429
|
+
- Updated dependencies [4920742]
|
|
430
|
+
- Updated dependencies [12a873e]
|
|
431
|
+
- Updated dependencies [69ca080]
|
|
432
|
+
- Updated dependencies [7e56d6b]
|
|
433
|
+
- Updated dependencies [94b6928]
|
|
434
|
+
- Updated dependencies [98bb8dcd]
|
|
435
|
+
- Updated dependencies [46b7aad7]
|
|
436
|
+
- Updated dependencies [dcc8a150]
|
|
437
|
+
- Updated dependencies [8f47cca]
|
|
438
|
+
- Updated dependencies [fad27689]
|
|
439
|
+
- Updated dependencies [dff0d595]
|
|
440
|
+
- Updated dependencies [fdd0b41]
|
|
441
|
+
- Updated dependencies [eecb282]
|
|
442
|
+
- Updated dependencies [f2c325c]
|
|
443
|
+
- Updated dependencies [9e25a64]
|
|
444
|
+
- Updated dependencies [beb499e6]
|
|
445
|
+
- Updated dependencies [146ea391]
|
|
446
|
+
- Updated dependencies [f2c92d5]
|
|
447
|
+
- Updated dependencies [7bd3d99]
|
|
448
|
+
- Updated dependencies [c47be30d]
|
|
449
|
+
- Updated dependencies [e9a46acb]
|
|
450
|
+
- Updated dependencies [f046f8e0]
|
|
451
|
+
- Updated dependencies [b9273fd]
|
|
452
|
+
- Updated dependencies [86d25315]
|
|
453
|
+
- Updated dependencies [c670bd4]
|
|
454
|
+
- Updated dependencies [3f9b8d7]
|
|
455
|
+
- @akinon/next@1.50.0-rc.0
|
|
456
|
+
- @akinon/pz-checkout-gift-pack@1.50.0-rc.0
|
|
457
|
+
- @akinon/pz-one-click-checkout@1.50.0-rc.0
|
|
458
|
+
- @akinon/pz-basket-gift-pack@1.50.0-rc.0
|
|
459
|
+
- @akinon/pz-click-collect@1.50.0-rc.0
|
|
460
|
+
- @akinon/pz-masterpass@1.50.0-rc.0
|
|
461
|
+
- @akinon/pz-akifast@1.50.0-rc.0
|
|
462
|
+
- @akinon/pz-gpay@1.50.0-rc.0
|
|
463
|
+
- @akinon/pz-b2b@1.50.0-rc.0
|
|
464
|
+
- @akinon/pz-bkm@1.50.0-rc.0
|
|
465
|
+
- @akinon/pz-otp@1.50.0-rc.0
|
|
466
|
+
- @akinon/pz-pay-on-delivery@1.50.0-rc.0
|
|
467
|
+
- @akinon/pz-credit-payment@1.50.0-rc.0
|
|
158
468
|
|
|
159
469
|
## 1.49.0
|
|
160
470
|
|
|
@@ -182,23 +492,480 @@
|
|
|
182
492
|
|
|
183
493
|
### Minor Changes
|
|
184
494
|
|
|
495
|
+
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
496
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
497
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
498
|
+
- 97b8bdc9: ZERO-2724: Remove onClick event in shipping options component
|
|
499
|
+
- 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
|
|
500
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
501
|
+
- 8217463: ZERO-2887: Add LoaderSpinner to Filters component
|
|
502
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
503
|
+
- 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
504
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
505
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
506
|
+
- 52c13732: ZERO-2619: Added fix flag for the staged linter
|
|
507
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
508
|
+
- 03c4c3eb: ZERO-2731: Update Project Zero CLI command
|
|
509
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
510
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
511
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
512
|
+
- 778a9a0b: ZERO-2740: Upgrade next to 14.2.4
|
|
513
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
514
|
+
- 06650cab: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
515
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
516
|
+
- 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
|
|
517
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
518
|
+
- d2f0f15c: ZERO-2723: Update sentry version and dependencies
|
|
519
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
520
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
521
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
522
|
+
- 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
|
|
523
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
524
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
525
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
526
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
527
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
528
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
529
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
530
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
531
|
+
- fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
532
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
533
|
+
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
534
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
535
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
536
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
537
|
+
|
|
538
|
+
### Patch Changes
|
|
539
|
+
|
|
540
|
+
- Updated dependencies [90282b53]
|
|
541
|
+
- Updated dependencies [50b9069]
|
|
542
|
+
- Updated dependencies [572d2e84]
|
|
543
|
+
- Updated dependencies [5dfeea0]
|
|
544
|
+
- Updated dependencies [a4c8d6a9]
|
|
545
|
+
- Updated dependencies [fda5b927]
|
|
546
|
+
- Updated dependencies [2d9b2b2]
|
|
547
|
+
- Updated dependencies [c53ea3e6]
|
|
548
|
+
- Updated dependencies [d93a507]
|
|
549
|
+
- Updated dependencies [8d9ac9a]
|
|
550
|
+
- Updated dependencies [18e8197]
|
|
551
|
+
- Updated dependencies [714e0b46]
|
|
552
|
+
- Updated dependencies [70279e7]
|
|
553
|
+
- Updated dependencies [6c25f66]
|
|
554
|
+
- Updated dependencies [bc2b411]
|
|
555
|
+
- Updated dependencies [3bf2dd9]
|
|
556
|
+
- Updated dependencies [e9541a1]
|
|
557
|
+
- Updated dependencies [c53ef7b9]
|
|
558
|
+
- Updated dependencies [9d94f7e]
|
|
559
|
+
- Updated dependencies [2e6104d]
|
|
560
|
+
- Updated dependencies [64699d3]
|
|
561
|
+
- Updated dependencies [0d3a913e]
|
|
562
|
+
- Updated dependencies [1448a96e]
|
|
563
|
+
- Updated dependencies [26b809f]
|
|
564
|
+
- Updated dependencies [1ec2e9d]
|
|
565
|
+
- Updated dependencies [d6edb1d]
|
|
566
|
+
- Updated dependencies [d3474c64]
|
|
567
|
+
- Updated dependencies [75080fd6]
|
|
568
|
+
- Updated dependencies [17f8752]
|
|
569
|
+
- Updated dependencies [c45b62c]
|
|
570
|
+
- Updated dependencies [91265bba]
|
|
571
|
+
- Updated dependencies [20da358]
|
|
572
|
+
- Updated dependencies [bbe18b9f]
|
|
573
|
+
- Updated dependencies [d409996]
|
|
574
|
+
- Updated dependencies [4920742]
|
|
575
|
+
- Updated dependencies [12a873e]
|
|
576
|
+
- Updated dependencies [69ca080]
|
|
577
|
+
- Updated dependencies [7e56d6b]
|
|
578
|
+
- Updated dependencies [94b6928]
|
|
579
|
+
- Updated dependencies [98bb8dcd]
|
|
580
|
+
- Updated dependencies [46b7aad7]
|
|
581
|
+
- Updated dependencies [dcc8a150]
|
|
582
|
+
- Updated dependencies [8f47cca]
|
|
583
|
+
- Updated dependencies [fad27689]
|
|
584
|
+
- Updated dependencies [dff0d595]
|
|
585
|
+
- Updated dependencies [fdd0b41]
|
|
586
|
+
- Updated dependencies [eecb282]
|
|
587
|
+
- Updated dependencies [f2c325c]
|
|
588
|
+
- Updated dependencies [9e25a64]
|
|
589
|
+
- Updated dependencies [beb499e6]
|
|
590
|
+
- Updated dependencies [146ea391]
|
|
591
|
+
- Updated dependencies [f2c92d5]
|
|
592
|
+
- Updated dependencies [7bd3d99]
|
|
593
|
+
- Updated dependencies [c47be30d]
|
|
594
|
+
- Updated dependencies [e9a46acb]
|
|
595
|
+
- Updated dependencies [f046f8e0]
|
|
596
|
+
- Updated dependencies [04115e5]
|
|
597
|
+
- Updated dependencies [b9273fd]
|
|
598
|
+
- Updated dependencies [fa88889]
|
|
599
|
+
- Updated dependencies [86d25315]
|
|
600
|
+
- Updated dependencies [c670bd4]
|
|
601
|
+
- Updated dependencies [3f9b8d7]
|
|
602
|
+
- @akinon/next@1.48.0-rc.8
|
|
603
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.8
|
|
604
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.8
|
|
605
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.8
|
|
606
|
+
- @akinon/pz-click-collect@1.48.0-rc.8
|
|
607
|
+
- @akinon/pz-masterpass@1.48.0-rc.8
|
|
608
|
+
- @akinon/pz-akifast@1.48.0-rc.8
|
|
609
|
+
- @akinon/pz-gpay@1.48.0-rc.8
|
|
610
|
+
- @akinon/pz-b2b@1.48.0-rc.8
|
|
611
|
+
- @akinon/pz-bkm@1.48.0-rc.8
|
|
612
|
+
- @akinon/pz-otp@1.48.0-rc.8
|
|
613
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.8
|
|
614
|
+
- @akinon/pz-credit-payment@1.48.0-rc.8
|
|
615
|
+
|
|
616
|
+
## 1.48.0-rc.7
|
|
617
|
+
|
|
618
|
+
### Patch Changes
|
|
619
|
+
|
|
620
|
+
- Updated dependencies [26b809f]
|
|
621
|
+
- @akinon/next@1.48.0-rc.7
|
|
622
|
+
- @akinon/pz-akifast@1.48.0-rc.7
|
|
623
|
+
- @akinon/pz-b2b@1.48.0-rc.7
|
|
624
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.7
|
|
625
|
+
- @akinon/pz-bkm@1.48.0-rc.7
|
|
626
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.7
|
|
627
|
+
- @akinon/pz-click-collect@1.48.0-rc.7
|
|
628
|
+
- @akinon/pz-credit-payment@1.48.0-rc.7
|
|
629
|
+
- @akinon/pz-gpay@1.48.0-rc.7
|
|
630
|
+
- @akinon/pz-masterpass@1.48.0-rc.7
|
|
631
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.7
|
|
632
|
+
- @akinon/pz-otp@1.48.0-rc.7
|
|
633
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.7
|
|
634
|
+
|
|
635
|
+
## 1.48.0-rc.6
|
|
636
|
+
|
|
637
|
+
### Patch Changes
|
|
638
|
+
|
|
639
|
+
- Updated dependencies [04115e5]
|
|
640
|
+
- @akinon/next@1.48.0-rc.6
|
|
641
|
+
- @akinon/pz-akifast@1.48.0-rc.6
|
|
642
|
+
- @akinon/pz-b2b@1.48.0-rc.6
|
|
643
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.6
|
|
644
|
+
- @akinon/pz-bkm@1.48.0-rc.6
|
|
645
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.6
|
|
646
|
+
- @akinon/pz-click-collect@1.48.0-rc.6
|
|
647
|
+
- @akinon/pz-credit-payment@1.48.0-rc.6
|
|
648
|
+
- @akinon/pz-gpay@1.48.0-rc.6
|
|
649
|
+
- @akinon/pz-masterpass@1.48.0-rc.6
|
|
650
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.6
|
|
651
|
+
- @akinon/pz-otp@1.48.0-rc.6
|
|
652
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.6
|
|
653
|
+
|
|
654
|
+
## 1.48.0-rc.5
|
|
655
|
+
|
|
656
|
+
### Patch Changes
|
|
657
|
+
|
|
658
|
+
- Updated dependencies [20da358]
|
|
659
|
+
- @akinon/next@1.48.0-rc.5
|
|
660
|
+
- @akinon/pz-akifast@1.48.0-rc.5
|
|
661
|
+
- @akinon/pz-b2b@1.48.0-rc.5
|
|
662
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.5
|
|
663
|
+
- @akinon/pz-bkm@1.48.0-rc.5
|
|
664
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.5
|
|
665
|
+
- @akinon/pz-click-collect@1.48.0-rc.5
|
|
666
|
+
- @akinon/pz-credit-payment@1.48.0-rc.5
|
|
667
|
+
- @akinon/pz-gpay@1.48.0-rc.5
|
|
668
|
+
- @akinon/pz-masterpass@1.48.0-rc.5
|
|
669
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.5
|
|
670
|
+
- @akinon/pz-otp@1.48.0-rc.5
|
|
671
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.5
|
|
672
|
+
|
|
673
|
+
## 1.48.0-rc.4
|
|
674
|
+
|
|
675
|
+
### Patch Changes
|
|
676
|
+
|
|
677
|
+
- Updated dependencies [5dfeea0]
|
|
678
|
+
- @akinon/next@1.48.0-rc.4
|
|
679
|
+
- @akinon/pz-akifast@1.48.0-rc.4
|
|
680
|
+
- @akinon/pz-b2b@1.48.0-rc.4
|
|
681
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.4
|
|
682
|
+
- @akinon/pz-bkm@1.48.0-rc.4
|
|
683
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.4
|
|
684
|
+
- @akinon/pz-click-collect@1.48.0-rc.4
|
|
685
|
+
- @akinon/pz-credit-payment@1.48.0-rc.4
|
|
686
|
+
- @akinon/pz-gpay@1.48.0-rc.4
|
|
687
|
+
- @akinon/pz-masterpass@1.48.0-rc.4
|
|
688
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.4
|
|
689
|
+
- @akinon/pz-otp@1.48.0-rc.4
|
|
690
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.4
|
|
691
|
+
|
|
692
|
+
## 1.48.0-rc.3
|
|
693
|
+
|
|
694
|
+
### Minor Changes
|
|
695
|
+
|
|
696
|
+
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
697
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
698
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
699
|
+
- 97b8bdc9: ZERO-2724: Remove onClick event in shipping options component
|
|
700
|
+
- 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
|
|
701
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
702
|
+
- 8217463: ZERO-2887: Add LoaderSpinner to Filters component
|
|
703
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
704
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
705
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
706
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
707
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
708
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
709
|
+
- 03c4c3eb: ZERO-2731: Update Project Zero CLI command
|
|
710
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
711
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
712
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
713
|
+
- 778a9a0b: ZERO-2740: Upgrade next to 14.2.4
|
|
714
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
715
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
716
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
717
|
+
- 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
|
|
718
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
719
|
+
- d2f0f15c: ZERO-2723: Update sentry version and dependencies
|
|
720
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
721
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
722
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
723
|
+
- 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
|
|
724
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
725
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
726
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
727
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
728
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
729
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
730
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
731
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
185
732
|
- f45aa87: ZERO-2904: Upgrade version for tailwindcss
|
|
733
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
734
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
735
|
+
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
736
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
737
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
738
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
739
|
+
|
|
740
|
+
### Patch Changes
|
|
741
|
+
|
|
742
|
+
- Updated dependencies [90282b53]
|
|
743
|
+
- Updated dependencies [50b9069]
|
|
744
|
+
- Updated dependencies [572d2e84]
|
|
745
|
+
- Updated dependencies [a4c8d6a9]
|
|
746
|
+
- Updated dependencies [fda5b92]
|
|
747
|
+
- Updated dependencies [2d9b2b2]
|
|
748
|
+
- Updated dependencies [c53ea3e6]
|
|
749
|
+
- Updated dependencies [d93a507]
|
|
750
|
+
- Updated dependencies [8d9ac9a]
|
|
751
|
+
- Updated dependencies [18e8197]
|
|
752
|
+
- Updated dependencies [714e0b46]
|
|
753
|
+
- Updated dependencies [70279e7]
|
|
754
|
+
- Updated dependencies [6c25f66]
|
|
755
|
+
- Updated dependencies [bc2b411]
|
|
756
|
+
- Updated dependencies [3bf2dd9]
|
|
757
|
+
- Updated dependencies [e9541a1]
|
|
758
|
+
- Updated dependencies [c53ef7b9]
|
|
759
|
+
- Updated dependencies [9d94f7e]
|
|
760
|
+
- Updated dependencies [2e6104d]
|
|
761
|
+
- Updated dependencies [64699d3]
|
|
762
|
+
- Updated dependencies [0d3a913e]
|
|
763
|
+
- Updated dependencies [1448a96e]
|
|
764
|
+
- Updated dependencies [1ec2e9d]
|
|
765
|
+
- Updated dependencies [d6edb1d]
|
|
766
|
+
- Updated dependencies [d3474c64]
|
|
767
|
+
- Updated dependencies [75080fd6]
|
|
768
|
+
- Updated dependencies [17f8752]
|
|
769
|
+
- Updated dependencies [c45b62c]
|
|
770
|
+
- Updated dependencies [91265bba]
|
|
771
|
+
- Updated dependencies [bbe18b9f]
|
|
772
|
+
- Updated dependencies [d409996]
|
|
773
|
+
- Updated dependencies [4920742]
|
|
774
|
+
- Updated dependencies [12a873e]
|
|
775
|
+
- Updated dependencies [69ca080]
|
|
776
|
+
- Updated dependencies [7e56d6b]
|
|
777
|
+
- Updated dependencies [94b6928]
|
|
778
|
+
- Updated dependencies [98bb8dcd]
|
|
779
|
+
- Updated dependencies [46b7aad]
|
|
780
|
+
- Updated dependencies [dcc8a150]
|
|
781
|
+
- Updated dependencies [8f47cca]
|
|
782
|
+
- Updated dependencies [fad27689]
|
|
783
|
+
- Updated dependencies [dff0d595]
|
|
784
|
+
- Updated dependencies [fdd0b41]
|
|
785
|
+
- Updated dependencies [eecb282]
|
|
786
|
+
- Updated dependencies [f2c325c]
|
|
787
|
+
- Updated dependencies [9e25a64]
|
|
788
|
+
- Updated dependencies [beb499e6]
|
|
789
|
+
- Updated dependencies [146ea39]
|
|
790
|
+
- Updated dependencies [f2c92d5]
|
|
791
|
+
- Updated dependencies [7bd3d99]
|
|
792
|
+
- Updated dependencies [c47be30d]
|
|
793
|
+
- Updated dependencies [e9a46acb]
|
|
794
|
+
- Updated dependencies [f046f8e0]
|
|
795
|
+
- Updated dependencies [b9273fd]
|
|
796
|
+
- Updated dependencies [86d25315]
|
|
797
|
+
- Updated dependencies [c670bd4]
|
|
798
|
+
- Updated dependencies [3f9b8d7]
|
|
799
|
+
- @akinon/next@1.48.0-rc.3
|
|
800
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.3
|
|
801
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.3
|
|
802
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.3
|
|
803
|
+
- @akinon/pz-click-collect@1.48.0-rc.3
|
|
804
|
+
- @akinon/pz-masterpass@1.48.0-rc.3
|
|
805
|
+
- @akinon/pz-akifast@1.48.0-rc.3
|
|
806
|
+
- @akinon/pz-gpay@1.48.0-rc.3
|
|
807
|
+
- @akinon/pz-b2b@1.48.0-rc.3
|
|
808
|
+
- @akinon/pz-bkm@1.48.0-rc.3
|
|
809
|
+
- @akinon/pz-otp@1.48.0-rc.3
|
|
810
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.3
|
|
811
|
+
- @akinon/pz-credit-payment@1.48.0-rc.3
|
|
812
|
+
|
|
813
|
+
## 1.48.0-rc.2
|
|
814
|
+
|
|
815
|
+
### Minor Changes
|
|
816
|
+
|
|
817
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
818
|
+
|
|
819
|
+
### Patch Changes
|
|
820
|
+
|
|
821
|
+
- Updated dependencies [2e6104d]
|
|
822
|
+
- @akinon/next@1.48.0-rc.2
|
|
823
|
+
- @akinon/pz-akifast@1.48.0-rc.2
|
|
824
|
+
- @akinon/pz-b2b@1.48.0-rc.2
|
|
825
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.2
|
|
826
|
+
- @akinon/pz-bkm@1.48.0-rc.2
|
|
827
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.2
|
|
828
|
+
- @akinon/pz-click-collect@1.48.0-rc.2
|
|
829
|
+
- @akinon/pz-credit-payment@1.48.0-rc.2
|
|
830
|
+
- @akinon/pz-gpay@1.48.0-rc.2
|
|
831
|
+
- @akinon/pz-masterpass@1.48.0-rc.2
|
|
832
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.2
|
|
833
|
+
- @akinon/pz-otp@1.48.0-rc.2
|
|
834
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.2
|
|
835
|
+
|
|
836
|
+
## 1.48.0-rc.1
|
|
186
837
|
|
|
187
838
|
### Patch Changes
|
|
188
839
|
|
|
189
|
-
-
|
|
190
|
-
- @akinon/
|
|
191
|
-
- @akinon/pz-
|
|
192
|
-
- @akinon/pz-
|
|
193
|
-
- @akinon/pz-
|
|
194
|
-
- @akinon/pz-
|
|
195
|
-
- @akinon/pz-
|
|
196
|
-
- @akinon/pz-
|
|
197
|
-
- @akinon/pz-
|
|
198
|
-
- @akinon/pz-
|
|
199
|
-
- @akinon/pz-
|
|
200
|
-
- @akinon/pz-
|
|
201
|
-
- @akinon/pz-
|
|
840
|
+
- Updated dependencies [fdd0b41]
|
|
841
|
+
- @akinon/next@1.48.0-rc.1
|
|
842
|
+
- @akinon/pz-akifast@1.48.0-rc.1
|
|
843
|
+
- @akinon/pz-b2b@1.48.0-rc.1
|
|
844
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.1
|
|
845
|
+
- @akinon/pz-bkm@1.48.0-rc.1
|
|
846
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.1
|
|
847
|
+
- @akinon/pz-click-collect@1.48.0-rc.1
|
|
848
|
+
- @akinon/pz-credit-payment@1.48.0-rc.1
|
|
849
|
+
- @akinon/pz-gpay@1.48.0-rc.1
|
|
850
|
+
- @akinon/pz-masterpass@1.48.0-rc.1
|
|
851
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.1
|
|
852
|
+
- @akinon/pz-otp@1.48.0-rc.1
|
|
853
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.1
|
|
854
|
+
|
|
855
|
+
## 1.48.0-rc.0
|
|
856
|
+
|
|
857
|
+
### Minor Changes
|
|
858
|
+
|
|
859
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
860
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
861
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
862
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
863
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
864
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
865
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
866
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
867
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
868
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
869
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
870
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
871
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
872
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
873
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
874
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
875
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
876
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
877
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
878
|
+
- 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
|
|
879
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
880
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
881
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
882
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
883
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
884
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
885
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
886
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
887
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
888
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
889
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
890
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
891
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
892
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
893
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
894
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
895
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
896
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
897
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
898
|
+
|
|
899
|
+
### Patch Changes
|
|
900
|
+
|
|
901
|
+
- Updated dependencies [90282b5]
|
|
902
|
+
- Updated dependencies [50b9069]
|
|
903
|
+
- Updated dependencies [572d2e8]
|
|
904
|
+
- Updated dependencies [a4c8d6a9]
|
|
905
|
+
- Updated dependencies [fda5b92]
|
|
906
|
+
- Updated dependencies [2d9b2b2]
|
|
907
|
+
- Updated dependencies [c53ea3e6]
|
|
908
|
+
- Updated dependencies [d93a507]
|
|
909
|
+
- Updated dependencies [8d9ac9a]
|
|
910
|
+
- Updated dependencies [18e8197]
|
|
911
|
+
- Updated dependencies [714e0b4]
|
|
912
|
+
- Updated dependencies [70279e7]
|
|
913
|
+
- Updated dependencies [6c25f66]
|
|
914
|
+
- Updated dependencies [bc2b411]
|
|
915
|
+
- Updated dependencies [3bf2dd9]
|
|
916
|
+
- Updated dependencies [e9541a1]
|
|
917
|
+
- Updated dependencies [c53ef7b9]
|
|
918
|
+
- Updated dependencies [9d94f7e]
|
|
919
|
+
- Updated dependencies [64699d3]
|
|
920
|
+
- Updated dependencies [0d3a913]
|
|
921
|
+
- Updated dependencies [1448a96e]
|
|
922
|
+
- Updated dependencies [1ec2e9d]
|
|
923
|
+
- Updated dependencies [d6edb1d]
|
|
924
|
+
- Updated dependencies [d3474c6]
|
|
925
|
+
- Updated dependencies [75080fd6]
|
|
926
|
+
- Updated dependencies [17f8752]
|
|
927
|
+
- Updated dependencies [c45b62c]
|
|
928
|
+
- Updated dependencies [91265bba]
|
|
929
|
+
- Updated dependencies [bbe18b9f]
|
|
930
|
+
- Updated dependencies [d409996]
|
|
931
|
+
- Updated dependencies [4920742]
|
|
932
|
+
- Updated dependencies [12a873e]
|
|
933
|
+
- Updated dependencies [69ca080]
|
|
934
|
+
- Updated dependencies [7e56d6b]
|
|
935
|
+
- Updated dependencies [94b6928]
|
|
936
|
+
- Updated dependencies [98bb8dc]
|
|
937
|
+
- Updated dependencies [46b7aad]
|
|
938
|
+
- Updated dependencies [dcc8a15]
|
|
939
|
+
- Updated dependencies [8f47cca]
|
|
940
|
+
- Updated dependencies [fad2768]
|
|
941
|
+
- Updated dependencies [dff0d595]
|
|
942
|
+
- Updated dependencies [eecb282]
|
|
943
|
+
- Updated dependencies [f2c325c]
|
|
944
|
+
- Updated dependencies [9e25a64]
|
|
945
|
+
- Updated dependencies [beb499e6]
|
|
946
|
+
- Updated dependencies [146ea39]
|
|
947
|
+
- Updated dependencies [f2c92d5]
|
|
948
|
+
- Updated dependencies [7bd3d99]
|
|
949
|
+
- Updated dependencies [c47be30]
|
|
950
|
+
- Updated dependencies [e9a46ac]
|
|
951
|
+
- Updated dependencies [f046f8e0]
|
|
952
|
+
- Updated dependencies [b9273fd]
|
|
953
|
+
- Updated dependencies [86d2531]
|
|
954
|
+
- Updated dependencies [c670bd4]
|
|
955
|
+
- Updated dependencies [3f9b8d7]
|
|
956
|
+
- @akinon/next@1.48.0-rc.0
|
|
957
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.0
|
|
958
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.0
|
|
959
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.0
|
|
960
|
+
- @akinon/pz-click-collect@1.48.0-rc.0
|
|
961
|
+
- @akinon/pz-masterpass@1.48.0-rc.0
|
|
962
|
+
- @akinon/pz-akifast@1.48.0-rc.0
|
|
963
|
+
- @akinon/pz-gpay@1.48.0-rc.0
|
|
964
|
+
- @akinon/pz-b2b@1.48.0-rc.0
|
|
965
|
+
- @akinon/pz-bkm@1.48.0-rc.0
|
|
966
|
+
- @akinon/pz-otp@1.48.0-rc.0
|
|
967
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.0
|
|
968
|
+
- @akinon/pz-credit-payment@1.48.0-rc.0
|
|
202
969
|
|
|
203
970
|
## 1.47.0
|
|
204
971
|
|
|
@@ -246,20 +1013,255 @@
|
|
|
246
1013
|
|
|
247
1014
|
### Patch Changes
|
|
248
1015
|
|
|
1016
|
+
- Updated dependencies [90282b5]
|
|
1017
|
+
- Updated dependencies [50b9069]
|
|
1018
|
+
- Updated dependencies [572d2e8]
|
|
1019
|
+
- Updated dependencies [a4c8d6a9]
|
|
1020
|
+
- Updated dependencies [fda5b92]
|
|
1021
|
+
- Updated dependencies [2d9b2b2]
|
|
1022
|
+
- Updated dependencies [c53ea3e]
|
|
1023
|
+
- Updated dependencies [8d9ac9a]
|
|
1024
|
+
- Updated dependencies [18e8197]
|
|
1025
|
+
- Updated dependencies [714e0b4]
|
|
1026
|
+
- Updated dependencies [70279e7]
|
|
1027
|
+
- Updated dependencies [6c25f66]
|
|
1028
|
+
- Updated dependencies [bc2b411]
|
|
1029
|
+
- Updated dependencies [3bf2dd9]
|
|
1030
|
+
- Updated dependencies [e9541a1]
|
|
1031
|
+
- Updated dependencies [c53ef7b9]
|
|
1032
|
+
- Updated dependencies [9d94f7e]
|
|
1033
|
+
- Updated dependencies [64699d3]
|
|
1034
|
+
- Updated dependencies [0d3a913]
|
|
1035
|
+
- Updated dependencies [1448a96e]
|
|
1036
|
+
- Updated dependencies [d6edb1d]
|
|
1037
|
+
- Updated dependencies [d3474c6]
|
|
1038
|
+
- Updated dependencies [75080fd6]
|
|
1039
|
+
- Updated dependencies [17f8752]
|
|
1040
|
+
- Updated dependencies [c45b62c]
|
|
1041
|
+
- Updated dependencies [91265bba]
|
|
1042
|
+
- Updated dependencies [bbe18b9f]
|
|
1043
|
+
- Updated dependencies [d409996]
|
|
1044
|
+
- Updated dependencies [4920742]
|
|
1045
|
+
- Updated dependencies [69ca080]
|
|
1046
|
+
- Updated dependencies [7e56d6b]
|
|
1047
|
+
- Updated dependencies [94b6928]
|
|
1048
|
+
- Updated dependencies [98bb8dc]
|
|
1049
|
+
- Updated dependencies [46b7aad]
|
|
1050
|
+
- Updated dependencies [dcc8a15]
|
|
1051
|
+
- Updated dependencies [8f47cca]
|
|
1052
|
+
- Updated dependencies [fad2768]
|
|
1053
|
+
- Updated dependencies [dff0d595]
|
|
1054
|
+
- Updated dependencies [eecb282]
|
|
1055
|
+
- Updated dependencies [f2c325c]
|
|
1056
|
+
- Updated dependencies [9e25a64]
|
|
1057
|
+
- Updated dependencies [beb499e6]
|
|
1058
|
+
- Updated dependencies [948eb42]
|
|
1059
|
+
- Updated dependencies [146ea39]
|
|
1060
|
+
- Updated dependencies [f2c92d5]
|
|
1061
|
+
- Updated dependencies [7bd3d99]
|
|
1062
|
+
- Updated dependencies [c47be30]
|
|
1063
|
+
- Updated dependencies [e9a46ac]
|
|
1064
|
+
- Updated dependencies [f046f8e0]
|
|
1065
|
+
- Updated dependencies [86d2531]
|
|
1066
|
+
- Updated dependencies [3f9b8d7]
|
|
1067
|
+
- @akinon/next@1.45.0-rc.5
|
|
1068
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.5
|
|
1069
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.5
|
|
1070
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.5
|
|
1071
|
+
- @akinon/pz-click-collect@1.45.0-rc.5
|
|
1072
|
+
- @akinon/pz-masterpass@1.45.0-rc.5
|
|
1073
|
+
- @akinon/pz-akifast@1.45.0-rc.5
|
|
1074
|
+
- @akinon/pz-gpay@1.45.0-rc.5
|
|
1075
|
+
- @akinon/pz-b2b@1.45.0-rc.5
|
|
1076
|
+
- @akinon/pz-bkm@1.45.0-rc.5
|
|
1077
|
+
- @akinon/pz-otp@1.45.0-rc.5
|
|
1078
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.5
|
|
1079
|
+
- @akinon/pz-credit-payment@1.45.0-rc.5
|
|
1080
|
+
|
|
1081
|
+
## 1.45.0-rc.4
|
|
1082
|
+
|
|
1083
|
+
### Patch Changes
|
|
1084
|
+
|
|
1085
|
+
- Updated dependencies [8f47cca]
|
|
1086
|
+
- @akinon/next@1.45.0-rc.4
|
|
1087
|
+
- @akinon/pz-akifast@1.45.0-rc.4
|
|
1088
|
+
- @akinon/pz-b2b@1.45.0-rc.4
|
|
1089
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.4
|
|
1090
|
+
- @akinon/pz-bkm@1.45.0-rc.4
|
|
1091
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.4
|
|
1092
|
+
- @akinon/pz-click-collect@1.45.0-rc.4
|
|
1093
|
+
- @akinon/pz-credit-payment@1.45.0-rc.4
|
|
1094
|
+
- @akinon/pz-gpay@1.45.0-rc.4
|
|
1095
|
+
- @akinon/pz-masterpass@1.45.0-rc.4
|
|
1096
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.4
|
|
1097
|
+
- @akinon/pz-otp@1.45.0-rc.4
|
|
1098
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.4
|
|
1099
|
+
|
|
1100
|
+
## 1.45.0-rc.3
|
|
1101
|
+
|
|
1102
|
+
### Patch Changes
|
|
1103
|
+
|
|
1104
|
+
- Updated dependencies [948eb42]
|
|
1105
|
+
- @akinon/next@1.45.0-rc.3
|
|
1106
|
+
- @akinon/pz-akifast@1.45.0-rc.3
|
|
1107
|
+
- @akinon/pz-b2b@1.45.0-rc.3
|
|
1108
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.3
|
|
1109
|
+
- @akinon/pz-bkm@1.45.0-rc.3
|
|
1110
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.3
|
|
1111
|
+
- @akinon/pz-click-collect@1.45.0-rc.3
|
|
1112
|
+
- @akinon/pz-credit-payment@1.45.0-rc.3
|
|
1113
|
+
- @akinon/pz-gpay@1.45.0-rc.3
|
|
1114
|
+
- @akinon/pz-masterpass@1.45.0-rc.3
|
|
1115
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.3
|
|
1116
|
+
- @akinon/pz-otp@1.45.0-rc.3
|
|
1117
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.3
|
|
1118
|
+
|
|
1119
|
+
## 1.45.0-rc.2
|
|
1120
|
+
|
|
1121
|
+
### Minor Changes
|
|
1122
|
+
|
|
1123
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
1124
|
+
|
|
1125
|
+
### Patch Changes
|
|
1126
|
+
|
|
1127
|
+
- Updated dependencies [c45b62c]
|
|
1128
|
+
- Updated dependencies [f2c325c]
|
|
1129
|
+
- @akinon/next@1.45.0-rc.2
|
|
1130
|
+
- @akinon/pz-b2b@1.45.0-rc.2
|
|
1131
|
+
- @akinon/pz-akifast@1.45.0-rc.2
|
|
1132
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.2
|
|
1133
|
+
- @akinon/pz-bkm@1.45.0-rc.2
|
|
1134
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.2
|
|
1135
|
+
- @akinon/pz-click-collect@1.45.0-rc.2
|
|
1136
|
+
- @akinon/pz-credit-payment@1.45.0-rc.2
|
|
1137
|
+
- @akinon/pz-gpay@1.45.0-rc.2
|
|
1138
|
+
- @akinon/pz-masterpass@1.45.0-rc.2
|
|
1139
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.2
|
|
1140
|
+
- @akinon/pz-otp@1.45.0-rc.2
|
|
1141
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.2
|
|
1142
|
+
|
|
1143
|
+
## 1.45.0-rc.1
|
|
1144
|
+
|
|
1145
|
+
### Patch Changes
|
|
1146
|
+
|
|
1147
|
+
- Updated dependencies [7e56d6b]
|
|
1148
|
+
- @akinon/next@1.45.0-rc.1
|
|
1149
|
+
- @akinon/pz-akifast@1.45.0-rc.1
|
|
1150
|
+
- @akinon/pz-b2b@1.45.0-rc.1
|
|
1151
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.1
|
|
1152
|
+
- @akinon/pz-bkm@1.45.0-rc.1
|
|
1153
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.1
|
|
1154
|
+
- @akinon/pz-click-collect@1.45.0-rc.1
|
|
1155
|
+
- @akinon/pz-credit-payment@1.45.0-rc.1
|
|
1156
|
+
- @akinon/pz-gpay@1.45.0-rc.1
|
|
1157
|
+
- @akinon/pz-masterpass@1.45.0-rc.1
|
|
1158
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.1
|
|
1159
|
+
- @akinon/pz-otp@1.45.0-rc.1
|
|
1160
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.1
|
|
1161
|
+
|
|
1162
|
+
## 1.45.0-rc.0
|
|
1163
|
+
|
|
1164
|
+
### Minor Changes
|
|
1165
|
+
|
|
1166
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1167
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1168
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1169
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
1170
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
1171
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
1172
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
1173
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
1174
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1175
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
1176
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
1177
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
1178
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
1179
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1180
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1181
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
1182
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
1183
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
1184
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
1185
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1186
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
1187
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1188
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
1189
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1190
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
1191
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
1192
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
1193
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1194
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1195
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1196
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1197
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
1198
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
1199
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1200
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1201
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1202
|
+
|
|
1203
|
+
### Patch Changes
|
|
1204
|
+
|
|
1205
|
+
- Updated dependencies [90282b5]
|
|
1206
|
+
- Updated dependencies [50b9069]
|
|
1207
|
+
- Updated dependencies [572d2e8]
|
|
1208
|
+
- Updated dependencies [a4c8d6a9]
|
|
1209
|
+
- Updated dependencies [fda5b92]
|
|
1210
|
+
- Updated dependencies [2d9b2b2]
|
|
1211
|
+
- Updated dependencies [c53ea3e]
|
|
1212
|
+
- Updated dependencies [8d9ac9a]
|
|
1213
|
+
- Updated dependencies [18e8197]
|
|
1214
|
+
- Updated dependencies [714e0b4]
|
|
1215
|
+
- Updated dependencies [70279e7]
|
|
1216
|
+
- Updated dependencies [6c25f66]
|
|
1217
|
+
- Updated dependencies [bc2b411]
|
|
1218
|
+
- Updated dependencies [3bf2dd9]
|
|
1219
|
+
- Updated dependencies [e9541a1]
|
|
1220
|
+
- Updated dependencies [c53ef7b9]
|
|
1221
|
+
- Updated dependencies [9d94f7e]
|
|
1222
|
+
- Updated dependencies [64699d3]
|
|
1223
|
+
- Updated dependencies [0d3a913]
|
|
1224
|
+
- Updated dependencies [1448a96]
|
|
249
1225
|
- Updated dependencies [2ab6e08]
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
1226
|
+
- Updated dependencies [d6edb1d]
|
|
1227
|
+
- Updated dependencies [d3474c6]
|
|
1228
|
+
- Updated dependencies [75080fd]
|
|
1229
|
+
- Updated dependencies [17f8752]
|
|
1230
|
+
- Updated dependencies [91265bb]
|
|
1231
|
+
- Updated dependencies [bbe18b9]
|
|
1232
|
+
- Updated dependencies [d409996]
|
|
1233
|
+
- Updated dependencies [4920742]
|
|
1234
|
+
- Updated dependencies [69ca080]
|
|
1235
|
+
- Updated dependencies [94b6928]
|
|
1236
|
+
- Updated dependencies [98bb8dc]
|
|
1237
|
+
- Updated dependencies [46b7aad]
|
|
1238
|
+
- Updated dependencies [dcc8a15]
|
|
1239
|
+
- Updated dependencies [fad2768]
|
|
1240
|
+
- Updated dependencies [dff0d59]
|
|
1241
|
+
- Updated dependencies [eecb282]
|
|
1242
|
+
- Updated dependencies [9e25a64]
|
|
1243
|
+
- Updated dependencies [beb499e]
|
|
1244
|
+
- Updated dependencies [146ea39]
|
|
1245
|
+
- Updated dependencies [f2c92d5]
|
|
1246
|
+
- Updated dependencies [7bd3d99]
|
|
1247
|
+
- Updated dependencies [c47be30]
|
|
1248
|
+
- Updated dependencies [e9a46ac]
|
|
1249
|
+
- Updated dependencies [f046f8e0]
|
|
1250
|
+
- Updated dependencies [86d2531]
|
|
1251
|
+
- Updated dependencies [3f9b8d7]
|
|
1252
|
+
- @akinon/next@1.45.0-rc.0
|
|
1253
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.0
|
|
1254
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.0
|
|
1255
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.0
|
|
1256
|
+
- @akinon/pz-click-collect@1.45.0-rc.0
|
|
1257
|
+
- @akinon/pz-masterpass@1.45.0-rc.0
|
|
1258
|
+
- @akinon/pz-akifast@1.45.0-rc.0
|
|
1259
|
+
- @akinon/pz-gpay@1.45.0-rc.0
|
|
1260
|
+
- @akinon/pz-b2b@1.45.0-rc.0
|
|
1261
|
+
- @akinon/pz-bkm@1.45.0-rc.0
|
|
1262
|
+
- @akinon/pz-otp@1.45.0-rc.0
|
|
1263
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.0
|
|
1264
|
+
- @akinon/pz-credit-payment@1.45.0-rc.0
|
|
263
1265
|
|
|
264
1266
|
## 1.44.0
|
|
265
1267
|
|
|
@@ -283,24 +1285,565 @@
|
|
|
283
1285
|
|
|
284
1286
|
### Minor Changes
|
|
285
1287
|
|
|
1288
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1289
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1290
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1291
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
1292
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
1293
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
1294
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
1295
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
1296
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1297
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
1298
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
1299
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
1300
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
1301
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1302
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1303
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
1304
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
1305
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
1306
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
1307
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1308
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
1309
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1310
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
1311
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1312
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
1313
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
1314
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
1315
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1316
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1317
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1318
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1319
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
1320
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
1321
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1322
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1323
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1324
|
+
|
|
1325
|
+
### Patch Changes
|
|
1326
|
+
|
|
1327
|
+
- Updated dependencies [90282b5]
|
|
1328
|
+
- Updated dependencies [50b9069]
|
|
1329
|
+
- Updated dependencies [572d2e8]
|
|
1330
|
+
- Updated dependencies [a4c8d6a9]
|
|
1331
|
+
- Updated dependencies [fda5b92]
|
|
1332
|
+
- Updated dependencies [2d9b2b2]
|
|
1333
|
+
- Updated dependencies [c53ea3e]
|
|
1334
|
+
- Updated dependencies [8d9ac9a]
|
|
1335
|
+
- Updated dependencies [18e8197]
|
|
1336
|
+
- Updated dependencies [714e0b4]
|
|
1337
|
+
- Updated dependencies [70279e7]
|
|
1338
|
+
- Updated dependencies [6c25f66]
|
|
1339
|
+
- Updated dependencies [bc2b411]
|
|
1340
|
+
- Updated dependencies [3bf2dd9]
|
|
1341
|
+
- Updated dependencies [e9541a1]
|
|
1342
|
+
- Updated dependencies [c53ef7b9]
|
|
1343
|
+
- Updated dependencies [9d94f7e]
|
|
1344
|
+
- Updated dependencies [64699d3]
|
|
1345
|
+
- Updated dependencies [0d3a913]
|
|
1346
|
+
- Updated dependencies [1448a96]
|
|
1347
|
+
- Updated dependencies [d6edb1d]
|
|
1348
|
+
- Updated dependencies [d3474c6]
|
|
1349
|
+
- Updated dependencies [75080fd]
|
|
1350
|
+
- Updated dependencies [17f8752]
|
|
1351
|
+
- Updated dependencies [91265bb]
|
|
1352
|
+
- Updated dependencies [bbe18b9]
|
|
1353
|
+
- Updated dependencies [d409996]
|
|
1354
|
+
- Updated dependencies [4920742]
|
|
1355
|
+
- Updated dependencies [69ca080]
|
|
1356
|
+
- Updated dependencies [94b6928]
|
|
1357
|
+
- Updated dependencies [98bb8dc]
|
|
1358
|
+
- Updated dependencies [46b7aad]
|
|
1359
|
+
- Updated dependencies [dcc8a15]
|
|
1360
|
+
- Updated dependencies [fad2768]
|
|
1361
|
+
- Updated dependencies [dff0d59]
|
|
1362
|
+
- Updated dependencies [eecb282]
|
|
1363
|
+
- Updated dependencies [9e25a64]
|
|
1364
|
+
- Updated dependencies [beb499e]
|
|
1365
|
+
- Updated dependencies [146ea39]
|
|
1366
|
+
- Updated dependencies [f2c92d5]
|
|
1367
|
+
- Updated dependencies [7bd3d99]
|
|
1368
|
+
- Updated dependencies [c47be30]
|
|
1369
|
+
- Updated dependencies [e9a46ac]
|
|
1370
|
+
- Updated dependencies [f046f8e0]
|
|
1371
|
+
- Updated dependencies [86d2531]
|
|
1372
|
+
- Updated dependencies [3f9b8d7]
|
|
1373
|
+
- @akinon/next@1.43.0-rc.16
|
|
1374
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.16
|
|
1375
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.16
|
|
1376
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.16
|
|
1377
|
+
- @akinon/pz-click-collect@1.43.0-rc.16
|
|
1378
|
+
- @akinon/pz-masterpass@1.43.0-rc.16
|
|
1379
|
+
- @akinon/pz-akifast@1.43.0-rc.16
|
|
1380
|
+
- @akinon/pz-gpay@1.43.0-rc.16
|
|
1381
|
+
- @akinon/pz-b2b@1.43.0-rc.16
|
|
1382
|
+
- @akinon/pz-bkm@1.43.0-rc.16
|
|
1383
|
+
- @akinon/pz-otp@1.43.0-rc.16
|
|
1384
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.16
|
|
1385
|
+
- @akinon/pz-credit-payment@1.43.0-rc.16
|
|
1386
|
+
|
|
1387
|
+
## 1.43.0-rc.15
|
|
1388
|
+
|
|
1389
|
+
### Patch Changes
|
|
1390
|
+
|
|
1391
|
+
- @akinon/next@1.43.0-rc.15
|
|
1392
|
+
- @akinon/pz-akifast@1.43.0-rc.15
|
|
1393
|
+
- @akinon/pz-b2b@1.43.0-rc.15
|
|
1394
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.15
|
|
1395
|
+
- @akinon/pz-bkm@1.43.0-rc.15
|
|
1396
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.15
|
|
1397
|
+
- @akinon/pz-click-collect@1.43.0-rc.15
|
|
1398
|
+
- @akinon/pz-credit-payment@1.43.0-rc.15
|
|
1399
|
+
- @akinon/pz-gpay@1.43.0-rc.15
|
|
1400
|
+
- @akinon/pz-masterpass@1.43.0-rc.15
|
|
1401
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.15
|
|
1402
|
+
- @akinon/pz-otp@1.43.0-rc.15
|
|
1403
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.15
|
|
1404
|
+
|
|
1405
|
+
## 1.43.0-rc.14
|
|
1406
|
+
|
|
1407
|
+
### Patch Changes
|
|
1408
|
+
|
|
1409
|
+
- Updated dependencies [3bf2dd9]
|
|
1410
|
+
- @akinon/next@1.43.0-rc.14
|
|
1411
|
+
- @akinon/pz-akifast@1.43.0-rc.14
|
|
1412
|
+
- @akinon/pz-b2b@1.43.0-rc.14
|
|
1413
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.14
|
|
1414
|
+
- @akinon/pz-bkm@1.43.0-rc.14
|
|
1415
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.14
|
|
1416
|
+
- @akinon/pz-click-collect@1.43.0-rc.14
|
|
1417
|
+
- @akinon/pz-credit-payment@1.43.0-rc.14
|
|
1418
|
+
- @akinon/pz-gpay@1.43.0-rc.14
|
|
1419
|
+
- @akinon/pz-masterpass@1.43.0-rc.14
|
|
1420
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.14
|
|
1421
|
+
- @akinon/pz-otp@1.43.0-rc.14
|
|
1422
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.14
|
|
1423
|
+
|
|
1424
|
+
## 1.43.0-rc.13
|
|
1425
|
+
|
|
1426
|
+
### Minor Changes
|
|
1427
|
+
|
|
1428
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1429
|
+
|
|
1430
|
+
### Patch Changes
|
|
1431
|
+
|
|
1432
|
+
- Updated dependencies [9e25a64]
|
|
1433
|
+
- @akinon/next@1.43.0-rc.13
|
|
1434
|
+
- @akinon/pz-akifast@1.43.0-rc.13
|
|
1435
|
+
- @akinon/pz-b2b@1.43.0-rc.13
|
|
1436
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.13
|
|
1437
|
+
- @akinon/pz-bkm@1.43.0-rc.13
|
|
1438
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.13
|
|
1439
|
+
- @akinon/pz-click-collect@1.43.0-rc.13
|
|
1440
|
+
- @akinon/pz-credit-payment@1.43.0-rc.13
|
|
1441
|
+
- @akinon/pz-gpay@1.43.0-rc.13
|
|
1442
|
+
- @akinon/pz-masterpass@1.43.0-rc.13
|
|
1443
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.13
|
|
1444
|
+
- @akinon/pz-otp@1.43.0-rc.13
|
|
1445
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.13
|
|
1446
|
+
|
|
1447
|
+
## 1.43.0-rc.12
|
|
1448
|
+
|
|
1449
|
+
### Patch Changes
|
|
1450
|
+
|
|
1451
|
+
- Updated dependencies [4920742]
|
|
1452
|
+
- @akinon/next@1.43.0-rc.12
|
|
1453
|
+
- @akinon/pz-akifast@1.43.0-rc.12
|
|
1454
|
+
- @akinon/pz-b2b@1.43.0-rc.12
|
|
1455
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.12
|
|
1456
|
+
- @akinon/pz-bkm@1.43.0-rc.12
|
|
1457
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.12
|
|
1458
|
+
- @akinon/pz-click-collect@1.43.0-rc.12
|
|
1459
|
+
- @akinon/pz-credit-payment@1.43.0-rc.12
|
|
1460
|
+
- @akinon/pz-gpay@1.43.0-rc.12
|
|
1461
|
+
- @akinon/pz-masterpass@1.43.0-rc.12
|
|
1462
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.12
|
|
1463
|
+
- @akinon/pz-otp@1.43.0-rc.12
|
|
1464
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.12
|
|
1465
|
+
|
|
1466
|
+
## 1.43.0-rc.11
|
|
1467
|
+
|
|
1468
|
+
### Patch Changes
|
|
1469
|
+
|
|
1470
|
+
- Updated dependencies [6c25f66]
|
|
1471
|
+
- @akinon/next@1.43.0-rc.11
|
|
1472
|
+
- @akinon/pz-akifast@1.43.0-rc.11
|
|
1473
|
+
- @akinon/pz-b2b@1.43.0-rc.11
|
|
1474
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.11
|
|
1475
|
+
- @akinon/pz-bkm@1.43.0-rc.11
|
|
1476
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.11
|
|
1477
|
+
- @akinon/pz-click-collect@1.43.0-rc.11
|
|
1478
|
+
- @akinon/pz-credit-payment@1.43.0-rc.11
|
|
1479
|
+
- @akinon/pz-gpay@1.43.0-rc.11
|
|
1480
|
+
- @akinon/pz-masterpass@1.43.0-rc.11
|
|
1481
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.11
|
|
1482
|
+
- @akinon/pz-otp@1.43.0-rc.11
|
|
1483
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.11
|
|
1484
|
+
|
|
1485
|
+
## 1.43.0-rc.10
|
|
1486
|
+
|
|
1487
|
+
### Patch Changes
|
|
1488
|
+
|
|
1489
|
+
- Updated dependencies [d6edb1d]
|
|
1490
|
+
- @akinon/next@1.43.0-rc.10
|
|
1491
|
+
- @akinon/pz-akifast@1.43.0-rc.10
|
|
1492
|
+
- @akinon/pz-b2b@1.43.0-rc.10
|
|
1493
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.10
|
|
1494
|
+
- @akinon/pz-bkm@1.43.0-rc.10
|
|
1495
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.10
|
|
1496
|
+
- @akinon/pz-click-collect@1.43.0-rc.10
|
|
1497
|
+
- @akinon/pz-credit-payment@1.43.0-rc.10
|
|
1498
|
+
- @akinon/pz-gpay@1.43.0-rc.10
|
|
1499
|
+
- @akinon/pz-masterpass@1.43.0-rc.10
|
|
1500
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.10
|
|
1501
|
+
- @akinon/pz-otp@1.43.0-rc.10
|
|
1502
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.10
|
|
1503
|
+
|
|
1504
|
+
## 1.43.0-rc.9
|
|
1505
|
+
|
|
1506
|
+
### Minor Changes
|
|
1507
|
+
|
|
1508
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1509
|
+
|
|
1510
|
+
### Patch Changes
|
|
1511
|
+
|
|
1512
|
+
- Updated dependencies [bc2b411]
|
|
1513
|
+
- @akinon/next@1.43.0-rc.9
|
|
1514
|
+
- @akinon/pz-akifast@1.43.0-rc.9
|
|
1515
|
+
- @akinon/pz-b2b@1.43.0-rc.9
|
|
1516
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.9
|
|
1517
|
+
- @akinon/pz-bkm@1.43.0-rc.9
|
|
1518
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.9
|
|
1519
|
+
- @akinon/pz-click-collect@1.43.0-rc.9
|
|
1520
|
+
- @akinon/pz-credit-payment@1.43.0-rc.9
|
|
1521
|
+
- @akinon/pz-gpay@1.43.0-rc.9
|
|
1522
|
+
- @akinon/pz-masterpass@1.43.0-rc.9
|
|
1523
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.9
|
|
1524
|
+
- @akinon/pz-otp@1.43.0-rc.9
|
|
1525
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.9
|
|
1526
|
+
|
|
1527
|
+
## 1.43.0-rc.8
|
|
1528
|
+
|
|
1529
|
+
### Patch Changes
|
|
1530
|
+
|
|
1531
|
+
- Updated dependencies [70279e7]
|
|
1532
|
+
- Updated dependencies [9d94f7e]
|
|
1533
|
+
- @akinon/next@1.43.0-rc.8
|
|
1534
|
+
- @akinon/pz-akifast@1.43.0-rc.8
|
|
1535
|
+
- @akinon/pz-b2b@1.43.0-rc.8
|
|
1536
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.8
|
|
1537
|
+
- @akinon/pz-bkm@1.43.0-rc.8
|
|
1538
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.8
|
|
1539
|
+
- @akinon/pz-click-collect@1.43.0-rc.8
|
|
1540
|
+
- @akinon/pz-credit-payment@1.43.0-rc.8
|
|
1541
|
+
- @akinon/pz-gpay@1.43.0-rc.8
|
|
1542
|
+
- @akinon/pz-masterpass@1.43.0-rc.8
|
|
1543
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.8
|
|
1544
|
+
- @akinon/pz-otp@1.43.0-rc.8
|
|
1545
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.8
|
|
1546
|
+
|
|
1547
|
+
## 1.43.0-rc.7
|
|
1548
|
+
|
|
1549
|
+
### Patch Changes
|
|
1550
|
+
|
|
1551
|
+
- Updated dependencies [7bd3d99]
|
|
1552
|
+
- @akinon/next@1.43.0-rc.7
|
|
1553
|
+
- @akinon/pz-akifast@1.43.0-rc.7
|
|
1554
|
+
- @akinon/pz-b2b@1.43.0-rc.7
|
|
1555
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.7
|
|
1556
|
+
- @akinon/pz-bkm@1.43.0-rc.7
|
|
1557
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.7
|
|
1558
|
+
- @akinon/pz-click-collect@1.43.0-rc.7
|
|
1559
|
+
- @akinon/pz-credit-payment@1.43.0-rc.7
|
|
1560
|
+
- @akinon/pz-gpay@1.43.0-rc.7
|
|
1561
|
+
- @akinon/pz-masterpass@1.43.0-rc.7
|
|
1562
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.7
|
|
1563
|
+
- @akinon/pz-otp@1.43.0-rc.7
|
|
1564
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.7
|
|
1565
|
+
|
|
1566
|
+
## 1.43.0-rc.6
|
|
1567
|
+
|
|
1568
|
+
### Minor Changes
|
|
1569
|
+
|
|
1570
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1571
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1572
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1573
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
1574
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
1575
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
1576
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
1577
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
1578
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
1579
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
1580
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
1581
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
1582
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1583
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1584
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
1585
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
1586
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
1587
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
1588
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1589
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
1590
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1591
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
1592
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1593
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
1594
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
1595
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
1596
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1597
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
286
1598
|
- 4a163f2: ZERO-2761: Add condition for basket summary
|
|
1599
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1600
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
1601
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
1602
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1603
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
1604
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
287
1605
|
|
|
288
1606
|
### Patch Changes
|
|
289
1607
|
|
|
1608
|
+
- Updated dependencies [90282b5]
|
|
1609
|
+
- Updated dependencies [50b9069]
|
|
1610
|
+
- Updated dependencies [572d2e8]
|
|
1611
|
+
- Updated dependencies [a4c8d6a]
|
|
1612
|
+
- Updated dependencies [fda5b92]
|
|
1613
|
+
- Updated dependencies [2d9b2b2]
|
|
1614
|
+
- Updated dependencies [c53ea3e]
|
|
1615
|
+
- Updated dependencies [8d9ac9a]
|
|
1616
|
+
- Updated dependencies [18e8197]
|
|
1617
|
+
- Updated dependencies [714e0b4]
|
|
1618
|
+
- Updated dependencies [e9541a1]
|
|
1619
|
+
- Updated dependencies [c53ef7b]
|
|
1620
|
+
- Updated dependencies [64699d3]
|
|
1621
|
+
- Updated dependencies [0d3a913]
|
|
1622
|
+
- Updated dependencies [1448a96]
|
|
1623
|
+
- Updated dependencies [d3474c6]
|
|
1624
|
+
- Updated dependencies [75080fd]
|
|
1625
|
+
- Updated dependencies [17f8752]
|
|
1626
|
+
- Updated dependencies [91265bb]
|
|
1627
|
+
- Updated dependencies [bbe18b9]
|
|
1628
|
+
- Updated dependencies [d409996]
|
|
1629
|
+
- Updated dependencies [69ca080]
|
|
1630
|
+
- Updated dependencies [94b6928]
|
|
1631
|
+
- Updated dependencies [98bb8dc]
|
|
1632
|
+
- Updated dependencies [46b7aad]
|
|
1633
|
+
- Updated dependencies [dcc8a15]
|
|
1634
|
+
- Updated dependencies [fad2768]
|
|
1635
|
+
- Updated dependencies [dff0d59]
|
|
1636
|
+
- Updated dependencies [eecb282]
|
|
290
1637
|
- Updated dependencies [4a163f2]
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
- @akinon/
|
|
300
|
-
- @akinon/pz-
|
|
301
|
-
- @akinon/pz-one-click-checkout@1.43.0
|
|
302
|
-
- @akinon/pz-
|
|
303
|
-
- @akinon/pz-
|
|
1638
|
+
- Updated dependencies [beb499e]
|
|
1639
|
+
- Updated dependencies [146ea39]
|
|
1640
|
+
- Updated dependencies [f2c92d5]
|
|
1641
|
+
- Updated dependencies [c47be30]
|
|
1642
|
+
- Updated dependencies [e9a46ac]
|
|
1643
|
+
- Updated dependencies [f046f8e]
|
|
1644
|
+
- Updated dependencies [86d2531]
|
|
1645
|
+
- Updated dependencies [3f9b8d7]
|
|
1646
|
+
- @akinon/next@1.43.0-rc.6
|
|
1647
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.6
|
|
1648
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.6
|
|
1649
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.6
|
|
1650
|
+
- @akinon/pz-click-collect@1.43.0-rc.6
|
|
1651
|
+
- @akinon/pz-masterpass@1.43.0-rc.6
|
|
1652
|
+
- @akinon/pz-akifast@1.43.0-rc.6
|
|
1653
|
+
- @akinon/pz-gpay@1.43.0-rc.6
|
|
1654
|
+
- @akinon/pz-b2b@1.43.0-rc.6
|
|
1655
|
+
- @akinon/pz-bkm@1.43.0-rc.6
|
|
1656
|
+
- @akinon/pz-otp@1.43.0-rc.6
|
|
1657
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.6
|
|
1658
|
+
- @akinon/pz-credit-payment@1.43.0-rc.6
|
|
1659
|
+
|
|
1660
|
+
## 1.43.0-rc.5
|
|
1661
|
+
|
|
1662
|
+
### Patch Changes
|
|
1663
|
+
|
|
1664
|
+
- Updated dependencies [17f8752]
|
|
1665
|
+
- @akinon/next@1.43.0-rc.5
|
|
1666
|
+
- @akinon/pz-akifast@1.43.0-rc.5
|
|
1667
|
+
- @akinon/pz-b2b@1.43.0-rc.5
|
|
1668
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.5
|
|
1669
|
+
- @akinon/pz-bkm@1.43.0-rc.5
|
|
1670
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.5
|
|
1671
|
+
- @akinon/pz-click-collect@1.43.0-rc.5
|
|
1672
|
+
- @akinon/pz-credit-payment@1.43.0-rc.5
|
|
1673
|
+
- @akinon/pz-gpay@1.43.0-rc.5
|
|
1674
|
+
- @akinon/pz-masterpass@1.43.0-rc.5
|
|
1675
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.5
|
|
1676
|
+
- @akinon/pz-otp@1.43.0-rc.5
|
|
1677
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.5
|
|
1678
|
+
|
|
1679
|
+
## 1.43.0-rc.4
|
|
1680
|
+
|
|
1681
|
+
### Patch Changes
|
|
1682
|
+
|
|
1683
|
+
- Updated dependencies [3f9b8d7]
|
|
1684
|
+
- @akinon/next@1.43.0-rc.4
|
|
1685
|
+
- @akinon/pz-akifast@1.43.0-rc.4
|
|
1686
|
+
- @akinon/pz-b2b@1.43.0-rc.4
|
|
1687
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.4
|
|
1688
|
+
- @akinon/pz-bkm@1.43.0-rc.4
|
|
1689
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.4
|
|
1690
|
+
- @akinon/pz-click-collect@1.43.0-rc.4
|
|
1691
|
+
- @akinon/pz-credit-payment@1.43.0-rc.4
|
|
1692
|
+
- @akinon/pz-gpay@1.43.0-rc.4
|
|
1693
|
+
- @akinon/pz-masterpass@1.43.0-rc.4
|
|
1694
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.4
|
|
1695
|
+
- @akinon/pz-otp@1.43.0-rc.4
|
|
1696
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.4
|
|
1697
|
+
|
|
1698
|
+
## 1.43.0-rc.3
|
|
1699
|
+
|
|
1700
|
+
### Minor Changes
|
|
1701
|
+
|
|
1702
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1703
|
+
|
|
1704
|
+
### Patch Changes
|
|
1705
|
+
|
|
1706
|
+
- Updated dependencies [64699d3]
|
|
1707
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.3
|
|
1708
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.3
|
|
1709
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.3
|
|
1710
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.3
|
|
1711
|
+
- @akinon/pz-credit-payment@1.43.0-rc.3
|
|
1712
|
+
- @akinon/pz-click-collect@1.43.0-rc.3
|
|
1713
|
+
- @akinon/pz-masterpass@1.43.0-rc.3
|
|
1714
|
+
- @akinon/next@1.43.0-rc.3
|
|
1715
|
+
- @akinon/pz-akifast@1.43.0-rc.3
|
|
1716
|
+
- @akinon/pz-gpay@1.43.0-rc.3
|
|
1717
|
+
- @akinon/pz-b2b@1.43.0-rc.3
|
|
1718
|
+
- @akinon/pz-bkm@1.43.0-rc.3
|
|
1719
|
+
- @akinon/pz-otp@1.43.0-rc.3
|
|
1720
|
+
|
|
1721
|
+
## 1.43.0-rc.2
|
|
1722
|
+
|
|
1723
|
+
### Patch Changes
|
|
1724
|
+
|
|
1725
|
+
- Updated dependencies [f2c92d5]
|
|
1726
|
+
- @akinon/next@1.43.0-rc.2
|
|
1727
|
+
- @akinon/pz-akifast@1.43.0-rc.2
|
|
1728
|
+
- @akinon/pz-b2b@1.43.0-rc.2
|
|
1729
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.2
|
|
1730
|
+
- @akinon/pz-bkm@1.43.0-rc.2
|
|
1731
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.2
|
|
1732
|
+
- @akinon/pz-click-collect@1.43.0-rc.2
|
|
1733
|
+
- @akinon/pz-credit-payment@1.43.0-rc.2
|
|
1734
|
+
- @akinon/pz-gpay@1.43.0-rc.2
|
|
1735
|
+
- @akinon/pz-masterpass@1.43.0-rc.2
|
|
1736
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.2
|
|
1737
|
+
- @akinon/pz-otp@1.43.0-rc.2
|
|
1738
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.2
|
|
1739
|
+
|
|
1740
|
+
## 1.43.0-rc.1
|
|
1741
|
+
|
|
1742
|
+
### Minor Changes
|
|
1743
|
+
|
|
1744
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1745
|
+
|
|
1746
|
+
### Patch Changes
|
|
1747
|
+
|
|
1748
|
+
- Updated dependencies [eecb282]
|
|
1749
|
+
- @akinon/next@1.43.0-rc.1
|
|
1750
|
+
- @akinon/pz-akifast@1.43.0-rc.1
|
|
1751
|
+
- @akinon/pz-b2b@1.43.0-rc.1
|
|
1752
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.1
|
|
1753
|
+
- @akinon/pz-bkm@1.43.0-rc.1
|
|
1754
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.1
|
|
1755
|
+
- @akinon/pz-click-collect@1.43.0-rc.1
|
|
1756
|
+
- @akinon/pz-credit-payment@1.43.0-rc.1
|
|
1757
|
+
- @akinon/pz-gpay@1.43.0-rc.1
|
|
1758
|
+
- @akinon/pz-masterpass@1.43.0-rc.1
|
|
1759
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.1
|
|
1760
|
+
- @akinon/pz-otp@1.43.0-rc.1
|
|
1761
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.1
|
|
1762
|
+
|
|
1763
|
+
## 1.43.0-rc.0
|
|
1764
|
+
|
|
1765
|
+
### Minor Changes
|
|
1766
|
+
|
|
1767
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1768
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1769
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1770
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
1771
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
1772
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
1773
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
1774
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
1775
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
1776
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
1777
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
1778
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
1779
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1780
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
1781
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
1782
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
1783
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
1784
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1785
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
1786
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1787
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
1788
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1789
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
1790
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
1791
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
1792
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1793
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1794
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
1795
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
1796
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1797
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
1798
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1799
|
+
|
|
1800
|
+
### Patch Changes
|
|
1801
|
+
|
|
1802
|
+
- Updated dependencies [90282b5]
|
|
1803
|
+
- Updated dependencies [50b9069]
|
|
1804
|
+
- Updated dependencies [572d2e8]
|
|
1805
|
+
- Updated dependencies [a4c8d6a]
|
|
1806
|
+
- Updated dependencies [fda5b92]
|
|
1807
|
+
- Updated dependencies [2d9b2b2]
|
|
1808
|
+
- Updated dependencies [c53ea3e]
|
|
1809
|
+
- Updated dependencies [8d9ac9a]
|
|
1810
|
+
- Updated dependencies [18e8197]
|
|
1811
|
+
- Updated dependencies [714e0b4]
|
|
1812
|
+
- Updated dependencies [e9541a1]
|
|
1813
|
+
- Updated dependencies [c53ef7b]
|
|
1814
|
+
- Updated dependencies [0d3a913]
|
|
1815
|
+
- Updated dependencies [1448a96]
|
|
1816
|
+
- Updated dependencies [d3474c6]
|
|
1817
|
+
- Updated dependencies [75080fd]
|
|
1818
|
+
- Updated dependencies [91265bb]
|
|
1819
|
+
- Updated dependencies [bbe18b9]
|
|
1820
|
+
- Updated dependencies [d409996]
|
|
1821
|
+
- Updated dependencies [69ca080]
|
|
1822
|
+
- Updated dependencies [94b6928]
|
|
1823
|
+
- Updated dependencies [98bb8dc]
|
|
1824
|
+
- Updated dependencies [46b7aad]
|
|
1825
|
+
- Updated dependencies [dcc8a15]
|
|
1826
|
+
- Updated dependencies [fad2768]
|
|
1827
|
+
- Updated dependencies [dff0d59]
|
|
1828
|
+
- Updated dependencies [beb499e]
|
|
1829
|
+
- Updated dependencies [146ea39]
|
|
1830
|
+
- Updated dependencies [c47be30]
|
|
1831
|
+
- Updated dependencies [e9a46ac]
|
|
1832
|
+
- Updated dependencies [f046f8e]
|
|
1833
|
+
- Updated dependencies [86d2531]
|
|
1834
|
+
- @akinon/next@1.43.0-rc.0
|
|
1835
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.0
|
|
1836
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.0
|
|
1837
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.0
|
|
1838
|
+
- @akinon/pz-click-collect@1.43.0-rc.0
|
|
1839
|
+
- @akinon/pz-masterpass@1.43.0-rc.0
|
|
1840
|
+
- @akinon/pz-akifast@1.43.0-rc.0
|
|
1841
|
+
- @akinon/pz-gpay@1.43.0-rc.0
|
|
1842
|
+
- @akinon/pz-b2b@1.43.0-rc.0
|
|
1843
|
+
- @akinon/pz-bkm@1.43.0-rc.0
|
|
1844
|
+
- @akinon/pz-otp@1.43.0-rc.0
|
|
1845
|
+
- @akinon/pz-credit-payment@1.43.0-rc.0
|
|
1846
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.0
|
|
304
1847
|
|
|
305
1848
|
## 1.42.0
|
|
306
1849
|
|
|
@@ -469,13 +2012,301 @@
|
|
|
469
2012
|
|
|
470
2013
|
### Patch Changes
|
|
471
2014
|
|
|
472
|
-
-
|
|
473
|
-
-
|
|
474
|
-
-
|
|
475
|
-
-
|
|
476
|
-
-
|
|
477
|
-
-
|
|
478
|
-
-
|
|
2015
|
+
- Updated dependencies [a4c8d6a]
|
|
2016
|
+
- Updated dependencies [d09b677]
|
|
2017
|
+
- Updated dependencies [6d4aadb]
|
|
2018
|
+
- Updated dependencies [8e6e8cf]
|
|
2019
|
+
- Updated dependencies [c53ef7b]
|
|
2020
|
+
- Updated dependencies [ebb63ce]
|
|
2021
|
+
- Updated dependencies [7cebe87]
|
|
2022
|
+
- Updated dependencies [616690d]
|
|
2023
|
+
- Updated dependencies [f3b595e]
|
|
2024
|
+
- Updated dependencies [91265bb]
|
|
2025
|
+
- Updated dependencies [59fb7c3]
|
|
2026
|
+
- Updated dependencies [bbe18b9]
|
|
2027
|
+
- Updated dependencies [f0c23bc]
|
|
2028
|
+
- Updated dependencies [3420416]
|
|
2029
|
+
- Updated dependencies [495d155]
|
|
2030
|
+
- Updated dependencies [beb499e]
|
|
2031
|
+
- Updated dependencies [6c18543]
|
|
2032
|
+
- Updated dependencies [40ad73e]
|
|
2033
|
+
- Updated dependencies [495d155]
|
|
2034
|
+
- Updated dependencies [f046f8e]
|
|
2035
|
+
- Updated dependencies [6b2972b]
|
|
2036
|
+
- Updated dependencies [3e68768]
|
|
2037
|
+
- @akinon/next@1.34.0-rc.20
|
|
2038
|
+
- @akinon/pz-masterpass@1.34.0-rc.20
|
|
2039
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.20
|
|
2040
|
+
- @akinon/pz-b2b@1.34.0-rc.20
|
|
2041
|
+
- @akinon/pz-gpay@1.34.0-rc.20
|
|
2042
|
+
- @akinon/pz-otp@1.34.0-rc.20
|
|
2043
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.20
|
|
2044
|
+
|
|
2045
|
+
## 1.34.0-rc.19
|
|
2046
|
+
|
|
2047
|
+
### Patch Changes
|
|
2048
|
+
|
|
2049
|
+
- Updated dependencies [c53ef7b]
|
|
2050
|
+
- @akinon/next@1.34.0-rc.19
|
|
2051
|
+
- @akinon/pz-b2b@1.34.0-rc.19
|
|
2052
|
+
- @akinon/pz-gpay@1.34.0-rc.19
|
|
2053
|
+
- @akinon/pz-masterpass@1.34.0-rc.19
|
|
2054
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.19
|
|
2055
|
+
- @akinon/pz-otp@1.34.0-rc.19
|
|
2056
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.19
|
|
2057
|
+
|
|
2058
|
+
## 1.34.0-rc.18
|
|
2059
|
+
|
|
2060
|
+
### Minor Changes
|
|
2061
|
+
|
|
2062
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
2063
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
2064
|
+
|
|
2065
|
+
### Patch Changes
|
|
2066
|
+
|
|
2067
|
+
- Updated dependencies [a4c8d6a]
|
|
2068
|
+
- @akinon/next@1.34.0-rc.18
|
|
2069
|
+
- @akinon/pz-b2b@1.34.0-rc.18
|
|
2070
|
+
- @akinon/pz-gpay@1.34.0-rc.18
|
|
2071
|
+
- @akinon/pz-masterpass@1.34.0-rc.18
|
|
2072
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.18
|
|
2073
|
+
- @akinon/pz-otp@1.34.0-rc.18
|
|
2074
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.18
|
|
2075
|
+
|
|
2076
|
+
## 1.34.0-rc.17
|
|
2077
|
+
|
|
2078
|
+
### Minor Changes
|
|
2079
|
+
|
|
2080
|
+
- 567e4c1: ZERO-2580:Add checked attribute from props to checkbox
|
|
2081
|
+
- d09b677: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
|
|
2082
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
2083
|
+
- ebb63ce: ZERO-2525: Fix category facet removal bug and add close icon to active filters
|
|
2084
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
2085
|
+
- 0d0f36c: ZERO-2598: Fix eslint warnings and update dependencies
|
|
2086
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
2087
|
+
- f0c23bc: ZERO-2135: add custom not found page
|
|
2088
|
+
- 3420416: ZERO-2533: extend eslint config from @akinon/next
|
|
2089
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
2090
|
+
- 6c18543: ZERO-2542:Refactor and show error in OneClickCheckoutButtons
|
|
2091
|
+
- 202f84e: ZERO-2569: Fix static keys
|
|
2092
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
2093
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
2094
|
+
- 12c10a4: ZERO-2570: Category filters routes to absolute url
|
|
2095
|
+
|
|
2096
|
+
### Patch Changes
|
|
2097
|
+
|
|
2098
|
+
- Updated dependencies [d09b677]
|
|
2099
|
+
- Updated dependencies [6d4aadb]
|
|
2100
|
+
- Updated dependencies [8e6e8cf]
|
|
2101
|
+
- Updated dependencies [ebb63ce]
|
|
2102
|
+
- Updated dependencies [7cebe87]
|
|
2103
|
+
- Updated dependencies [616690d]
|
|
2104
|
+
- Updated dependencies [f3b595e]
|
|
2105
|
+
- Updated dependencies [91265bb]
|
|
2106
|
+
- Updated dependencies [59fb7c3]
|
|
2107
|
+
- Updated dependencies [bbe18b9]
|
|
2108
|
+
- Updated dependencies [f0c23bc]
|
|
2109
|
+
- Updated dependencies [3420416]
|
|
2110
|
+
- Updated dependencies [495d155]
|
|
2111
|
+
- Updated dependencies [beb499e]
|
|
2112
|
+
- Updated dependencies [6c18543]
|
|
2113
|
+
- Updated dependencies [40ad73e]
|
|
2114
|
+
- Updated dependencies [495d155]
|
|
2115
|
+
- Updated dependencies [f046f8e]
|
|
2116
|
+
- Updated dependencies [6b2972b]
|
|
2117
|
+
- Updated dependencies [3e68768]
|
|
2118
|
+
- @akinon/next@1.34.0-rc.17
|
|
2119
|
+
- @akinon/pz-masterpass@1.34.0-rc.17
|
|
2120
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.17
|
|
2121
|
+
- @akinon/pz-b2b@1.34.0-rc.17
|
|
2122
|
+
- @akinon/pz-gpay@1.34.0-rc.17
|
|
2123
|
+
- @akinon/pz-otp@1.34.0-rc.17
|
|
2124
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.17
|
|
2125
|
+
|
|
2126
|
+
## 1.34.0-rc.16
|
|
2127
|
+
|
|
2128
|
+
### Patch Changes
|
|
2129
|
+
|
|
2130
|
+
- @akinon/next@1.34.0-rc.16
|
|
2131
|
+
- @akinon/pz-b2b@1.34.0-rc.16
|
|
2132
|
+
- @akinon/pz-gpay@1.34.0-rc.16
|
|
2133
|
+
- @akinon/pz-masterpass@1.34.0-rc.16
|
|
2134
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.16
|
|
2135
|
+
- @akinon/pz-otp@1.34.0-rc.16
|
|
2136
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.16
|
|
2137
|
+
|
|
2138
|
+
## 1.34.0-rc.15
|
|
2139
|
+
|
|
2140
|
+
### Patch Changes
|
|
2141
|
+
|
|
2142
|
+
- @akinon/next@1.34.0-rc.15
|
|
2143
|
+
- @akinon/pz-b2b@1.34.0-rc.15
|
|
2144
|
+
- @akinon/pz-gpay@1.34.0-rc.15
|
|
2145
|
+
- @akinon/pz-masterpass@1.34.0-rc.15
|
|
2146
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.15
|
|
2147
|
+
- @akinon/pz-otp@1.34.0-rc.15
|
|
2148
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.15
|
|
2149
|
+
|
|
2150
|
+
## 1.34.0-rc.14
|
|
2151
|
+
|
|
2152
|
+
### Minor Changes
|
|
2153
|
+
|
|
2154
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
2155
|
+
|
|
2156
|
+
### Patch Changes
|
|
2157
|
+
|
|
2158
|
+
- @akinon/next@1.34.0-rc.14
|
|
2159
|
+
- @akinon/pz-b2b@1.34.0-rc.14
|
|
2160
|
+
- @akinon/pz-gpay@1.34.0-rc.14
|
|
2161
|
+
- @akinon/pz-masterpass@1.34.0-rc.14
|
|
2162
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.14
|
|
2163
|
+
- @akinon/pz-otp@1.34.0-rc.14
|
|
2164
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.14
|
|
2165
|
+
|
|
2166
|
+
## 1.34.0-rc.13
|
|
2167
|
+
|
|
2168
|
+
### Minor Changes
|
|
2169
|
+
|
|
2170
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
2171
|
+
|
|
2172
|
+
### Patch Changes
|
|
2173
|
+
|
|
2174
|
+
- @akinon/next@1.34.0-rc.13
|
|
2175
|
+
- @akinon/pz-b2b@1.34.0-rc.13
|
|
2176
|
+
- @akinon/pz-gpay@1.34.0-rc.13
|
|
2177
|
+
- @akinon/pz-masterpass@1.34.0-rc.13
|
|
2178
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.13
|
|
2179
|
+
- @akinon/pz-otp@1.34.0-rc.13
|
|
2180
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.13
|
|
2181
|
+
|
|
2182
|
+
## 1.34.0-rc.12
|
|
2183
|
+
|
|
2184
|
+
### Patch Changes
|
|
2185
|
+
|
|
2186
|
+
- Updated dependencies [616690d]
|
|
2187
|
+
- @akinon/next@1.34.0-rc.12
|
|
2188
|
+
- @akinon/pz-b2b@1.34.0-rc.12
|
|
2189
|
+
- @akinon/pz-gpay@1.34.0-rc.12
|
|
2190
|
+
- @akinon/pz-masterpass@1.34.0-rc.12
|
|
2191
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.12
|
|
2192
|
+
- @akinon/pz-otp@1.34.0-rc.12
|
|
2193
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.12
|
|
2194
|
+
|
|
2195
|
+
## 1.34.0-rc.11
|
|
2196
|
+
|
|
2197
|
+
### Patch Changes
|
|
2198
|
+
|
|
2199
|
+
- Updated dependencies [8e6e8cf]
|
|
2200
|
+
- @akinon/next@1.34.0-rc.11
|
|
2201
|
+
- @akinon/pz-b2b@1.34.0-rc.11
|
|
2202
|
+
- @akinon/pz-gpay@1.34.0-rc.11
|
|
2203
|
+
- @akinon/pz-masterpass@1.34.0-rc.11
|
|
2204
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.11
|
|
2205
|
+
- @akinon/pz-otp@1.34.0-rc.11
|
|
2206
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.11
|
|
2207
|
+
|
|
2208
|
+
## 1.34.0-rc.10
|
|
2209
|
+
|
|
2210
|
+
### Patch Changes
|
|
2211
|
+
|
|
2212
|
+
- Updated dependencies [bbe18b9]
|
|
2213
|
+
- @akinon/next@1.34.0-rc.10
|
|
2214
|
+
- @akinon/pz-b2b@1.34.0-rc.10
|
|
2215
|
+
- @akinon/pz-gpay@1.34.0-rc.10
|
|
2216
|
+
- @akinon/pz-masterpass@1.34.0-rc.10
|
|
2217
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.10
|
|
2218
|
+
- @akinon/pz-otp@1.34.0-rc.10
|
|
2219
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.10
|
|
2220
|
+
|
|
2221
|
+
## 1.34.0-rc.9
|
|
2222
|
+
|
|
2223
|
+
### Minor Changes
|
|
2224
|
+
|
|
2225
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
2226
|
+
|
|
2227
|
+
### Patch Changes
|
|
2228
|
+
|
|
2229
|
+
- Updated dependencies [beb499e]
|
|
2230
|
+
- @akinon/next@1.34.0-rc.9
|
|
2231
|
+
- @akinon/pz-b2b@1.34.0-rc.9
|
|
2232
|
+
- @akinon/pz-gpay@1.34.0-rc.9
|
|
2233
|
+
- @akinon/pz-masterpass@1.34.0-rc.9
|
|
2234
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.9
|
|
2235
|
+
- @akinon/pz-otp@1.34.0-rc.9
|
|
2236
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.9
|
|
2237
|
+
|
|
2238
|
+
## 1.34.0-rc.8
|
|
2239
|
+
|
|
2240
|
+
### Minor Changes
|
|
2241
|
+
|
|
2242
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
2243
|
+
|
|
2244
|
+
### Patch Changes
|
|
2245
|
+
|
|
2246
|
+
- Updated dependencies [91265bb]
|
|
2247
|
+
- @akinon/next@1.34.0-rc.8
|
|
2248
|
+
- @akinon/pz-b2b@1.34.0-rc.8
|
|
2249
|
+
- @akinon/pz-gpay@1.34.0-rc.8
|
|
2250
|
+
- @akinon/pz-masterpass@1.34.0-rc.8
|
|
2251
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.8
|
|
2252
|
+
- @akinon/pz-otp@1.34.0-rc.8
|
|
2253
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.8
|
|
2254
|
+
|
|
2255
|
+
## 1.34.0-rc.7
|
|
2256
|
+
|
|
2257
|
+
### Minor Changes
|
|
2258
|
+
|
|
2259
|
+
- 0d0f36c: ZERO-2598: Fix eslint warnings and update dependencies
|
|
2260
|
+
|
|
2261
|
+
### Patch Changes
|
|
2262
|
+
|
|
2263
|
+
- @akinon/next@1.34.0-rc.7
|
|
2264
|
+
- @akinon/pz-b2b@1.34.0-rc.7
|
|
2265
|
+
- @akinon/pz-gpay@1.34.0-rc.7
|
|
2266
|
+
- @akinon/pz-masterpass@1.34.0-rc.7
|
|
2267
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.7
|
|
2268
|
+
- @akinon/pz-otp@1.34.0-rc.7
|
|
2269
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.7
|
|
2270
|
+
|
|
2271
|
+
## 1.34.0-rc.6
|
|
2272
|
+
|
|
2273
|
+
### Minor Changes
|
|
2274
|
+
|
|
2275
|
+
- 567e4c1: ZERO-2580:Add checked attribute from props to checkbox
|
|
2276
|
+
- d09b677: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
|
|
2277
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
2278
|
+
- ebb63ce: ZERO-2525: Fix category facet removal bug and add close icon to active filters
|
|
2279
|
+
- f0c23bc: ZERO-2135: add custom not found page
|
|
2280
|
+
- 3420416: ZERO-2533: extend eslint config from @akinon/next
|
|
2281
|
+
- 6c18543: ZERO-2542:Refactor and show error in OneClickCheckoutButtons
|
|
2282
|
+
- 202f84e: ZERO-2569: Fix static keys
|
|
2283
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
2284
|
+
- 12c10a4: ZERO-2570: Category filters routes to absolute url
|
|
2285
|
+
|
|
2286
|
+
### Patch Changes
|
|
2287
|
+
|
|
2288
|
+
- Updated dependencies [d09b677]
|
|
2289
|
+
- Updated dependencies [6d4aadb]
|
|
2290
|
+
- Updated dependencies [ebb63ce]
|
|
2291
|
+
- Updated dependencies [7cebe87]
|
|
2292
|
+
- Updated dependencies [f3b595e]
|
|
2293
|
+
- Updated dependencies [59fb7c3]
|
|
2294
|
+
- Updated dependencies [f0c23bc]
|
|
2295
|
+
- Updated dependencies [3420416]
|
|
2296
|
+
- Updated dependencies [495d155]
|
|
2297
|
+
- Updated dependencies [6c18543]
|
|
2298
|
+
- Updated dependencies [40ad73e]
|
|
2299
|
+
- Updated dependencies [495d155]
|
|
2300
|
+
- Updated dependencies [f046f8e]
|
|
2301
|
+
- Updated dependencies [6b2972b]
|
|
2302
|
+
- Updated dependencies [3e68768]
|
|
2303
|
+
- @akinon/next@1.34.0-rc.6
|
|
2304
|
+
- @akinon/pz-masterpass@1.34.0-rc.6
|
|
2305
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.6
|
|
2306
|
+
- @akinon/pz-b2b@1.34.0-rc.6
|
|
2307
|
+
- @akinon/pz-gpay@1.34.0-rc.6
|
|
2308
|
+
- @akinon/pz-otp@1.34.0-rc.6
|
|
2309
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.6
|
|
479
2310
|
|
|
480
2311
|
## 1.33.2
|
|
481
2312
|
|