@akinon/projectzero 1.48.0-rc.7 → 1.49.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/CHANGELOG.md +2 -62
  2. package/README.md +2 -3
  3. package/app-template/.gitignore +0 -2
  4. package/app-template/.lintstagedrc.js +4 -5
  5. package/app-template/CHANGELOG.md +64 -1438
  6. package/app-template/docs/basic-setup.md +1 -1
  7. package/app-template/docs/plugins.md +7 -7
  8. package/app-template/package.json +20 -22
  9. package/app-template/public/locales/en/account.json +4 -4
  10. package/app-template/public/locales/tr/account.json +1 -1
  11. package/app-template/src/app/[commerce]/[locale]/[currency]/account/address/page.tsx +1 -1
  12. package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +4 -4
  13. package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +0 -1
  14. package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +2 -5
  15. package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +8 -12
  16. package/app-template/src/components/checkbox.tsx +2 -2
  17. package/app-template/src/components/input.tsx +7 -19
  18. package/app-template/src/components/pagination.tsx +18 -13
  19. package/app-template/src/components/price.tsx +4 -9
  20. package/app-template/src/redux/reducers/category.ts +1 -7
  21. package/app-template/src/settings.js +1 -6
  22. package/app-template/src/views/account/address-card.tsx +2 -2
  23. package/app-template/src/views/account/address-form.tsx +7 -22
  24. package/app-template/src/views/account/contact-form.tsx +6 -23
  25. package/app-template/src/views/account/favorite-item.tsx +2 -2
  26. package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +1 -5
  27. package/app-template/src/views/breadcrumb.tsx +1 -4
  28. package/app-template/src/views/category/category-active-filters.tsx +6 -16
  29. package/app-template/src/views/category/category-info.tsx +17 -31
  30. package/app-template/src/views/category/filters/index.tsx +108 -16
  31. package/app-template/src/views/category/layout.tsx +3 -5
  32. package/app-template/src/views/checkout/steps/payment/options/credit-card/index.tsx +4 -33
  33. package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +37 -43
  34. package/app-template/src/views/checkout/steps/payment/payment-option-buttons.tsx +3 -19
  35. package/app-template/src/views/checkout/steps/shipping/address-box.tsx +2 -2
  36. package/app-template/src/views/checkout/steps/shipping/addresses.tsx +1 -1
  37. package/app-template/src/views/checkout/steps/shipping/shipping-options.tsx +37 -230
  38. package/app-template/src/views/find-in-store/index.tsx +3 -2
  39. package/app-template/src/views/header/mobile-menu.tsx +8 -25
  40. package/app-template/src/views/product/product-info.tsx +2 -0
  41. package/app-template/tsconfig.json +4 -14
  42. package/app-template/yarn.lock +1953 -1824
  43. package/commands/create.ts +5 -29
  44. package/dist/commands/create.js +2 -25
  45. package/package.json +2 -2
  46. package/app-template/package-lock.json +0 -29303
  47. package/app-template/src/app/[commerce]/[locale]/[currency]/[...prettyurl]/page.tsx +0 -8
  48. package/app-template/src/views/category/filters/filter-item.tsx +0 -163
@@ -1,358 +1,48 @@
1
1
  # projectzeronext
2
2
 
3
- ## 1.48.0-rc.7
3
+ ## 1.49.0
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies [26b809f]
8
- - @akinon/next@1.48.0-rc.7
9
- - @akinon/pz-akifast@1.48.0-rc.7
10
- - @akinon/pz-b2b@1.48.0-rc.7
11
- - @akinon/pz-basket-gift-pack@1.48.0-rc.7
12
- - @akinon/pz-bkm@1.48.0-rc.7
13
- - @akinon/pz-checkout-gift-pack@1.48.0-rc.7
14
- - @akinon/pz-click-collect@1.48.0-rc.7
15
- - @akinon/pz-credit-payment@1.48.0-rc.7
16
- - @akinon/pz-gpay@1.48.0-rc.7
17
- - @akinon/pz-masterpass@1.48.0-rc.7
18
- - @akinon/pz-one-click-checkout@1.48.0-rc.7
19
- - @akinon/pz-otp@1.48.0-rc.7
20
- - @akinon/pz-pay-on-delivery@1.48.0-rc.7
21
-
22
- ## 1.48.0-rc.6
23
-
24
- ### Patch Changes
25
-
8
+ - Updated dependencies [20da358]
26
9
  - Updated dependencies [04115e5]
27
- - @akinon/next@1.48.0-rc.6
28
- - @akinon/pz-akifast@1.48.0-rc.6
29
- - @akinon/pz-b2b@1.48.0-rc.6
30
- - @akinon/pz-basket-gift-pack@1.48.0-rc.6
31
- - @akinon/pz-bkm@1.48.0-rc.6
32
- - @akinon/pz-checkout-gift-pack@1.48.0-rc.6
33
- - @akinon/pz-click-collect@1.48.0-rc.6
34
- - @akinon/pz-credit-payment@1.48.0-rc.6
35
- - @akinon/pz-gpay@1.48.0-rc.6
36
- - @akinon/pz-masterpass@1.48.0-rc.6
37
- - @akinon/pz-one-click-checkout@1.48.0-rc.6
38
- - @akinon/pz-otp@1.48.0-rc.6
39
- - @akinon/pz-pay-on-delivery@1.48.0-rc.6
40
-
41
- ## 1.48.0-rc.5
10
+ - Updated dependencies [fa88889]
11
+ - @akinon/next@1.49.0
12
+ - @akinon/pz-akifast@1.49.0
13
+ - @akinon/pz-b2b@1.49.0
14
+ - @akinon/pz-basket-gift-pack@1.49.0
15
+ - @akinon/pz-bkm@1.49.0
16
+ - @akinon/pz-checkout-gift-pack@1.49.0
17
+ - @akinon/pz-click-collect@1.49.0
18
+ - @akinon/pz-credit-payment@1.49.0
19
+ - @akinon/pz-gpay@1.49.0
20
+ - @akinon/pz-masterpass@1.49.0
21
+ - @akinon/pz-one-click-checkout@1.49.0
22
+ - @akinon/pz-otp@1.49.0
23
+ - @akinon/pz-pay-on-delivery@1.49.0
42
24
 
43
- ### Patch Changes
44
-
45
- - Updated dependencies [20da358]
46
- - @akinon/next@1.48.0-rc.5
47
- - @akinon/pz-akifast@1.48.0-rc.5
48
- - @akinon/pz-b2b@1.48.0-rc.5
49
- - @akinon/pz-basket-gift-pack@1.48.0-rc.5
50
- - @akinon/pz-bkm@1.48.0-rc.5
51
- - @akinon/pz-checkout-gift-pack@1.48.0-rc.5
52
- - @akinon/pz-click-collect@1.48.0-rc.5
53
- - @akinon/pz-credit-payment@1.48.0-rc.5
54
- - @akinon/pz-gpay@1.48.0-rc.5
55
- - @akinon/pz-masterpass@1.48.0-rc.5
56
- - @akinon/pz-one-click-checkout@1.48.0-rc.5
57
- - @akinon/pz-otp@1.48.0-rc.5
58
- - @akinon/pz-pay-on-delivery@1.48.0-rc.5
59
-
60
- ## 1.48.0-rc.4
61
-
62
- ### Patch Changes
63
-
64
- - Updated dependencies [5dfeea0]
65
- - @akinon/next@1.48.0-rc.4
66
- - @akinon/pz-akifast@1.48.0-rc.4
67
- - @akinon/pz-b2b@1.48.0-rc.4
68
- - @akinon/pz-basket-gift-pack@1.48.0-rc.4
69
- - @akinon/pz-bkm@1.48.0-rc.4
70
- - @akinon/pz-checkout-gift-pack@1.48.0-rc.4
71
- - @akinon/pz-click-collect@1.48.0-rc.4
72
- - @akinon/pz-credit-payment@1.48.0-rc.4
73
- - @akinon/pz-gpay@1.48.0-rc.4
74
- - @akinon/pz-masterpass@1.48.0-rc.4
75
- - @akinon/pz-one-click-checkout@1.48.0-rc.4
76
- - @akinon/pz-otp@1.48.0-rc.4
77
- - @akinon/pz-pay-on-delivery@1.48.0-rc.4
78
-
79
- ## 1.48.0-rc.3
25
+ ## 1.48.0
80
26
 
81
27
  ### Minor Changes
82
28
 
83
- - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
84
- - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
85
- - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
86
- - 97b8bdc9: ZERO-2724: Remove onClick event in shipping options component
87
- - 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
88
- - 7521265: ZERO-2787: Fix hover classname for favorite item
89
- - 8217463: ZERO-2887: Add LoaderSpinner to Filters component
90
- - 27a5296d: ZERO-2631:Fix Checkbox Click
91
- - 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
92
- - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
93
- - e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
94
- - 52c1373: ZERO-2619: Added fix flag for the staged linter
95
- - 552ee8a: ZERO-2777: fix link component usage
96
- - 03c4c3eb: ZERO-2731: Update Project Zero CLI command
97
- - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
98
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
99
- - 0d3a913e: ZERO-2725: Update decimal scale in Price component
100
- - 778a9a0b: ZERO-2740: Upgrade next to 14.2.4
101
- - 9b6bf91e: ZERO-2660: Change campaings to campaigns
102
- - 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
103
- - 74a12699: ZERO-2658:Edit product name clickability on completed order page
104
- - 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
105
- - d3474c64: ZERO-2655: Add data source shipping option
106
- - d2f0f15c: ZERO-2723: Update sentry version and dependencies
107
- - 75080fd6: ZERO-2630: Add max limit to postcode area
108
- - 9609eb2: ZERO-2779: Upgrade for tailwind
109
- - 91265bba: ZERO-2551: Improve pretty url and caching performance
110
- - 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
111
- - 959e1fa: ZERO-2778: Upgrade for nextjs
112
- - 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
113
- - 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
114
- - dfabc06: ZERO-2836: Upgrade version for tailwind
115
- - dff0d595: ZERO-2659: add formData support to proxy api requests
116
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
117
- - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
118
- - beb499e6: ZERO-2551: Add new tsconfig paths
119
29
  - f45aa87: ZERO-2904: Upgrade version for tailwindcss
120
- - fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
121
- - 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
122
- - e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
123
- - f046f8e0: ZERO-2575: update version for react-number-format
124
- - b9273fd: ZERO-2889: add host headers to requests
125
- - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
126
-
127
- ### Patch Changes
128
-
129
- - Updated dependencies [90282b53]
130
- - Updated dependencies [50b9069]
131
- - Updated dependencies [572d2e84]
132
- - Updated dependencies [a4c8d6a9]
133
- - Updated dependencies [fda5b92]
134
- - Updated dependencies [2d9b2b2]
135
- - Updated dependencies [c53ea3e6]
136
- - Updated dependencies [d93a507]
137
- - Updated dependencies [8d9ac9a]
138
- - Updated dependencies [18e8197]
139
- - Updated dependencies [714e0b46]
140
- - Updated dependencies [70279e7]
141
- - Updated dependencies [6c25f66]
142
- - Updated dependencies [bc2b411]
143
- - Updated dependencies [3bf2dd9]
144
- - Updated dependencies [e9541a1]
145
- - Updated dependencies [c53ef7b9]
146
- - Updated dependencies [9d94f7e]
147
- - Updated dependencies [2e6104d]
148
- - Updated dependencies [64699d3]
149
- - Updated dependencies [0d3a913e]
150
- - Updated dependencies [1448a96e]
151
- - Updated dependencies [1ec2e9d]
152
- - Updated dependencies [d6edb1d]
153
- - Updated dependencies [d3474c64]
154
- - Updated dependencies [75080fd6]
155
- - Updated dependencies [17f8752]
156
- - Updated dependencies [c45b62c]
157
- - Updated dependencies [91265bba]
158
- - Updated dependencies [bbe18b9f]
159
- - Updated dependencies [d409996]
160
- - Updated dependencies [4920742]
161
- - Updated dependencies [12a873e]
162
- - Updated dependencies [69ca080]
163
- - Updated dependencies [7e56d6b]
164
- - Updated dependencies [94b6928]
165
- - Updated dependencies [98bb8dcd]
166
- - Updated dependencies [46b7aad]
167
- - Updated dependencies [dcc8a150]
168
- - Updated dependencies [8f47cca]
169
- - Updated dependencies [fad27689]
170
- - Updated dependencies [dff0d595]
171
- - Updated dependencies [fdd0b41]
172
- - Updated dependencies [eecb282]
173
- - Updated dependencies [f2c325c]
174
- - Updated dependencies [9e25a64]
175
- - Updated dependencies [beb499e6]
176
- - Updated dependencies [146ea39]
177
- - Updated dependencies [f2c92d5]
178
- - Updated dependencies [7bd3d99]
179
- - Updated dependencies [c47be30d]
180
- - Updated dependencies [e9a46acb]
181
- - Updated dependencies [f046f8e0]
182
- - Updated dependencies [b9273fd]
183
- - Updated dependencies [86d25315]
184
- - Updated dependencies [c670bd4]
185
- - Updated dependencies [3f9b8d7]
186
- - @akinon/next@1.48.0-rc.3
187
- - @akinon/pz-checkout-gift-pack@1.48.0-rc.3
188
- - @akinon/pz-one-click-checkout@1.48.0-rc.3
189
- - @akinon/pz-basket-gift-pack@1.48.0-rc.3
190
- - @akinon/pz-click-collect@1.48.0-rc.3
191
- - @akinon/pz-masterpass@1.48.0-rc.3
192
- - @akinon/pz-akifast@1.48.0-rc.3
193
- - @akinon/pz-gpay@1.48.0-rc.3
194
- - @akinon/pz-b2b@1.48.0-rc.3
195
- - @akinon/pz-bkm@1.48.0-rc.3
196
- - @akinon/pz-otp@1.48.0-rc.3
197
- - @akinon/pz-pay-on-delivery@1.48.0-rc.3
198
- - @akinon/pz-credit-payment@1.48.0-rc.3
199
-
200
- ## 1.48.0-rc.2
201
-
202
- ### Minor Changes
203
-
204
- - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
205
-
206
- ### Patch Changes
207
-
208
- - Updated dependencies [2e6104d]
209
- - @akinon/next@1.48.0-rc.2
210
- - @akinon/pz-akifast@1.48.0-rc.2
211
- - @akinon/pz-b2b@1.48.0-rc.2
212
- - @akinon/pz-basket-gift-pack@1.48.0-rc.2
213
- - @akinon/pz-bkm@1.48.0-rc.2
214
- - @akinon/pz-checkout-gift-pack@1.48.0-rc.2
215
- - @akinon/pz-click-collect@1.48.0-rc.2
216
- - @akinon/pz-credit-payment@1.48.0-rc.2
217
- - @akinon/pz-gpay@1.48.0-rc.2
218
- - @akinon/pz-masterpass@1.48.0-rc.2
219
- - @akinon/pz-one-click-checkout@1.48.0-rc.2
220
- - @akinon/pz-otp@1.48.0-rc.2
221
- - @akinon/pz-pay-on-delivery@1.48.0-rc.2
222
-
223
- ## 1.48.0-rc.1
224
30
 
225
31
  ### Patch Changes
226
32
 
227
- - Updated dependencies [fdd0b41]
228
- - @akinon/next@1.48.0-rc.1
229
- - @akinon/pz-akifast@1.48.0-rc.1
230
- - @akinon/pz-b2b@1.48.0-rc.1
231
- - @akinon/pz-basket-gift-pack@1.48.0-rc.1
232
- - @akinon/pz-bkm@1.48.0-rc.1
233
- - @akinon/pz-checkout-gift-pack@1.48.0-rc.1
234
- - @akinon/pz-click-collect@1.48.0-rc.1
235
- - @akinon/pz-credit-payment@1.48.0-rc.1
236
- - @akinon/pz-gpay@1.48.0-rc.1
237
- - @akinon/pz-masterpass@1.48.0-rc.1
238
- - @akinon/pz-one-click-checkout@1.48.0-rc.1
239
- - @akinon/pz-otp@1.48.0-rc.1
240
- - @akinon/pz-pay-on-delivery@1.48.0-rc.1
241
-
242
- ## 1.48.0-rc.0
243
-
244
- ### Minor Changes
245
-
246
- - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
247
- - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
248
- - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
249
- - 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
250
- - 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
251
- - 7521265: ZERO-2787: Fix hover classname for favorite item
252
- - 27a5296d: ZERO-2631:Fix Checkbox Click
253
- - 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
254
- - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
255
- - e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
256
- - 52c1373: ZERO-2619: Added fix flag for the staged linter
257
- - 552ee8a: ZERO-2777: fix link component usage
258
- - 03c4c3e: ZERO-2731: Update Project Zero CLI command
259
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
260
- - 0d3a913: ZERO-2725: Update decimal scale in Price component
261
- - 778a9a0: ZERO-2740: Upgrade next to 14.2.4
262
- - 9b6bf91e: ZERO-2660: Change campaings to campaigns
263
- - 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
264
- - 74a12699: ZERO-2658:Edit product name clickability on completed order page
265
- - 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
266
- - d3474c6: ZERO-2655: Add data source shipping option
267
- - d2f0f15: ZERO-2723: Update sentry version and dependencies
268
- - 75080fd6: ZERO-2630: Add max limit to postcode area
269
- - 9609eb2: ZERO-2779: Upgrade for tailwind
270
- - 91265bba: ZERO-2551: Improve pretty url and caching performance
271
- - 959e1fa: ZERO-2778: Upgrade for nextjs
272
- - 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
273
- - 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
274
- - dfabc06: ZERO-2836: Upgrade version for tailwind
275
- - dff0d595: ZERO-2659: add formData support to proxy api requests
276
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
277
- - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
278
- - beb499e6: ZERO-2551: Add new tsconfig paths
279
- - fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
280
- - 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
281
- - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
282
- - f046f8e0: ZERO-2575: update version for react-number-format
283
- - b9273fd: ZERO-2889: add host headers to requests
284
- - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
285
-
286
- ### Patch Changes
287
-
288
- - Updated dependencies [90282b5]
289
- - Updated dependencies [50b9069]
290
- - Updated dependencies [572d2e8]
291
- - Updated dependencies [a4c8d6a9]
292
- - Updated dependencies [fda5b92]
293
- - Updated dependencies [2d9b2b2]
294
- - Updated dependencies [c53ea3e6]
295
- - Updated dependencies [d93a507]
296
- - Updated dependencies [8d9ac9a]
297
- - Updated dependencies [18e8197]
298
- - Updated dependencies [714e0b4]
299
- - Updated dependencies [70279e7]
300
- - Updated dependencies [6c25f66]
301
- - Updated dependencies [bc2b411]
302
- - Updated dependencies [3bf2dd9]
303
- - Updated dependencies [e9541a1]
304
- - Updated dependencies [c53ef7b9]
305
- - Updated dependencies [9d94f7e]
306
- - Updated dependencies [64699d3]
307
- - Updated dependencies [0d3a913]
308
- - Updated dependencies [1448a96e]
309
- - Updated dependencies [1ec2e9d]
310
- - Updated dependencies [d6edb1d]
311
- - Updated dependencies [d3474c6]
312
- - Updated dependencies [75080fd6]
313
- - Updated dependencies [17f8752]
314
- - Updated dependencies [c45b62c]
315
- - Updated dependencies [91265bba]
316
- - Updated dependencies [bbe18b9f]
317
- - Updated dependencies [d409996]
318
- - Updated dependencies [4920742]
319
- - Updated dependencies [12a873e]
320
- - Updated dependencies [69ca080]
321
- - Updated dependencies [7e56d6b]
322
- - Updated dependencies [94b6928]
323
- - Updated dependencies [98bb8dc]
324
- - Updated dependencies [46b7aad]
325
- - Updated dependencies [dcc8a15]
326
- - Updated dependencies [8f47cca]
327
- - Updated dependencies [fad2768]
328
- - Updated dependencies [dff0d595]
329
- - Updated dependencies [eecb282]
330
- - Updated dependencies [f2c325c]
331
- - Updated dependencies [9e25a64]
332
- - Updated dependencies [beb499e6]
333
- - Updated dependencies [146ea39]
334
- - Updated dependencies [f2c92d5]
335
- - Updated dependencies [7bd3d99]
336
- - Updated dependencies [c47be30]
337
- - Updated dependencies [e9a46ac]
338
- - Updated dependencies [f046f8e0]
339
- - Updated dependencies [b9273fd]
340
- - Updated dependencies [86d2531]
341
- - Updated dependencies [c670bd4]
342
- - Updated dependencies [3f9b8d7]
343
- - @akinon/next@1.48.0-rc.0
344
- - @akinon/pz-checkout-gift-pack@1.48.0-rc.0
345
- - @akinon/pz-one-click-checkout@1.48.0-rc.0
346
- - @akinon/pz-basket-gift-pack@1.48.0-rc.0
347
- - @akinon/pz-click-collect@1.48.0-rc.0
348
- - @akinon/pz-masterpass@1.48.0-rc.0
349
- - @akinon/pz-akifast@1.48.0-rc.0
350
- - @akinon/pz-gpay@1.48.0-rc.0
351
- - @akinon/pz-b2b@1.48.0-rc.0
352
- - @akinon/pz-bkm@1.48.0-rc.0
353
- - @akinon/pz-otp@1.48.0-rc.0
354
- - @akinon/pz-pay-on-delivery@1.48.0-rc.0
355
- - @akinon/pz-credit-payment@1.48.0-rc.0
33
+ - @akinon/next@1.48.0
34
+ - @akinon/pz-akifast@1.48.0
35
+ - @akinon/pz-b2b@1.48.0
36
+ - @akinon/pz-basket-gift-pack@1.48.0
37
+ - @akinon/pz-bkm@1.48.0
38
+ - @akinon/pz-checkout-gift-pack@1.48.0
39
+ - @akinon/pz-click-collect@1.48.0
40
+ - @akinon/pz-credit-payment@1.48.0
41
+ - @akinon/pz-gpay@1.48.0
42
+ - @akinon/pz-masterpass@1.48.0
43
+ - @akinon/pz-one-click-checkout@1.48.0
44
+ - @akinon/pz-otp@1.48.0
45
+ - @akinon/pz-pay-on-delivery@1.48.0
356
46
 
357
47
  ## 1.47.0
358
48
 
@@ -400,255 +90,20 @@
400
90
 
401
91
  ### Patch Changes
402
92
 
403
- - Updated dependencies [90282b5]
404
- - Updated dependencies [50b9069]
405
- - Updated dependencies [572d2e8]
406
- - Updated dependencies [a4c8d6a9]
407
- - Updated dependencies [fda5b92]
408
- - Updated dependencies [2d9b2b2]
409
- - Updated dependencies [c53ea3e]
410
- - Updated dependencies [8d9ac9a]
411
- - Updated dependencies [18e8197]
412
- - Updated dependencies [714e0b4]
413
- - Updated dependencies [70279e7]
414
- - Updated dependencies [6c25f66]
415
- - Updated dependencies [bc2b411]
416
- - Updated dependencies [3bf2dd9]
417
- - Updated dependencies [e9541a1]
418
- - Updated dependencies [c53ef7b9]
419
- - Updated dependencies [9d94f7e]
420
- - Updated dependencies [64699d3]
421
- - Updated dependencies [0d3a913]
422
- - Updated dependencies [1448a96e]
423
- - Updated dependencies [d6edb1d]
424
- - Updated dependencies [d3474c6]
425
- - Updated dependencies [75080fd6]
426
- - Updated dependencies [17f8752]
427
- - Updated dependencies [c45b62c]
428
- - Updated dependencies [91265bba]
429
- - Updated dependencies [bbe18b9f]
430
- - Updated dependencies [d409996]
431
- - Updated dependencies [4920742]
432
- - Updated dependencies [69ca080]
433
- - Updated dependencies [7e56d6b]
434
- - Updated dependencies [94b6928]
435
- - Updated dependencies [98bb8dc]
436
- - Updated dependencies [46b7aad]
437
- - Updated dependencies [dcc8a15]
438
- - Updated dependencies [8f47cca]
439
- - Updated dependencies [fad2768]
440
- - Updated dependencies [dff0d595]
441
- - Updated dependencies [eecb282]
442
- - Updated dependencies [f2c325c]
443
- - Updated dependencies [9e25a64]
444
- - Updated dependencies [beb499e6]
445
- - Updated dependencies [948eb42]
446
- - Updated dependencies [146ea39]
447
- - Updated dependencies [f2c92d5]
448
- - Updated dependencies [7bd3d99]
449
- - Updated dependencies [c47be30]
450
- - Updated dependencies [e9a46ac]
451
- - Updated dependencies [f046f8e0]
452
- - Updated dependencies [86d2531]
453
- - Updated dependencies [3f9b8d7]
454
- - @akinon/next@1.45.0-rc.5
455
- - @akinon/pz-checkout-gift-pack@1.45.0-rc.5
456
- - @akinon/pz-one-click-checkout@1.45.0-rc.5
457
- - @akinon/pz-basket-gift-pack@1.45.0-rc.5
458
- - @akinon/pz-click-collect@1.45.0-rc.5
459
- - @akinon/pz-masterpass@1.45.0-rc.5
460
- - @akinon/pz-akifast@1.45.0-rc.5
461
- - @akinon/pz-gpay@1.45.0-rc.5
462
- - @akinon/pz-b2b@1.45.0-rc.5
463
- - @akinon/pz-bkm@1.45.0-rc.5
464
- - @akinon/pz-otp@1.45.0-rc.5
465
- - @akinon/pz-pay-on-delivery@1.45.0-rc.5
466
- - @akinon/pz-credit-payment@1.45.0-rc.5
467
-
468
- ## 1.45.0-rc.4
469
-
470
- ### Patch Changes
471
-
472
- - Updated dependencies [8f47cca]
473
- - @akinon/next@1.45.0-rc.4
474
- - @akinon/pz-akifast@1.45.0-rc.4
475
- - @akinon/pz-b2b@1.45.0-rc.4
476
- - @akinon/pz-basket-gift-pack@1.45.0-rc.4
477
- - @akinon/pz-bkm@1.45.0-rc.4
478
- - @akinon/pz-checkout-gift-pack@1.45.0-rc.4
479
- - @akinon/pz-click-collect@1.45.0-rc.4
480
- - @akinon/pz-credit-payment@1.45.0-rc.4
481
- - @akinon/pz-gpay@1.45.0-rc.4
482
- - @akinon/pz-masterpass@1.45.0-rc.4
483
- - @akinon/pz-one-click-checkout@1.45.0-rc.4
484
- - @akinon/pz-otp@1.45.0-rc.4
485
- - @akinon/pz-pay-on-delivery@1.45.0-rc.4
486
-
487
- ## 1.45.0-rc.3
488
-
489
- ### Patch Changes
490
-
491
- - Updated dependencies [948eb42]
492
- - @akinon/next@1.45.0-rc.3
493
- - @akinon/pz-akifast@1.45.0-rc.3
494
- - @akinon/pz-b2b@1.45.0-rc.3
495
- - @akinon/pz-basket-gift-pack@1.45.0-rc.3
496
- - @akinon/pz-bkm@1.45.0-rc.3
497
- - @akinon/pz-checkout-gift-pack@1.45.0-rc.3
498
- - @akinon/pz-click-collect@1.45.0-rc.3
499
- - @akinon/pz-credit-payment@1.45.0-rc.3
500
- - @akinon/pz-gpay@1.45.0-rc.3
501
- - @akinon/pz-masterpass@1.45.0-rc.3
502
- - @akinon/pz-one-click-checkout@1.45.0-rc.3
503
- - @akinon/pz-otp@1.45.0-rc.3
504
- - @akinon/pz-pay-on-delivery@1.45.0-rc.3
505
-
506
- ## 1.45.0-rc.2
507
-
508
- ### Minor Changes
509
-
510
- - dfabc06: ZERO-2836: Upgrade version for tailwind
511
-
512
- ### Patch Changes
513
-
514
- - Updated dependencies [c45b62c]
515
- - Updated dependencies [f2c325c]
516
- - @akinon/next@1.45.0-rc.2
517
- - @akinon/pz-b2b@1.45.0-rc.2
518
- - @akinon/pz-akifast@1.45.0-rc.2
519
- - @akinon/pz-basket-gift-pack@1.45.0-rc.2
520
- - @akinon/pz-bkm@1.45.0-rc.2
521
- - @akinon/pz-checkout-gift-pack@1.45.0-rc.2
522
- - @akinon/pz-click-collect@1.45.0-rc.2
523
- - @akinon/pz-credit-payment@1.45.0-rc.2
524
- - @akinon/pz-gpay@1.45.0-rc.2
525
- - @akinon/pz-masterpass@1.45.0-rc.2
526
- - @akinon/pz-one-click-checkout@1.45.0-rc.2
527
- - @akinon/pz-otp@1.45.0-rc.2
528
- - @akinon/pz-pay-on-delivery@1.45.0-rc.2
529
-
530
- ## 1.45.0-rc.1
531
-
532
- ### Patch Changes
533
-
534
- - Updated dependencies [7e56d6b]
535
- - @akinon/next@1.45.0-rc.1
536
- - @akinon/pz-akifast@1.45.0-rc.1
537
- - @akinon/pz-b2b@1.45.0-rc.1
538
- - @akinon/pz-basket-gift-pack@1.45.0-rc.1
539
- - @akinon/pz-bkm@1.45.0-rc.1
540
- - @akinon/pz-checkout-gift-pack@1.45.0-rc.1
541
- - @akinon/pz-click-collect@1.45.0-rc.1
542
- - @akinon/pz-credit-payment@1.45.0-rc.1
543
- - @akinon/pz-gpay@1.45.0-rc.1
544
- - @akinon/pz-masterpass@1.45.0-rc.1
545
- - @akinon/pz-one-click-checkout@1.45.0-rc.1
546
- - @akinon/pz-otp@1.45.0-rc.1
547
- - @akinon/pz-pay-on-delivery@1.45.0-rc.1
548
-
549
- ## 1.45.0-rc.0
550
-
551
- ### Minor Changes
552
-
553
- - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
554
- - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
555
- - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
556
- - 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
557
- - 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
558
- - 7521265: ZERO-2787: Fix hover classname for favorite item
559
- - 27a5296: ZERO-2631:Fix Checkbox Click
560
- - 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
561
- - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
562
- - e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
563
- - 52c1373: ZERO-2619: Added fix flag for the staged linter
564
- - 552ee8a: ZERO-2777: fix link component usage
565
- - 03c4c3e: ZERO-2731: Update Project Zero CLI command
566
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
567
- - 0d3a913: ZERO-2725: Update decimal scale in Price component
568
- - 778a9a0: ZERO-2740: Upgrade next to 14.2.4
569
- - 9b6bf91: ZERO-2660: Change campaings to campaigns
570
- - 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
571
- - 74a1269: ZERO-2658:Edit product name clickability on completed order page
572
- - d3474c6: ZERO-2655: Add data source shipping option
573
- - d2f0f15: ZERO-2723: Update sentry version and dependencies
574
- - 75080fd: ZERO-2630: Add max limit to postcode area
575
- - 9609eb2: ZERO-2779: Upgrade for tailwind
576
- - 91265bb: ZERO-2551: Improve pretty url and caching performance
577
- - 959e1fa: ZERO-2778: Upgrade for nextjs
578
- - 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
579
- - 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
580
- - dff0d59: ZERO-2659: add formData support to proxy api requests
581
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
582
- - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
583
- - beb499e: ZERO-2551: Add new tsconfig paths
584
- - fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
585
- - 4614eee: ZERO-2602: The script that checks the build for standalone projects
586
- - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
587
- - f046f8e0: ZERO-2575: update version for react-number-format
588
- - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
589
-
590
- ### Patch Changes
591
-
592
- - Updated dependencies [90282b5]
593
- - Updated dependencies [50b9069]
594
- - Updated dependencies [572d2e8]
595
- - Updated dependencies [a4c8d6a9]
596
- - Updated dependencies [fda5b92]
597
- - Updated dependencies [2d9b2b2]
598
- - Updated dependencies [c53ea3e]
599
- - Updated dependencies [8d9ac9a]
600
- - Updated dependencies [18e8197]
601
- - Updated dependencies [714e0b4]
602
- - Updated dependencies [70279e7]
603
- - Updated dependencies [6c25f66]
604
- - Updated dependencies [bc2b411]
605
- - Updated dependencies [3bf2dd9]
606
- - Updated dependencies [e9541a1]
607
- - Updated dependencies [c53ef7b9]
608
- - Updated dependencies [9d94f7e]
609
- - Updated dependencies [64699d3]
610
- - Updated dependencies [0d3a913]
611
- - Updated dependencies [1448a96]
612
93
  - Updated dependencies [2ab6e08]
613
- - Updated dependencies [d6edb1d]
614
- - Updated dependencies [d3474c6]
615
- - Updated dependencies [75080fd]
616
- - Updated dependencies [17f8752]
617
- - Updated dependencies [91265bb]
618
- - Updated dependencies [bbe18b9]
619
- - Updated dependencies [d409996]
620
- - Updated dependencies [4920742]
621
- - Updated dependencies [69ca080]
622
- - Updated dependencies [94b6928]
623
- - Updated dependencies [98bb8dc]
624
- - Updated dependencies [46b7aad]
625
- - Updated dependencies [dcc8a15]
626
- - Updated dependencies [fad2768]
627
- - Updated dependencies [dff0d59]
628
- - Updated dependencies [eecb282]
629
- - Updated dependencies [9e25a64]
630
- - Updated dependencies [beb499e]
631
- - Updated dependencies [146ea39]
632
- - Updated dependencies [f2c92d5]
633
- - Updated dependencies [7bd3d99]
634
- - Updated dependencies [c47be30]
635
- - Updated dependencies [e9a46ac]
636
- - Updated dependencies [f046f8e0]
637
- - Updated dependencies [86d2531]
638
- - Updated dependencies [3f9b8d7]
639
- - @akinon/next@1.45.0-rc.0
640
- - @akinon/pz-checkout-gift-pack@1.45.0-rc.0
641
- - @akinon/pz-one-click-checkout@1.45.0-rc.0
642
- - @akinon/pz-basket-gift-pack@1.45.0-rc.0
643
- - @akinon/pz-click-collect@1.45.0-rc.0
644
- - @akinon/pz-masterpass@1.45.0-rc.0
645
- - @akinon/pz-akifast@1.45.0-rc.0
646
- - @akinon/pz-gpay@1.45.0-rc.0
647
- - @akinon/pz-b2b@1.45.0-rc.0
648
- - @akinon/pz-bkm@1.45.0-rc.0
649
- - @akinon/pz-otp@1.45.0-rc.0
650
- - @akinon/pz-pay-on-delivery@1.45.0-rc.0
651
- - @akinon/pz-credit-payment@1.45.0-rc.0
94
+ - @akinon/next@1.45.0
95
+ - @akinon/pz-akifast@1.45.0
96
+ - @akinon/pz-b2b@1.45.0
97
+ - @akinon/pz-basket-gift-pack@1.45.0
98
+ - @akinon/pz-bkm@1.45.0
99
+ - @akinon/pz-checkout-gift-pack@1.45.0
100
+ - @akinon/pz-click-collect@1.45.0
101
+ - @akinon/pz-credit-payment@1.45.0
102
+ - @akinon/pz-gpay@1.45.0
103
+ - @akinon/pz-masterpass@1.45.0
104
+ - @akinon/pz-one-click-checkout@1.45.0
105
+ - @akinon/pz-otp@1.45.0
106
+ - @akinon/pz-pay-on-delivery@1.45.0
652
107
 
653
108
  ## 1.44.0
654
109
 
@@ -672,565 +127,24 @@
672
127
 
673
128
  ### Minor Changes
674
129
 
675
- - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
676
- - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
677
- - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
678
- - 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
679
- - 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
680
- - 7521265: ZERO-2787: Fix hover classname for favorite item
681
- - 27a5296: ZERO-2631:Fix Checkbox Click
682
- - 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
683
- - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
684
- - e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
685
- - 52c1373: ZERO-2619: Added fix flag for the staged linter
686
- - 552ee8a: ZERO-2777: fix link component usage
687
- - 03c4c3e: ZERO-2731: Update Project Zero CLI command
688
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
689
- - 0d3a913: ZERO-2725: Update decimal scale in Price component
690
- - 778a9a0: ZERO-2740: Upgrade next to 14.2.4
691
- - 9b6bf91: ZERO-2660: Change campaings to campaigns
692
- - 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
693
- - 74a1269: ZERO-2658:Edit product name clickability on completed order page
694
- - d3474c6: ZERO-2655: Add data source shipping option
695
- - d2f0f15: ZERO-2723: Update sentry version and dependencies
696
- - 75080fd: ZERO-2630: Add max limit to postcode area
697
- - 9609eb2: ZERO-2779: Upgrade for tailwind
698
- - 91265bb: ZERO-2551: Improve pretty url and caching performance
699
- - 959e1fa: ZERO-2778: Upgrade for nextjs
700
- - 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
701
- - 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
702
- - dff0d59: ZERO-2659: add formData support to proxy api requests
703
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
704
- - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
705
- - beb499e: ZERO-2551: Add new tsconfig paths
706
- - fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
707
- - 4614eee: ZERO-2602: The script that checks the build for standalone projects
708
- - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
709
- - f046f8e0: ZERO-2575: update version for react-number-format
710
- - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
711
-
712
- ### Patch Changes
713
-
714
- - Updated dependencies [90282b5]
715
- - Updated dependencies [50b9069]
716
- - Updated dependencies [572d2e8]
717
- - Updated dependencies [a4c8d6a9]
718
- - Updated dependencies [fda5b92]
719
- - Updated dependencies [2d9b2b2]
720
- - Updated dependencies [c53ea3e]
721
- - Updated dependencies [8d9ac9a]
722
- - Updated dependencies [18e8197]
723
- - Updated dependencies [714e0b4]
724
- - Updated dependencies [70279e7]
725
- - Updated dependencies [6c25f66]
726
- - Updated dependencies [bc2b411]
727
- - Updated dependencies [3bf2dd9]
728
- - Updated dependencies [e9541a1]
729
- - Updated dependencies [c53ef7b9]
730
- - Updated dependencies [9d94f7e]
731
- - Updated dependencies [64699d3]
732
- - Updated dependencies [0d3a913]
733
- - Updated dependencies [1448a96]
734
- - Updated dependencies [d6edb1d]
735
- - Updated dependencies [d3474c6]
736
- - Updated dependencies [75080fd]
737
- - Updated dependencies [17f8752]
738
- - Updated dependencies [91265bb]
739
- - Updated dependencies [bbe18b9]
740
- - Updated dependencies [d409996]
741
- - Updated dependencies [4920742]
742
- - Updated dependencies [69ca080]
743
- - Updated dependencies [94b6928]
744
- - Updated dependencies [98bb8dc]
745
- - Updated dependencies [46b7aad]
746
- - Updated dependencies [dcc8a15]
747
- - Updated dependencies [fad2768]
748
- - Updated dependencies [dff0d59]
749
- - Updated dependencies [eecb282]
750
- - Updated dependencies [9e25a64]
751
- - Updated dependencies [beb499e]
752
- - Updated dependencies [146ea39]
753
- - Updated dependencies [f2c92d5]
754
- - Updated dependencies [7bd3d99]
755
- - Updated dependencies [c47be30]
756
- - Updated dependencies [e9a46ac]
757
- - Updated dependencies [f046f8e0]
758
- - Updated dependencies [86d2531]
759
- - Updated dependencies [3f9b8d7]
760
- - @akinon/next@1.43.0-rc.16
761
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.16
762
- - @akinon/pz-one-click-checkout@1.43.0-rc.16
763
- - @akinon/pz-basket-gift-pack@1.43.0-rc.16
764
- - @akinon/pz-click-collect@1.43.0-rc.16
765
- - @akinon/pz-masterpass@1.43.0-rc.16
766
- - @akinon/pz-akifast@1.43.0-rc.16
767
- - @akinon/pz-gpay@1.43.0-rc.16
768
- - @akinon/pz-b2b@1.43.0-rc.16
769
- - @akinon/pz-bkm@1.43.0-rc.16
770
- - @akinon/pz-otp@1.43.0-rc.16
771
- - @akinon/pz-pay-on-delivery@1.43.0-rc.16
772
- - @akinon/pz-credit-payment@1.43.0-rc.16
773
-
774
- ## 1.43.0-rc.15
775
-
776
- ### Patch Changes
777
-
778
- - @akinon/next@1.43.0-rc.15
779
- - @akinon/pz-akifast@1.43.0-rc.15
780
- - @akinon/pz-b2b@1.43.0-rc.15
781
- - @akinon/pz-basket-gift-pack@1.43.0-rc.15
782
- - @akinon/pz-bkm@1.43.0-rc.15
783
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.15
784
- - @akinon/pz-click-collect@1.43.0-rc.15
785
- - @akinon/pz-credit-payment@1.43.0-rc.15
786
- - @akinon/pz-gpay@1.43.0-rc.15
787
- - @akinon/pz-masterpass@1.43.0-rc.15
788
- - @akinon/pz-one-click-checkout@1.43.0-rc.15
789
- - @akinon/pz-otp@1.43.0-rc.15
790
- - @akinon/pz-pay-on-delivery@1.43.0-rc.15
791
-
792
- ## 1.43.0-rc.14
793
-
794
- ### Patch Changes
795
-
796
- - Updated dependencies [3bf2dd9]
797
- - @akinon/next@1.43.0-rc.14
798
- - @akinon/pz-akifast@1.43.0-rc.14
799
- - @akinon/pz-b2b@1.43.0-rc.14
800
- - @akinon/pz-basket-gift-pack@1.43.0-rc.14
801
- - @akinon/pz-bkm@1.43.0-rc.14
802
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.14
803
- - @akinon/pz-click-collect@1.43.0-rc.14
804
- - @akinon/pz-credit-payment@1.43.0-rc.14
805
- - @akinon/pz-gpay@1.43.0-rc.14
806
- - @akinon/pz-masterpass@1.43.0-rc.14
807
- - @akinon/pz-one-click-checkout@1.43.0-rc.14
808
- - @akinon/pz-otp@1.43.0-rc.14
809
- - @akinon/pz-pay-on-delivery@1.43.0-rc.14
810
-
811
- ## 1.43.0-rc.13
812
-
813
- ### Minor Changes
814
-
815
- - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
816
-
817
- ### Patch Changes
818
-
819
- - Updated dependencies [9e25a64]
820
- - @akinon/next@1.43.0-rc.13
821
- - @akinon/pz-akifast@1.43.0-rc.13
822
- - @akinon/pz-b2b@1.43.0-rc.13
823
- - @akinon/pz-basket-gift-pack@1.43.0-rc.13
824
- - @akinon/pz-bkm@1.43.0-rc.13
825
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.13
826
- - @akinon/pz-click-collect@1.43.0-rc.13
827
- - @akinon/pz-credit-payment@1.43.0-rc.13
828
- - @akinon/pz-gpay@1.43.0-rc.13
829
- - @akinon/pz-masterpass@1.43.0-rc.13
830
- - @akinon/pz-one-click-checkout@1.43.0-rc.13
831
- - @akinon/pz-otp@1.43.0-rc.13
832
- - @akinon/pz-pay-on-delivery@1.43.0-rc.13
833
-
834
- ## 1.43.0-rc.12
835
-
836
- ### Patch Changes
837
-
838
- - Updated dependencies [4920742]
839
- - @akinon/next@1.43.0-rc.12
840
- - @akinon/pz-akifast@1.43.0-rc.12
841
- - @akinon/pz-b2b@1.43.0-rc.12
842
- - @akinon/pz-basket-gift-pack@1.43.0-rc.12
843
- - @akinon/pz-bkm@1.43.0-rc.12
844
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.12
845
- - @akinon/pz-click-collect@1.43.0-rc.12
846
- - @akinon/pz-credit-payment@1.43.0-rc.12
847
- - @akinon/pz-gpay@1.43.0-rc.12
848
- - @akinon/pz-masterpass@1.43.0-rc.12
849
- - @akinon/pz-one-click-checkout@1.43.0-rc.12
850
- - @akinon/pz-otp@1.43.0-rc.12
851
- - @akinon/pz-pay-on-delivery@1.43.0-rc.12
852
-
853
- ## 1.43.0-rc.11
854
-
855
- ### Patch Changes
856
-
857
- - Updated dependencies [6c25f66]
858
- - @akinon/next@1.43.0-rc.11
859
- - @akinon/pz-akifast@1.43.0-rc.11
860
- - @akinon/pz-b2b@1.43.0-rc.11
861
- - @akinon/pz-basket-gift-pack@1.43.0-rc.11
862
- - @akinon/pz-bkm@1.43.0-rc.11
863
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.11
864
- - @akinon/pz-click-collect@1.43.0-rc.11
865
- - @akinon/pz-credit-payment@1.43.0-rc.11
866
- - @akinon/pz-gpay@1.43.0-rc.11
867
- - @akinon/pz-masterpass@1.43.0-rc.11
868
- - @akinon/pz-one-click-checkout@1.43.0-rc.11
869
- - @akinon/pz-otp@1.43.0-rc.11
870
- - @akinon/pz-pay-on-delivery@1.43.0-rc.11
871
-
872
- ## 1.43.0-rc.10
873
-
874
- ### Patch Changes
875
-
876
- - Updated dependencies [d6edb1d]
877
- - @akinon/next@1.43.0-rc.10
878
- - @akinon/pz-akifast@1.43.0-rc.10
879
- - @akinon/pz-b2b@1.43.0-rc.10
880
- - @akinon/pz-basket-gift-pack@1.43.0-rc.10
881
- - @akinon/pz-bkm@1.43.0-rc.10
882
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.10
883
- - @akinon/pz-click-collect@1.43.0-rc.10
884
- - @akinon/pz-credit-payment@1.43.0-rc.10
885
- - @akinon/pz-gpay@1.43.0-rc.10
886
- - @akinon/pz-masterpass@1.43.0-rc.10
887
- - @akinon/pz-one-click-checkout@1.43.0-rc.10
888
- - @akinon/pz-otp@1.43.0-rc.10
889
- - @akinon/pz-pay-on-delivery@1.43.0-rc.10
890
-
891
- ## 1.43.0-rc.9
892
-
893
- ### Minor Changes
894
-
895
- - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
896
-
897
- ### Patch Changes
898
-
899
- - Updated dependencies [bc2b411]
900
- - @akinon/next@1.43.0-rc.9
901
- - @akinon/pz-akifast@1.43.0-rc.9
902
- - @akinon/pz-b2b@1.43.0-rc.9
903
- - @akinon/pz-basket-gift-pack@1.43.0-rc.9
904
- - @akinon/pz-bkm@1.43.0-rc.9
905
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.9
906
- - @akinon/pz-click-collect@1.43.0-rc.9
907
- - @akinon/pz-credit-payment@1.43.0-rc.9
908
- - @akinon/pz-gpay@1.43.0-rc.9
909
- - @akinon/pz-masterpass@1.43.0-rc.9
910
- - @akinon/pz-one-click-checkout@1.43.0-rc.9
911
- - @akinon/pz-otp@1.43.0-rc.9
912
- - @akinon/pz-pay-on-delivery@1.43.0-rc.9
913
-
914
- ## 1.43.0-rc.8
915
-
916
- ### Patch Changes
917
-
918
- - Updated dependencies [70279e7]
919
- - Updated dependencies [9d94f7e]
920
- - @akinon/next@1.43.0-rc.8
921
- - @akinon/pz-akifast@1.43.0-rc.8
922
- - @akinon/pz-b2b@1.43.0-rc.8
923
- - @akinon/pz-basket-gift-pack@1.43.0-rc.8
924
- - @akinon/pz-bkm@1.43.0-rc.8
925
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.8
926
- - @akinon/pz-click-collect@1.43.0-rc.8
927
- - @akinon/pz-credit-payment@1.43.0-rc.8
928
- - @akinon/pz-gpay@1.43.0-rc.8
929
- - @akinon/pz-masterpass@1.43.0-rc.8
930
- - @akinon/pz-one-click-checkout@1.43.0-rc.8
931
- - @akinon/pz-otp@1.43.0-rc.8
932
- - @akinon/pz-pay-on-delivery@1.43.0-rc.8
933
-
934
- ## 1.43.0-rc.7
935
-
936
- ### Patch Changes
937
-
938
- - Updated dependencies [7bd3d99]
939
- - @akinon/next@1.43.0-rc.7
940
- - @akinon/pz-akifast@1.43.0-rc.7
941
- - @akinon/pz-b2b@1.43.0-rc.7
942
- - @akinon/pz-basket-gift-pack@1.43.0-rc.7
943
- - @akinon/pz-bkm@1.43.0-rc.7
944
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.7
945
- - @akinon/pz-click-collect@1.43.0-rc.7
946
- - @akinon/pz-credit-payment@1.43.0-rc.7
947
- - @akinon/pz-gpay@1.43.0-rc.7
948
- - @akinon/pz-masterpass@1.43.0-rc.7
949
- - @akinon/pz-one-click-checkout@1.43.0-rc.7
950
- - @akinon/pz-otp@1.43.0-rc.7
951
- - @akinon/pz-pay-on-delivery@1.43.0-rc.7
952
-
953
- ## 1.43.0-rc.6
954
-
955
- ### Minor Changes
956
-
957
- - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
958
- - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
959
- - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
960
- - 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
961
- - 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
962
- - 7521265: ZERO-2787: Fix hover classname for favorite item
963
- - 27a5296: ZERO-2631:Fix Checkbox Click
964
- - 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
965
- - e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
966
- - 52c1373: ZERO-2619: Added fix flag for the staged linter
967
- - 552ee8a: ZERO-2777: fix link component usage
968
- - 03c4c3e: ZERO-2731: Update Project Zero CLI command
969
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
970
- - 0d3a913: ZERO-2725: Update decimal scale in Price component
971
- - 778a9a0: ZERO-2740: Upgrade next to 14.2.4
972
- - 9b6bf91: ZERO-2660: Change campaings to campaigns
973
- - 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
974
- - 74a1269: ZERO-2658:Edit product name clickability on completed order page
975
- - d3474c6: ZERO-2655: Add data source shipping option
976
- - d2f0f15: ZERO-2723: Update sentry version and dependencies
977
- - 75080fd: ZERO-2630: Add max limit to postcode area
978
- - 9609eb2: ZERO-2779: Upgrade for tailwind
979
- - 91265bb: ZERO-2551: Improve pretty url and caching performance
980
- - 959e1fa: ZERO-2778: Upgrade for nextjs
981
- - 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
982
- - 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
983
- - dff0d59: ZERO-2659: add formData support to proxy api requests
984
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
985
130
  - 4a163f2: ZERO-2761: Add condition for basket summary
986
- - beb499e: ZERO-2551: Add new tsconfig paths
987
- - fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
988
- - 4614eee: ZERO-2602: The script that checks the build for standalone projects
989
- - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
990
- - f046f8e: ZERO-2575: update version for react-number-format
991
- - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
992
-
993
- ### Patch Changes
994
-
995
- - Updated dependencies [90282b5]
996
- - Updated dependencies [50b9069]
997
- - Updated dependencies [572d2e8]
998
- - Updated dependencies [a4c8d6a]
999
- - Updated dependencies [fda5b92]
1000
- - Updated dependencies [2d9b2b2]
1001
- - Updated dependencies [c53ea3e]
1002
- - Updated dependencies [8d9ac9a]
1003
- - Updated dependencies [18e8197]
1004
- - Updated dependencies [714e0b4]
1005
- - Updated dependencies [e9541a1]
1006
- - Updated dependencies [c53ef7b]
1007
- - Updated dependencies [64699d3]
1008
- - Updated dependencies [0d3a913]
1009
- - Updated dependencies [1448a96]
1010
- - Updated dependencies [d3474c6]
1011
- - Updated dependencies [75080fd]
1012
- - Updated dependencies [17f8752]
1013
- - Updated dependencies [91265bb]
1014
- - Updated dependencies [bbe18b9]
1015
- - Updated dependencies [d409996]
1016
- - Updated dependencies [69ca080]
1017
- - Updated dependencies [94b6928]
1018
- - Updated dependencies [98bb8dc]
1019
- - Updated dependencies [46b7aad]
1020
- - Updated dependencies [dcc8a15]
1021
- - Updated dependencies [fad2768]
1022
- - Updated dependencies [dff0d59]
1023
- - Updated dependencies [eecb282]
1024
- - Updated dependencies [4a163f2]
1025
- - Updated dependencies [beb499e]
1026
- - Updated dependencies [146ea39]
1027
- - Updated dependencies [f2c92d5]
1028
- - Updated dependencies [c47be30]
1029
- - Updated dependencies [e9a46ac]
1030
- - Updated dependencies [f046f8e]
1031
- - Updated dependencies [86d2531]
1032
- - Updated dependencies [3f9b8d7]
1033
- - @akinon/next@1.43.0-rc.6
1034
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.6
1035
- - @akinon/pz-one-click-checkout@1.43.0-rc.6
1036
- - @akinon/pz-basket-gift-pack@1.43.0-rc.6
1037
- - @akinon/pz-click-collect@1.43.0-rc.6
1038
- - @akinon/pz-masterpass@1.43.0-rc.6
1039
- - @akinon/pz-akifast@1.43.0-rc.6
1040
- - @akinon/pz-gpay@1.43.0-rc.6
1041
- - @akinon/pz-b2b@1.43.0-rc.6
1042
- - @akinon/pz-bkm@1.43.0-rc.6
1043
- - @akinon/pz-otp@1.43.0-rc.6
1044
- - @akinon/pz-pay-on-delivery@1.43.0-rc.6
1045
- - @akinon/pz-credit-payment@1.43.0-rc.6
1046
-
1047
- ## 1.43.0-rc.5
1048
-
1049
- ### Patch Changes
1050
-
1051
- - Updated dependencies [17f8752]
1052
- - @akinon/next@1.43.0-rc.5
1053
- - @akinon/pz-akifast@1.43.0-rc.5
1054
- - @akinon/pz-b2b@1.43.0-rc.5
1055
- - @akinon/pz-basket-gift-pack@1.43.0-rc.5
1056
- - @akinon/pz-bkm@1.43.0-rc.5
1057
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.5
1058
- - @akinon/pz-click-collect@1.43.0-rc.5
1059
- - @akinon/pz-credit-payment@1.43.0-rc.5
1060
- - @akinon/pz-gpay@1.43.0-rc.5
1061
- - @akinon/pz-masterpass@1.43.0-rc.5
1062
- - @akinon/pz-one-click-checkout@1.43.0-rc.5
1063
- - @akinon/pz-otp@1.43.0-rc.5
1064
- - @akinon/pz-pay-on-delivery@1.43.0-rc.5
1065
-
1066
- ## 1.43.0-rc.4
1067
-
1068
- ### Patch Changes
1069
-
1070
- - Updated dependencies [3f9b8d7]
1071
- - @akinon/next@1.43.0-rc.4
1072
- - @akinon/pz-akifast@1.43.0-rc.4
1073
- - @akinon/pz-b2b@1.43.0-rc.4
1074
- - @akinon/pz-basket-gift-pack@1.43.0-rc.4
1075
- - @akinon/pz-bkm@1.43.0-rc.4
1076
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.4
1077
- - @akinon/pz-click-collect@1.43.0-rc.4
1078
- - @akinon/pz-credit-payment@1.43.0-rc.4
1079
- - @akinon/pz-gpay@1.43.0-rc.4
1080
- - @akinon/pz-masterpass@1.43.0-rc.4
1081
- - @akinon/pz-one-click-checkout@1.43.0-rc.4
1082
- - @akinon/pz-otp@1.43.0-rc.4
1083
- - @akinon/pz-pay-on-delivery@1.43.0-rc.4
1084
-
1085
- ## 1.43.0-rc.3
1086
-
1087
- ### Minor Changes
1088
-
1089
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
1090
131
 
1091
132
  ### Patch Changes
1092
133
 
1093
- - Updated dependencies [64699d3]
1094
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.3
1095
- - @akinon/pz-one-click-checkout@1.43.0-rc.3
1096
- - @akinon/pz-basket-gift-pack@1.43.0-rc.3
1097
- - @akinon/pz-pay-on-delivery@1.43.0-rc.3
1098
- - @akinon/pz-credit-payment@1.43.0-rc.3
1099
- - @akinon/pz-click-collect@1.43.0-rc.3
1100
- - @akinon/pz-masterpass@1.43.0-rc.3
1101
- - @akinon/next@1.43.0-rc.3
1102
- - @akinon/pz-akifast@1.43.0-rc.3
1103
- - @akinon/pz-gpay@1.43.0-rc.3
1104
- - @akinon/pz-b2b@1.43.0-rc.3
1105
- - @akinon/pz-bkm@1.43.0-rc.3
1106
- - @akinon/pz-otp@1.43.0-rc.3
1107
-
1108
- ## 1.43.0-rc.2
1109
-
1110
- ### Patch Changes
1111
-
1112
- - Updated dependencies [f2c92d5]
1113
- - @akinon/next@1.43.0-rc.2
1114
- - @akinon/pz-akifast@1.43.0-rc.2
1115
- - @akinon/pz-b2b@1.43.0-rc.2
1116
- - @akinon/pz-basket-gift-pack@1.43.0-rc.2
1117
- - @akinon/pz-bkm@1.43.0-rc.2
1118
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.2
1119
- - @akinon/pz-click-collect@1.43.0-rc.2
1120
- - @akinon/pz-credit-payment@1.43.0-rc.2
1121
- - @akinon/pz-gpay@1.43.0-rc.2
1122
- - @akinon/pz-masterpass@1.43.0-rc.2
1123
- - @akinon/pz-one-click-checkout@1.43.0-rc.2
1124
- - @akinon/pz-otp@1.43.0-rc.2
1125
- - @akinon/pz-pay-on-delivery@1.43.0-rc.2
1126
-
1127
- ## 1.43.0-rc.1
1128
-
1129
- ### Minor Changes
1130
-
1131
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1132
-
1133
- ### Patch Changes
1134
-
1135
- - Updated dependencies [eecb282]
1136
- - @akinon/next@1.43.0-rc.1
1137
- - @akinon/pz-akifast@1.43.0-rc.1
1138
- - @akinon/pz-b2b@1.43.0-rc.1
1139
- - @akinon/pz-basket-gift-pack@1.43.0-rc.1
1140
- - @akinon/pz-bkm@1.43.0-rc.1
1141
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.1
1142
- - @akinon/pz-click-collect@1.43.0-rc.1
1143
- - @akinon/pz-credit-payment@1.43.0-rc.1
1144
- - @akinon/pz-gpay@1.43.0-rc.1
1145
- - @akinon/pz-masterpass@1.43.0-rc.1
1146
- - @akinon/pz-one-click-checkout@1.43.0-rc.1
1147
- - @akinon/pz-otp@1.43.0-rc.1
1148
- - @akinon/pz-pay-on-delivery@1.43.0-rc.1
1149
-
1150
- ## 1.43.0-rc.0
1151
-
1152
- ### Minor Changes
1153
-
1154
- - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1155
- - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1156
- - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1157
- - 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
1158
- - 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
1159
- - 7521265: ZERO-2787: Fix hover classname for favorite item
1160
- - 27a5296: ZERO-2631:Fix Checkbox Click
1161
- - 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
1162
- - e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
1163
- - 52c1373: ZERO-2619: Added fix flag for the staged linter
1164
- - 552ee8a: ZERO-2777: fix link component usage
1165
- - 03c4c3e: ZERO-2731: Update Project Zero CLI command
1166
- - 0d3a913: ZERO-2725: Update decimal scale in Price component
1167
- - 778a9a0: ZERO-2740: Upgrade next to 14.2.4
1168
- - 9b6bf91: ZERO-2660: Change campaings to campaigns
1169
- - 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
1170
- - 74a1269: ZERO-2658:Edit product name clickability on completed order page
1171
- - d3474c6: ZERO-2655: Add data source shipping option
1172
- - d2f0f15: ZERO-2723: Update sentry version and dependencies
1173
- - 75080fd: ZERO-2630: Add max limit to postcode area
1174
- - 9609eb2: ZERO-2779: Upgrade for tailwind
1175
- - 91265bb: ZERO-2551: Improve pretty url and caching performance
1176
- - 959e1fa: ZERO-2778: Upgrade for nextjs
1177
- - 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
1178
- - 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
1179
- - dff0d59: ZERO-2659: add formData support to proxy api requests
1180
- - beb499e: ZERO-2551: Add new tsconfig paths
1181
- - fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
1182
- - 4614eee: ZERO-2602: The script that checks the build for standalone projects
1183
- - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1184
- - f046f8e: ZERO-2575: update version for react-number-format
1185
- - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
1186
-
1187
- ### Patch Changes
1188
-
1189
- - Updated dependencies [90282b5]
1190
- - Updated dependencies [50b9069]
1191
- - Updated dependencies [572d2e8]
1192
- - Updated dependencies [a4c8d6a]
1193
- - Updated dependencies [fda5b92]
1194
- - Updated dependencies [2d9b2b2]
1195
- - Updated dependencies [c53ea3e]
1196
- - Updated dependencies [8d9ac9a]
1197
- - Updated dependencies [18e8197]
1198
- - Updated dependencies [714e0b4]
1199
- - Updated dependencies [e9541a1]
1200
- - Updated dependencies [c53ef7b]
1201
- - Updated dependencies [0d3a913]
1202
- - Updated dependencies [1448a96]
1203
- - Updated dependencies [d3474c6]
1204
- - Updated dependencies [75080fd]
1205
- - Updated dependencies [91265bb]
1206
- - Updated dependencies [bbe18b9]
1207
- - Updated dependencies [d409996]
1208
- - Updated dependencies [69ca080]
1209
- - Updated dependencies [94b6928]
1210
- - Updated dependencies [98bb8dc]
1211
- - Updated dependencies [46b7aad]
1212
- - Updated dependencies [dcc8a15]
1213
- - Updated dependencies [fad2768]
1214
- - Updated dependencies [dff0d59]
1215
- - Updated dependencies [beb499e]
1216
- - Updated dependencies [146ea39]
1217
- - Updated dependencies [c47be30]
1218
- - Updated dependencies [e9a46ac]
1219
- - Updated dependencies [f046f8e]
1220
- - Updated dependencies [86d2531]
1221
- - @akinon/next@1.43.0-rc.0
1222
- - @akinon/pz-checkout-gift-pack@1.43.0-rc.0
1223
- - @akinon/pz-one-click-checkout@1.43.0-rc.0
1224
- - @akinon/pz-basket-gift-pack@1.43.0-rc.0
1225
- - @akinon/pz-click-collect@1.43.0-rc.0
1226
- - @akinon/pz-masterpass@1.43.0-rc.0
1227
- - @akinon/pz-akifast@1.43.0-rc.0
1228
- - @akinon/pz-gpay@1.43.0-rc.0
1229
- - @akinon/pz-b2b@1.43.0-rc.0
1230
- - @akinon/pz-bkm@1.43.0-rc.0
1231
- - @akinon/pz-otp@1.43.0-rc.0
1232
- - @akinon/pz-credit-payment@1.43.0-rc.0
1233
- - @akinon/pz-pay-on-delivery@1.43.0-rc.0
134
+ - Updated dependencies [4a163f2]
135
+ - @akinon/next@1.43.0
136
+ - @akinon/pz-akifast@1.43.0
137
+ - @akinon/pz-b2b@1.43.0
138
+ - @akinon/pz-basket-gift-pack@1.43.0
139
+ - @akinon/pz-bkm@1.43.0
140
+ - @akinon/pz-checkout-gift-pack@1.43.0
141
+ - @akinon/pz-click-collect@1.43.0
142
+ - @akinon/pz-credit-payment@1.43.0
143
+ - @akinon/pz-gpay@1.43.0
144
+ - @akinon/pz-masterpass@1.43.0
145
+ - @akinon/pz-one-click-checkout@1.43.0
146
+ - @akinon/pz-otp@1.43.0
147
+ - @akinon/pz-pay-on-delivery@1.43.0
1234
148
 
1235
149
  ## 1.42.0
1236
150
 
@@ -1399,301 +313,13 @@
1399
313
 
1400
314
  ### Patch Changes
1401
315
 
1402
- - Updated dependencies [a4c8d6a]
1403
- - Updated dependencies [d09b677]
1404
- - Updated dependencies [6d4aadb]
1405
- - Updated dependencies [8e6e8cf]
1406
- - Updated dependencies [c53ef7b]
1407
- - Updated dependencies [ebb63ce]
1408
- - Updated dependencies [7cebe87]
1409
- - Updated dependencies [616690d]
1410
- - Updated dependencies [f3b595e]
1411
- - Updated dependencies [91265bb]
1412
- - Updated dependencies [59fb7c3]
1413
- - Updated dependencies [bbe18b9]
1414
- - Updated dependencies [f0c23bc]
1415
- - Updated dependencies [3420416]
1416
- - Updated dependencies [495d155]
1417
- - Updated dependencies [beb499e]
1418
- - Updated dependencies [6c18543]
1419
- - Updated dependencies [40ad73e]
1420
- - Updated dependencies [495d155]
1421
- - Updated dependencies [f046f8e]
1422
- - Updated dependencies [6b2972b]
1423
- - Updated dependencies [3e68768]
1424
- - @akinon/next@1.34.0-rc.20
1425
- - @akinon/pz-masterpass@1.34.0-rc.20
1426
- - @akinon/pz-one-click-checkout@1.34.0-rc.20
1427
- - @akinon/pz-b2b@1.34.0-rc.20
1428
- - @akinon/pz-gpay@1.34.0-rc.20
1429
- - @akinon/pz-otp@1.34.0-rc.20
1430
- - @akinon/pz-pay-on-delivery@1.34.0-rc.20
1431
-
1432
- ## 1.34.0-rc.19
1433
-
1434
- ### Patch Changes
1435
-
1436
- - Updated dependencies [c53ef7b]
1437
- - @akinon/next@1.34.0-rc.19
1438
- - @akinon/pz-b2b@1.34.0-rc.19
1439
- - @akinon/pz-gpay@1.34.0-rc.19
1440
- - @akinon/pz-masterpass@1.34.0-rc.19
1441
- - @akinon/pz-one-click-checkout@1.34.0-rc.19
1442
- - @akinon/pz-otp@1.34.0-rc.19
1443
- - @akinon/pz-pay-on-delivery@1.34.0-rc.19
1444
-
1445
- ## 1.34.0-rc.18
1446
-
1447
- ### Minor Changes
1448
-
1449
- - 9b6bf91: ZERO-2660: Change campaings to campaigns
1450
- - 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
1451
-
1452
- ### Patch Changes
1453
-
1454
- - Updated dependencies [a4c8d6a]
1455
- - @akinon/next@1.34.0-rc.18
1456
- - @akinon/pz-b2b@1.34.0-rc.18
1457
- - @akinon/pz-gpay@1.34.0-rc.18
1458
- - @akinon/pz-masterpass@1.34.0-rc.18
1459
- - @akinon/pz-one-click-checkout@1.34.0-rc.18
1460
- - @akinon/pz-otp@1.34.0-rc.18
1461
- - @akinon/pz-pay-on-delivery@1.34.0-rc.18
1462
-
1463
- ## 1.34.0-rc.17
1464
-
1465
- ### Minor Changes
1466
-
1467
- - 567e4c1: ZERO-2580:Add checked attribute from props to checkbox
1468
- - d09b677: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
1469
- - 27a5296: ZERO-2631:Fix Checkbox Click
1470
- - ebb63ce: ZERO-2525: Fix category facet removal bug and add close icon to active filters
1471
- - 74a1269: ZERO-2658:Edit product name clickability on completed order page
1472
- - 0d0f36c: ZERO-2598: Fix eslint warnings and update dependencies
1473
- - 91265bb: ZERO-2551: Improve pretty url and caching performance
1474
- - f0c23bc: ZERO-2135: add custom not found page
1475
- - 3420416: ZERO-2533: extend eslint config from @akinon/next
1476
- - beb499e: ZERO-2551: Add new tsconfig paths
1477
- - 6c18543: ZERO-2542:Refactor and show error in OneClickCheckoutButtons
1478
- - 202f84e: ZERO-2569: Fix static keys
1479
- - 4614eee: ZERO-2602: The script that checks the build for standalone projects
1480
- - f046f8e: ZERO-2575: update version for react-number-format
1481
- - 12c10a4: ZERO-2570: Category filters routes to absolute url
1482
-
1483
- ### Patch Changes
1484
-
1485
- - Updated dependencies [d09b677]
1486
- - Updated dependencies [6d4aadb]
1487
- - Updated dependencies [8e6e8cf]
1488
- - Updated dependencies [ebb63ce]
1489
- - Updated dependencies [7cebe87]
1490
- - Updated dependencies [616690d]
1491
- - Updated dependencies [f3b595e]
1492
- - Updated dependencies [91265bb]
1493
- - Updated dependencies [59fb7c3]
1494
- - Updated dependencies [bbe18b9]
1495
- - Updated dependencies [f0c23bc]
1496
- - Updated dependencies [3420416]
1497
- - Updated dependencies [495d155]
1498
- - Updated dependencies [beb499e]
1499
- - Updated dependencies [6c18543]
1500
- - Updated dependencies [40ad73e]
1501
- - Updated dependencies [495d155]
1502
- - Updated dependencies [f046f8e]
1503
- - Updated dependencies [6b2972b]
1504
- - Updated dependencies [3e68768]
1505
- - @akinon/next@1.34.0-rc.17
1506
- - @akinon/pz-masterpass@1.34.0-rc.17
1507
- - @akinon/pz-one-click-checkout@1.34.0-rc.17
1508
- - @akinon/pz-b2b@1.34.0-rc.17
1509
- - @akinon/pz-gpay@1.34.0-rc.17
1510
- - @akinon/pz-otp@1.34.0-rc.17
1511
- - @akinon/pz-pay-on-delivery@1.34.0-rc.17
1512
-
1513
- ## 1.34.0-rc.16
1514
-
1515
- ### Patch Changes
1516
-
1517
- - @akinon/next@1.34.0-rc.16
1518
- - @akinon/pz-b2b@1.34.0-rc.16
1519
- - @akinon/pz-gpay@1.34.0-rc.16
1520
- - @akinon/pz-masterpass@1.34.0-rc.16
1521
- - @akinon/pz-one-click-checkout@1.34.0-rc.16
1522
- - @akinon/pz-otp@1.34.0-rc.16
1523
- - @akinon/pz-pay-on-delivery@1.34.0-rc.16
1524
-
1525
- ## 1.34.0-rc.15
1526
-
1527
- ### Patch Changes
1528
-
1529
- - @akinon/next@1.34.0-rc.15
1530
- - @akinon/pz-b2b@1.34.0-rc.15
1531
- - @akinon/pz-gpay@1.34.0-rc.15
1532
- - @akinon/pz-masterpass@1.34.0-rc.15
1533
- - @akinon/pz-one-click-checkout@1.34.0-rc.15
1534
- - @akinon/pz-otp@1.34.0-rc.15
1535
- - @akinon/pz-pay-on-delivery@1.34.0-rc.15
1536
-
1537
- ## 1.34.0-rc.14
1538
-
1539
- ### Minor Changes
1540
-
1541
- - 4614eee: ZERO-2602: The script that checks the build for standalone projects
1542
-
1543
- ### Patch Changes
1544
-
1545
- - @akinon/next@1.34.0-rc.14
1546
- - @akinon/pz-b2b@1.34.0-rc.14
1547
- - @akinon/pz-gpay@1.34.0-rc.14
1548
- - @akinon/pz-masterpass@1.34.0-rc.14
1549
- - @akinon/pz-one-click-checkout@1.34.0-rc.14
1550
- - @akinon/pz-otp@1.34.0-rc.14
1551
- - @akinon/pz-pay-on-delivery@1.34.0-rc.14
1552
-
1553
- ## 1.34.0-rc.13
1554
-
1555
- ### Minor Changes
1556
-
1557
- - 74a1269: ZERO-2658:Edit product name clickability on completed order page
1558
-
1559
- ### Patch Changes
1560
-
1561
- - @akinon/next@1.34.0-rc.13
1562
- - @akinon/pz-b2b@1.34.0-rc.13
1563
- - @akinon/pz-gpay@1.34.0-rc.13
1564
- - @akinon/pz-masterpass@1.34.0-rc.13
1565
- - @akinon/pz-one-click-checkout@1.34.0-rc.13
1566
- - @akinon/pz-otp@1.34.0-rc.13
1567
- - @akinon/pz-pay-on-delivery@1.34.0-rc.13
1568
-
1569
- ## 1.34.0-rc.12
1570
-
1571
- ### Patch Changes
1572
-
1573
- - Updated dependencies [616690d]
1574
- - @akinon/next@1.34.0-rc.12
1575
- - @akinon/pz-b2b@1.34.0-rc.12
1576
- - @akinon/pz-gpay@1.34.0-rc.12
1577
- - @akinon/pz-masterpass@1.34.0-rc.12
1578
- - @akinon/pz-one-click-checkout@1.34.0-rc.12
1579
- - @akinon/pz-otp@1.34.0-rc.12
1580
- - @akinon/pz-pay-on-delivery@1.34.0-rc.12
1581
-
1582
- ## 1.34.0-rc.11
1583
-
1584
- ### Patch Changes
1585
-
1586
- - Updated dependencies [8e6e8cf]
1587
- - @akinon/next@1.34.0-rc.11
1588
- - @akinon/pz-b2b@1.34.0-rc.11
1589
- - @akinon/pz-gpay@1.34.0-rc.11
1590
- - @akinon/pz-masterpass@1.34.0-rc.11
1591
- - @akinon/pz-one-click-checkout@1.34.0-rc.11
1592
- - @akinon/pz-otp@1.34.0-rc.11
1593
- - @akinon/pz-pay-on-delivery@1.34.0-rc.11
1594
-
1595
- ## 1.34.0-rc.10
1596
-
1597
- ### Patch Changes
1598
-
1599
- - Updated dependencies [bbe18b9]
1600
- - @akinon/next@1.34.0-rc.10
1601
- - @akinon/pz-b2b@1.34.0-rc.10
1602
- - @akinon/pz-gpay@1.34.0-rc.10
1603
- - @akinon/pz-masterpass@1.34.0-rc.10
1604
- - @akinon/pz-one-click-checkout@1.34.0-rc.10
1605
- - @akinon/pz-otp@1.34.0-rc.10
1606
- - @akinon/pz-pay-on-delivery@1.34.0-rc.10
1607
-
1608
- ## 1.34.0-rc.9
1609
-
1610
- ### Minor Changes
1611
-
1612
- - beb499e: ZERO-2551: Add new tsconfig paths
1613
-
1614
- ### Patch Changes
1615
-
1616
- - Updated dependencies [beb499e]
1617
- - @akinon/next@1.34.0-rc.9
1618
- - @akinon/pz-b2b@1.34.0-rc.9
1619
- - @akinon/pz-gpay@1.34.0-rc.9
1620
- - @akinon/pz-masterpass@1.34.0-rc.9
1621
- - @akinon/pz-one-click-checkout@1.34.0-rc.9
1622
- - @akinon/pz-otp@1.34.0-rc.9
1623
- - @akinon/pz-pay-on-delivery@1.34.0-rc.9
1624
-
1625
- ## 1.34.0-rc.8
1626
-
1627
- ### Minor Changes
1628
-
1629
- - 91265bb: ZERO-2551: Improve pretty url and caching performance
1630
-
1631
- ### Patch Changes
1632
-
1633
- - Updated dependencies [91265bb]
1634
- - @akinon/next@1.34.0-rc.8
1635
- - @akinon/pz-b2b@1.34.0-rc.8
1636
- - @akinon/pz-gpay@1.34.0-rc.8
1637
- - @akinon/pz-masterpass@1.34.0-rc.8
1638
- - @akinon/pz-one-click-checkout@1.34.0-rc.8
1639
- - @akinon/pz-otp@1.34.0-rc.8
1640
- - @akinon/pz-pay-on-delivery@1.34.0-rc.8
1641
-
1642
- ## 1.34.0-rc.7
1643
-
1644
- ### Minor Changes
1645
-
1646
- - 0d0f36c: ZERO-2598: Fix eslint warnings and update dependencies
1647
-
1648
- ### Patch Changes
1649
-
1650
- - @akinon/next@1.34.0-rc.7
1651
- - @akinon/pz-b2b@1.34.0-rc.7
1652
- - @akinon/pz-gpay@1.34.0-rc.7
1653
- - @akinon/pz-masterpass@1.34.0-rc.7
1654
- - @akinon/pz-one-click-checkout@1.34.0-rc.7
1655
- - @akinon/pz-otp@1.34.0-rc.7
1656
- - @akinon/pz-pay-on-delivery@1.34.0-rc.7
1657
-
1658
- ## 1.34.0-rc.6
1659
-
1660
- ### Minor Changes
1661
-
1662
- - 567e4c1: ZERO-2580:Add checked attribute from props to checkbox
1663
- - d09b677: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
1664
- - 27a5296: ZERO-2631:Fix Checkbox Click
1665
- - ebb63ce: ZERO-2525: Fix category facet removal bug and add close icon to active filters
1666
- - f0c23bc: ZERO-2135: add custom not found page
1667
- - 3420416: ZERO-2533: extend eslint config from @akinon/next
1668
- - 6c18543: ZERO-2542:Refactor and show error in OneClickCheckoutButtons
1669
- - 202f84e: ZERO-2569: Fix static keys
1670
- - f046f8e: ZERO-2575: update version for react-number-format
1671
- - 12c10a4: ZERO-2570: Category filters routes to absolute url
1672
-
1673
- ### Patch Changes
1674
-
1675
- - Updated dependencies [d09b677]
1676
- - Updated dependencies [6d4aadb]
1677
- - Updated dependencies [ebb63ce]
1678
- - Updated dependencies [7cebe87]
1679
- - Updated dependencies [f3b595e]
1680
- - Updated dependencies [59fb7c3]
1681
- - Updated dependencies [f0c23bc]
1682
- - Updated dependencies [3420416]
1683
- - Updated dependencies [495d155]
1684
- - Updated dependencies [6c18543]
1685
- - Updated dependencies [40ad73e]
1686
- - Updated dependencies [495d155]
1687
- - Updated dependencies [f046f8e]
1688
- - Updated dependencies [6b2972b]
1689
- - Updated dependencies [3e68768]
1690
- - @akinon/next@1.34.0-rc.6
1691
- - @akinon/pz-masterpass@1.34.0-rc.6
1692
- - @akinon/pz-one-click-checkout@1.34.0-rc.6
1693
- - @akinon/pz-b2b@1.34.0-rc.6
1694
- - @akinon/pz-gpay@1.34.0-rc.6
1695
- - @akinon/pz-otp@1.34.0-rc.6
1696
- - @akinon/pz-pay-on-delivery@1.34.0-rc.6
316
+ - @akinon/next@1.34.0
317
+ - @akinon/pz-b2b@1.34.0
318
+ - @akinon/pz-gpay@1.34.0
319
+ - @akinon/pz-masterpass@1.34.0
320
+ - @akinon/pz-one-click-checkout@1.34.0
321
+ - @akinon/pz-otp@1.34.0
322
+ - @akinon/pz-pay-on-delivery@1.34.0
1697
323
 
1698
324
  ## 1.33.2
1699
325