@akinon/projectzero 1.80.0 → 1.81.0-rc.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 (28) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/app-template/.gitignore +2 -0
  3. package/app-template/CHANGELOG.md +2914 -139
  4. package/app-template/package.json +19 -19
  5. package/app-template/public/locales/en/common.json +4 -0
  6. package/app-template/public/locales/tr/common.json +4 -0
  7. package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/cancellation/page.tsx +94 -5
  8. package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +9 -82
  9. package/app-template/src/app/[commerce]/[locale]/[currency]/orders/checkout/page.tsx +7 -4
  10. package/app-template/src/components/button.tsx +50 -35
  11. package/app-template/src/components/file-input.tsx +44 -2
  12. package/app-template/src/components/types/index.ts +4 -1
  13. package/app-template/src/components/widget/widget-placeholder.tsx +12 -0
  14. package/app-template/src/middleware.ts +1 -0
  15. package/app-template/src/settings.js +6 -1
  16. package/app-template/src/views/account/address-form.tsx +2 -2
  17. package/app-template/src/views/account/contact-form.tsx +3 -8
  18. package/app-template/src/views/account/orders/order-cancellation-item.tsx +23 -3
  19. package/app-template/src/views/basket/basket-content.tsx +106 -0
  20. package/app-template/src/views/basket/basket-item.tsx +16 -13
  21. package/app-template/src/views/basket/summary.tsx +10 -7
  22. package/app-template/src/views/category/category-header.tsx +11 -5
  23. package/app-template/src/views/header/search/index.tsx +13 -1
  24. package/app-template/src/views/login/index.tsx +28 -4
  25. package/app-template/src/views/register/index.tsx +30 -5
  26. package/package.json +1 -1
  27. package/app-template/sentry.edge.config.ts +0 -3
  28. package/app-template/sentry.server.config.ts +0 -3
@@ -1,5 +1,70 @@
1
1
  # projectzeronext
2
2
 
3
+ ## 1.81.0-rc.0
4
+
5
+ ### Minor Changes
6
+
7
+ - e8dcbe3c: ZERO-3112: Update button component
8
+ - fd4b74e9: ZERO-3126: add reset checkout state query
9
+ - 82174637: ZERO-2887: Add LoaderSpinner to Filters component
10
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
11
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
12
+ - 7a1e1f73: ZERO-3138: Close the search input with the esc key
13
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
14
+ - b02d5ea9: ZERO-3135: Add cancellation request images display in order cancellation item
15
+ - c82875bc: ZERO-3140: Fix style layout size
16
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
17
+ - 6a0a0807: ZERO-3112: Update button
18
+ - 14d6b00c: ZERO-3122: Refactor error handling in login and registration forms to support nested error messages
19
+ - 121044ba: ZERO-3120: Add sample regex for sitemap with url extension like .xml.gz
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [778aabf8]
24
+ - Updated dependencies [5dfeea04]
25
+ - Updated dependencies [2d9b2b2c]
26
+ - Updated dependencies [fdbf156f]
27
+ - Updated dependencies [fd4b74e9]
28
+ - Updated dependencies [f49bb74f]
29
+ - Updated dependencies [e9541a13]
30
+ - Updated dependencies [4d3deb4f]
31
+ - Updated dependencies [72fd4d67]
32
+ - Updated dependencies [c53ef7b9]
33
+ - Updated dependencies [64699d3f]
34
+ - Updated dependencies [0200d568]
35
+ - Updated dependencies [7727ae55]
36
+ - Updated dependencies [17f87524]
37
+ - Updated dependencies [65d3b862]
38
+ - Updated dependencies [bbe18b9f]
39
+ - Updated dependencies [4920742c]
40
+ - Updated dependencies [7e56d6b6]
41
+ - Updated dependencies [43c182ee]
42
+ - Updated dependencies [2d305aaf]
43
+ - Updated dependencies [4cc22c7c]
44
+ - Updated dependencies [eeb20bea]
45
+ - Updated dependencies [6a0a0807]
46
+ - Updated dependencies [f2c92d5c]
47
+ - Updated dependencies [7bd3d992]
48
+ - Updated dependencies [fdd255ee]
49
+ - Updated dependencies [49eeebfa]
50
+ - Updated dependencies [3f9b8d7e]
51
+ - @akinon/next@1.81.0-rc.0
52
+ - @akinon/pz-masterpass@1.81.0-rc.0
53
+ - @akinon/pz-checkout-gift-pack@1.81.0-rc.0
54
+ - @akinon/pz-one-click-checkout@1.81.0-rc.0
55
+ - @akinon/pz-basket-gift-pack@1.81.0-rc.0
56
+ - @akinon/pz-pay-on-delivery@1.81.0-rc.0
57
+ - @akinon/pz-credit-payment@1.81.0-rc.0
58
+ - @akinon/pz-click-collect@1.81.0-rc.0
59
+ - @akinon/pz-akifast@1.81.0-rc.0
60
+ - @akinon/pz-gpay@1.81.0-rc.0
61
+ - @akinon/pz-b2b@1.81.0-rc.0
62
+ - @akinon/pz-bkm@1.81.0-rc.0
63
+ - @akinon/pz-otp@1.81.0-rc.0
64
+ - @akinon/pz-tabby-extension@1.81.0-rc.0
65
+ - @akinon/pz-saved-card@1.81.0-rc.0
66
+ - @akinon/pz-tamara-extension@1.81.0-rc.0
67
+
3
68
  ## 1.80.0
4
69
 
5
70
  ### Minor Changes
@@ -30,22 +95,281 @@
30
95
 
31
96
  ### Patch Changes
32
97
 
33
- - Updated dependencies [59fa21c]
34
- - @akinon/next@1.79.0
35
- - @akinon/pz-akifast@1.79.0
36
- - @akinon/pz-b2b@1.79.0
37
- - @akinon/pz-basket-gift-pack@1.79.0
38
- - @akinon/pz-bkm@1.79.0
39
- - @akinon/pz-checkout-gift-pack@1.79.0
40
- - @akinon/pz-click-collect@1.79.0
41
- - @akinon/pz-credit-payment@1.79.0
42
- - @akinon/pz-gpay@1.79.0
43
- - @akinon/pz-masterpass@1.79.0
44
- - @akinon/pz-one-click-checkout@1.79.0
45
- - @akinon/pz-otp@1.79.0
46
- - @akinon/pz-pay-on-delivery@1.79.0
47
- - @akinon/pz-saved-card@1.79.0
48
- - @akinon/pz-tabby-extension@1.79.0
98
+ - Updated dependencies [778aabf8]
99
+ - Updated dependencies [5dfeea04]
100
+ - Updated dependencies [2d9b2b2c]
101
+ - Updated dependencies [fdbf156f]
102
+ - Updated dependencies [fd4b74e9]
103
+ - Updated dependencies [f49bb74f]
104
+ - Updated dependencies [e9541a13]
105
+ - Updated dependencies [4d3deb4f]
106
+ - Updated dependencies [72fd4d67]
107
+ - Updated dependencies [c53ef7b9]
108
+ - Updated dependencies [64699d3f]
109
+ - Updated dependencies [0200d568]
110
+ - Updated dependencies [7727ae55]
111
+ - Updated dependencies [17f87524]
112
+ - Updated dependencies [65d3b862]
113
+ - Updated dependencies [bbe18b9f]
114
+ - Updated dependencies [4920742c]
115
+ - Updated dependencies [7e56d6b6]
116
+ - Updated dependencies [43c182ee]
117
+ - Updated dependencies [2d305aaf]
118
+ - Updated dependencies [4cc22c7c]
119
+ - Updated dependencies [eeb20bea]
120
+ - Updated dependencies [6a0a0807]
121
+ - Updated dependencies [f2c92d5c]
122
+ - Updated dependencies [7bd3d992]
123
+ - Updated dependencies [fdd255ee]
124
+ - Updated dependencies [49eeebfa]
125
+ - Updated dependencies [3f9b8d7e]
126
+ - Updated dependencies [7ab9e2fd]
127
+ - @akinon/next@1.80.0-rc.7
128
+ - @akinon/pz-masterpass@1.80.0-rc.7
129
+ - @akinon/pz-checkout-gift-pack@1.80.0-rc.7
130
+ - @akinon/pz-one-click-checkout@1.80.0-rc.7
131
+ - @akinon/pz-basket-gift-pack@1.80.0-rc.7
132
+ - @akinon/pz-pay-on-delivery@1.80.0-rc.7
133
+ - @akinon/pz-credit-payment@1.80.0-rc.7
134
+ - @akinon/pz-click-collect@1.80.0-rc.7
135
+ - @akinon/pz-akifast@1.80.0-rc.7
136
+ - @akinon/pz-gpay@1.80.0-rc.7
137
+ - @akinon/pz-b2b@1.80.0-rc.7
138
+ - @akinon/pz-bkm@1.80.0-rc.7
139
+ - @akinon/pz-otp@1.80.0-rc.7
140
+ - @akinon/pz-tabby-extension@1.80.0-rc.7
141
+ - @akinon/pz-saved-card@1.80.0-rc.7
142
+ - @akinon/pz-tamara-extension@1.80.0-rc.7
143
+
144
+ ## 1.79.0-rc.6
145
+
146
+ ### Patch Changes
147
+
148
+ - Updated dependencies [0200d568]
149
+ - @akinon/next@1.79.0-rc.6
150
+ - @akinon/pz-akifast@1.79.0-rc.6
151
+ - @akinon/pz-b2b@1.79.0-rc.6
152
+ - @akinon/pz-basket-gift-pack@1.79.0-rc.6
153
+ - @akinon/pz-bkm@1.79.0-rc.6
154
+ - @akinon/pz-checkout-gift-pack@1.79.0-rc.6
155
+ - @akinon/pz-click-collect@1.79.0-rc.6
156
+ - @akinon/pz-credit-payment@1.79.0-rc.6
157
+ - @akinon/pz-gpay@1.79.0-rc.6
158
+ - @akinon/pz-masterpass@1.79.0-rc.6
159
+ - @akinon/pz-one-click-checkout@1.79.0-rc.6
160
+ - @akinon/pz-otp@1.79.0-rc.6
161
+ - @akinon/pz-pay-on-delivery@1.79.0-rc.6
162
+ - @akinon/pz-saved-card@1.79.0-rc.6
163
+ - @akinon/pz-tabby-extension@1.79.0-rc.6
164
+
165
+ ## 1.79.0-rc.5
166
+
167
+ ### Patch Changes
168
+
169
+ - Updated dependencies [778aabf8]
170
+ - @akinon/next@1.79.0-rc.5
171
+ - @akinon/pz-akifast@1.79.0-rc.5
172
+ - @akinon/pz-b2b@1.79.0-rc.5
173
+ - @akinon/pz-basket-gift-pack@1.79.0-rc.5
174
+ - @akinon/pz-bkm@1.79.0-rc.5
175
+ - @akinon/pz-checkout-gift-pack@1.79.0-rc.5
176
+ - @akinon/pz-click-collect@1.79.0-rc.5
177
+ - @akinon/pz-credit-payment@1.79.0-rc.5
178
+ - @akinon/pz-gpay@1.79.0-rc.5
179
+ - @akinon/pz-masterpass@1.79.0-rc.5
180
+ - @akinon/pz-one-click-checkout@1.79.0-rc.5
181
+ - @akinon/pz-otp@1.79.0-rc.5
182
+ - @akinon/pz-pay-on-delivery@1.79.0-rc.5
183
+ - @akinon/pz-saved-card@1.79.0-rc.5
184
+ - @akinon/pz-tabby-extension@1.79.0-rc.5
185
+
186
+ ## 1.79.0-rc.4
187
+
188
+ ### Minor Changes
189
+
190
+ - 7a1e1f73: ZERO-3138: Close the search input with the esc key
191
+ - c82875bc: ZERO-3140: Fix style layout size
192
+
193
+ ### Patch Changes
194
+
195
+ - Updated dependencies [fdbf156f]
196
+ - @akinon/pz-masterpass@1.79.0-rc.4
197
+ - @akinon/next@1.79.0-rc.4
198
+ - @akinon/pz-akifast@1.79.0-rc.4
199
+ - @akinon/pz-b2b@1.79.0-rc.4
200
+ - @akinon/pz-basket-gift-pack@1.79.0-rc.4
201
+ - @akinon/pz-bkm@1.79.0-rc.4
202
+ - @akinon/pz-checkout-gift-pack@1.79.0-rc.4
203
+ - @akinon/pz-click-collect@1.79.0-rc.4
204
+ - @akinon/pz-credit-payment@1.79.0-rc.4
205
+ - @akinon/pz-gpay@1.79.0-rc.4
206
+ - @akinon/pz-one-click-checkout@1.79.0-rc.4
207
+ - @akinon/pz-otp@1.79.0-rc.4
208
+ - @akinon/pz-pay-on-delivery@1.79.0-rc.4
209
+ - @akinon/pz-saved-card@1.79.0-rc.4
210
+ - @akinon/pz-tabby-extension@1.79.0-rc.4
211
+
212
+ ## 1.79.0-rc.3
213
+
214
+ ### Minor Changes
215
+
216
+ - e8dcbe3c: ZERO-3112: Update button component
217
+ - fd4b74e9: ZERO-3126: add reset checkout state query
218
+ - 82174637: ZERO-2887: Add LoaderSpinner to Filters component
219
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
220
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
221
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
222
+ - b02d5ea9: ZERO-3135: Add cancellation request images display in order cancellation item
223
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
224
+ - 6a0a0807: ZERO-3112: Update button
225
+ - 14d6b00c: ZERO-3122: Refactor error handling in login and registration forms to support nested error messages
226
+ - 121044ba: ZERO-3120: Add sample regex for sitemap with url extension like .xml.gz
227
+
228
+ ### Patch Changes
229
+
230
+ - Updated dependencies [5dfeea04]
231
+ - Updated dependencies [2d9b2b2c]
232
+ - Updated dependencies [fd4b74e9]
233
+ - Updated dependencies [f49bb74f]
234
+ - Updated dependencies [e9541a13]
235
+ - Updated dependencies [4d3deb4f]
236
+ - Updated dependencies [72fd4d67]
237
+ - Updated dependencies [c53ef7b9]
238
+ - Updated dependencies [64699d3f]
239
+ - Updated dependencies [7727ae55]
240
+ - Updated dependencies [17f87524]
241
+ - Updated dependencies [65d3b862]
242
+ - Updated dependencies [bbe18b9f]
243
+ - Updated dependencies [4920742c]
244
+ - Updated dependencies [7e56d6b6]
245
+ - Updated dependencies [43c182ee]
246
+ - Updated dependencies [2d305aaf]
247
+ - Updated dependencies [4cc22c7c]
248
+ - Updated dependencies [eeb20bea]
249
+ - Updated dependencies [6a0a0807]
250
+ - Updated dependencies [f2c92d5c]
251
+ - Updated dependencies [7bd3d992]
252
+ - Updated dependencies [fdd255ee]
253
+ - Updated dependencies [59fa21ce]
254
+ - Updated dependencies [49eeebfa]
255
+ - Updated dependencies [3f9b8d7e]
256
+ - @akinon/next@1.79.0-rc.3
257
+ - @akinon/pz-checkout-gift-pack@1.79.0-rc.3
258
+ - @akinon/pz-one-click-checkout@1.79.0-rc.3
259
+ - @akinon/pz-basket-gift-pack@1.79.0-rc.3
260
+ - @akinon/pz-pay-on-delivery@1.79.0-rc.3
261
+ - @akinon/pz-credit-payment@1.79.0-rc.3
262
+ - @akinon/pz-click-collect@1.79.0-rc.3
263
+ - @akinon/pz-masterpass@1.79.0-rc.3
264
+ - @akinon/pz-akifast@1.79.0-rc.3
265
+ - @akinon/pz-gpay@1.79.0-rc.3
266
+ - @akinon/pz-b2b@1.79.0-rc.3
267
+ - @akinon/pz-bkm@1.79.0-rc.3
268
+ - @akinon/pz-otp@1.79.0-rc.3
269
+ - @akinon/pz-tabby-extension@1.79.0-rc.3
270
+ - @akinon/pz-saved-card@1.79.0-rc.3
271
+
272
+ ## 1.79.0-rc.2
273
+
274
+ ### Minor Changes
275
+
276
+ - b02d5ea9: ZERO-3135: Add cancellation request images display in order cancellation item
277
+
278
+ ### Patch Changes
279
+
280
+ - @akinon/next@1.79.0-rc.2
281
+ - @akinon/pz-akifast@1.79.0-rc.2
282
+ - @akinon/pz-b2b@1.79.0-rc.2
283
+ - @akinon/pz-basket-gift-pack@1.79.0-rc.2
284
+ - @akinon/pz-bkm@1.79.0-rc.2
285
+ - @akinon/pz-checkout-gift-pack@1.79.0-rc.2
286
+ - @akinon/pz-click-collect@1.79.0-rc.2
287
+ - @akinon/pz-credit-payment@1.79.0-rc.2
288
+ - @akinon/pz-gpay@1.79.0-rc.2
289
+ - @akinon/pz-masterpass@1.79.0-rc.2
290
+ - @akinon/pz-one-click-checkout@1.79.0-rc.2
291
+ - @akinon/pz-otp@1.79.0-rc.2
292
+ - @akinon/pz-pay-on-delivery@1.79.0-rc.2
293
+ - @akinon/pz-saved-card@1.79.0-rc.2
294
+ - @akinon/pz-tabby-extension@1.79.0-rc.2
295
+
296
+ ## 1.79.0-rc.1
297
+
298
+ ### Patch Changes
299
+
300
+ - Updated dependencies [4cc22c7c]
301
+ - @akinon/next@1.79.0-rc.1
302
+ - @akinon/pz-akifast@1.79.0-rc.1
303
+ - @akinon/pz-b2b@1.79.0-rc.1
304
+ - @akinon/pz-basket-gift-pack@1.79.0-rc.1
305
+ - @akinon/pz-bkm@1.79.0-rc.1
306
+ - @akinon/pz-checkout-gift-pack@1.79.0-rc.1
307
+ - @akinon/pz-click-collect@1.79.0-rc.1
308
+ - @akinon/pz-credit-payment@1.79.0-rc.1
309
+ - @akinon/pz-gpay@1.79.0-rc.1
310
+ - @akinon/pz-masterpass@1.79.0-rc.1
311
+ - @akinon/pz-one-click-checkout@1.79.0-rc.1
312
+ - @akinon/pz-otp@1.79.0-rc.1
313
+ - @akinon/pz-pay-on-delivery@1.79.0-rc.1
314
+ - @akinon/pz-saved-card@1.79.0-rc.1
315
+ - @akinon/pz-tabby-extension@1.79.0-rc.1
316
+
317
+ ## 1.79.0-rc.0
318
+
319
+ ### Minor Changes
320
+
321
+ - e8dcbe3c: ZERO-3112: Update button component
322
+ - fd4b74e9: ZERO-3126: add reset checkout state query
323
+ - 82174637: ZERO-2887: Add LoaderSpinner to Filters component
324
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
325
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
326
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
327
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
328
+ - 6a0a0807: ZERO-3112: Update button
329
+ - 14d6b00c: ZERO-3122: Refactor error handling in login and registration forms to support nested error messages
330
+ - 121044ba: ZERO-3120: Add sample regex for sitemap with url extension like .xml.gz
331
+
332
+ ### Patch Changes
333
+
334
+ - Updated dependencies [5dfeea04]
335
+ - Updated dependencies [2d9b2b2c]
336
+ - Updated dependencies [fd4b74e9]
337
+ - Updated dependencies [f49bb74f]
338
+ - Updated dependencies [e9541a13]
339
+ - Updated dependencies [4d3deb4f]
340
+ - Updated dependencies [72fd4d67]
341
+ - Updated dependencies [c53ef7b9]
342
+ - Updated dependencies [64699d3f]
343
+ - Updated dependencies [7727ae55]
344
+ - Updated dependencies [17f87524]
345
+ - Updated dependencies [65d3b862]
346
+ - Updated dependencies [bbe18b9f]
347
+ - Updated dependencies [4920742c]
348
+ - Updated dependencies [7e56d6b6]
349
+ - Updated dependencies [43c182ee]
350
+ - Updated dependencies [2d305aaf]
351
+ - Updated dependencies [eeb20bea]
352
+ - Updated dependencies [6a0a0807]
353
+ - Updated dependencies [f2c92d5c]
354
+ - Updated dependencies [7bd3d992]
355
+ - Updated dependencies [fdd255ee]
356
+ - Updated dependencies [49eeebfa]
357
+ - Updated dependencies [3f9b8d7e]
358
+ - @akinon/next@1.79.0-rc.0
359
+ - @akinon/pz-checkout-gift-pack@1.79.0-rc.0
360
+ - @akinon/pz-one-click-checkout@1.79.0-rc.0
361
+ - @akinon/pz-basket-gift-pack@1.79.0-rc.0
362
+ - @akinon/pz-pay-on-delivery@1.79.0-rc.0
363
+ - @akinon/pz-credit-payment@1.79.0-rc.0
364
+ - @akinon/pz-click-collect@1.79.0-rc.0
365
+ - @akinon/pz-masterpass@1.79.0-rc.0
366
+ - @akinon/pz-akifast@1.79.0-rc.0
367
+ - @akinon/pz-gpay@1.79.0-rc.0
368
+ - @akinon/pz-b2b@1.79.0-rc.0
369
+ - @akinon/pz-bkm@1.79.0-rc.0
370
+ - @akinon/pz-otp@1.79.0-rc.0
371
+ - @akinon/pz-tabby-extension@1.79.0-rc.0
372
+ - @akinon/pz-saved-card@1.79.0-rc.0
49
373
 
50
374
  ## 1.78.0
51
375
 
@@ -247,21 +571,161 @@
247
571
  ### Patch Changes
248
572
 
249
573
  - Updated dependencies [f34454a]
250
- - @akinon/next@1.71.0
251
- - @akinon/pz-akifast@1.71.0
252
- - @akinon/pz-b2b@1.71.0
253
- - @akinon/pz-basket-gift-pack@1.71.0
254
- - @akinon/pz-bkm@1.71.0
255
- - @akinon/pz-checkout-gift-pack@1.71.0
256
- - @akinon/pz-click-collect@1.71.0
257
- - @akinon/pz-credit-payment@1.71.0
258
- - @akinon/pz-gpay@1.71.0
259
- - @akinon/pz-masterpass@1.71.0
260
- - @akinon/pz-one-click-checkout@1.71.0
261
- - @akinon/pz-otp@1.71.0
262
- - @akinon/pz-pay-on-delivery@1.71.0
263
- - @akinon/pz-saved-card@1.71.0
264
- - @akinon/pz-tabby-extension@1.71.0
574
+ - @akinon/next@1.71.0-rc.6
575
+ - @akinon/pz-akifast@1.71.0-rc.6
576
+ - @akinon/pz-b2b@1.71.0-rc.6
577
+ - @akinon/pz-basket-gift-pack@1.71.0-rc.6
578
+ - @akinon/pz-bkm@1.71.0-rc.6
579
+ - @akinon/pz-checkout-gift-pack@1.71.0-rc.6
580
+ - @akinon/pz-click-collect@1.71.0-rc.6
581
+ - @akinon/pz-credit-payment@1.71.0-rc.6
582
+ - @akinon/pz-gpay@1.71.0-rc.6
583
+ - @akinon/pz-masterpass@1.71.0-rc.6
584
+ - @akinon/pz-one-click-checkout@1.71.0-rc.6
585
+ - @akinon/pz-otp@1.71.0-rc.6
586
+ - @akinon/pz-pay-on-delivery@1.71.0-rc.6
587
+ - @akinon/pz-saved-card@1.71.0-rc.6
588
+ - @akinon/pz-tabby-extension@1.71.0-rc.6
589
+
590
+ ## 1.71.0-rc.5
591
+
592
+ ### Patch Changes
593
+
594
+ - Updated dependencies [0ab91e5]
595
+ - @akinon/pz-akifast@1.71.0-rc.5
596
+ - @akinon/next@1.71.0-rc.5
597
+ - @akinon/pz-b2b@1.71.0-rc.5
598
+ - @akinon/pz-basket-gift-pack@1.71.0-rc.5
599
+ - @akinon/pz-bkm@1.71.0-rc.5
600
+ - @akinon/pz-checkout-gift-pack@1.71.0-rc.5
601
+ - @akinon/pz-click-collect@1.71.0-rc.5
602
+ - @akinon/pz-credit-payment@1.71.0-rc.5
603
+ - @akinon/pz-gpay@1.71.0-rc.5
604
+ - @akinon/pz-masterpass@1.71.0-rc.5
605
+ - @akinon/pz-one-click-checkout@1.71.0-rc.5
606
+ - @akinon/pz-otp@1.71.0-rc.5
607
+ - @akinon/pz-pay-on-delivery@1.71.0-rc.5
608
+ - @akinon/pz-saved-card@1.71.0-rc.5
609
+ - @akinon/pz-tabby-extension@1.71.0-rc.5
610
+
611
+ ## 1.71.0-rc.4
612
+
613
+ ### Minor Changes
614
+
615
+ - 7d2d66e: ZERO-3012: Upgrade version for tailwindcss
616
+
617
+ ### Patch Changes
618
+
619
+ - @akinon/next@1.71.0-rc.4
620
+ - @akinon/pz-akifast@1.71.0-rc.4
621
+ - @akinon/pz-b2b@1.71.0-rc.4
622
+ - @akinon/pz-basket-gift-pack@1.71.0-rc.4
623
+ - @akinon/pz-bkm@1.71.0-rc.4
624
+ - @akinon/pz-checkout-gift-pack@1.71.0-rc.4
625
+ - @akinon/pz-click-collect@1.71.0-rc.4
626
+ - @akinon/pz-credit-payment@1.71.0-rc.4
627
+ - @akinon/pz-gpay@1.71.0-rc.4
628
+ - @akinon/pz-masterpass@1.71.0-rc.4
629
+ - @akinon/pz-one-click-checkout@1.71.0-rc.4
630
+ - @akinon/pz-otp@1.71.0-rc.4
631
+ - @akinon/pz-pay-on-delivery@1.71.0-rc.4
632
+ - @akinon/pz-saved-card@1.71.0-rc.4
633
+ - @akinon/pz-tabby-extension@1.71.0-rc.4
634
+
635
+ ## 1.71.0-rc.3
636
+
637
+ ### Minor Changes
638
+
639
+ - 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
640
+
641
+ ### Patch Changes
642
+
643
+ - Updated dependencies [3344bca]
644
+ - @akinon/next@1.71.0-rc.3
645
+ - @akinon/pz-akifast@1.71.0-rc.3
646
+ - @akinon/pz-b2b@1.71.0-rc.3
647
+ - @akinon/pz-basket-gift-pack@1.71.0-rc.3
648
+ - @akinon/pz-bkm@1.71.0-rc.3
649
+ - @akinon/pz-checkout-gift-pack@1.71.0-rc.3
650
+ - @akinon/pz-click-collect@1.71.0-rc.3
651
+ - @akinon/pz-credit-payment@1.71.0-rc.3
652
+ - @akinon/pz-gpay@1.71.0-rc.3
653
+ - @akinon/pz-masterpass@1.71.0-rc.3
654
+ - @akinon/pz-one-click-checkout@1.71.0-rc.3
655
+ - @akinon/pz-otp@1.71.0-rc.3
656
+ - @akinon/pz-pay-on-delivery@1.71.0-rc.3
657
+ - @akinon/pz-saved-card@1.71.0-rc.3
658
+ - @akinon/pz-tabby-extension@1.71.0-rc.3
659
+
660
+ ## 1.71.0-rc.2
661
+
662
+ ### Patch Changes
663
+
664
+ - Updated dependencies [56cdddc]
665
+ - @akinon/next@1.71.0-rc.2
666
+ - @akinon/pz-akifast@1.71.0-rc.2
667
+ - @akinon/pz-b2b@1.71.0-rc.2
668
+ - @akinon/pz-basket-gift-pack@1.71.0-rc.2
669
+ - @akinon/pz-bkm@1.71.0-rc.2
670
+ - @akinon/pz-checkout-gift-pack@1.71.0-rc.2
671
+ - @akinon/pz-click-collect@1.71.0-rc.2
672
+ - @akinon/pz-credit-payment@1.71.0-rc.2
673
+ - @akinon/pz-gpay@1.71.0-rc.2
674
+ - @akinon/pz-masterpass@1.71.0-rc.2
675
+ - @akinon/pz-one-click-checkout@1.71.0-rc.2
676
+ - @akinon/pz-otp@1.71.0-rc.2
677
+ - @akinon/pz-pay-on-delivery@1.71.0-rc.2
678
+ - @akinon/pz-saved-card@1.71.0-rc.2
679
+ - @akinon/pz-tabby-extension@1.71.0-rc.2
680
+
681
+ ## 1.71.0-rc.1
682
+
683
+ ### Patch Changes
684
+
685
+ - Updated dependencies [9a50730]
686
+ - @akinon/next@1.71.0-rc.1
687
+ - @akinon/pz-akifast@1.71.0-rc.1
688
+ - @akinon/pz-b2b@1.71.0-rc.1
689
+ - @akinon/pz-basket-gift-pack@1.71.0-rc.1
690
+ - @akinon/pz-bkm@1.71.0-rc.1
691
+ - @akinon/pz-checkout-gift-pack@1.71.0-rc.1
692
+ - @akinon/pz-click-collect@1.71.0-rc.1
693
+ - @akinon/pz-credit-payment@1.71.0-rc.1
694
+ - @akinon/pz-gpay@1.71.0-rc.1
695
+ - @akinon/pz-masterpass@1.71.0-rc.1
696
+ - @akinon/pz-one-click-checkout@1.71.0-rc.1
697
+ - @akinon/pz-otp@1.71.0-rc.1
698
+ - @akinon/pz-pay-on-delivery@1.71.0-rc.1
699
+ - @akinon/pz-saved-card@1.71.0-rc.1
700
+ - @akinon/pz-tabby-extension@1.71.0-rc.1
701
+
702
+ ## 1.71.0-rc.0
703
+
704
+ ### Minor Changes
705
+
706
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
707
+
708
+ ### Patch Changes
709
+
710
+ - Updated dependencies [3bfa12a]
711
+ - Updated dependencies [4d3deb4]
712
+ - Updated dependencies [3010514]
713
+ - Updated dependencies [ca774b3]
714
+ - @akinon/next@1.71.0-rc.0
715
+ - @akinon/pz-akifast@1.71.0-rc.0
716
+ - @akinon/pz-b2b@1.71.0-rc.0
717
+ - @akinon/pz-basket-gift-pack@1.71.0-rc.0
718
+ - @akinon/pz-bkm@1.71.0-rc.0
719
+ - @akinon/pz-checkout-gift-pack@1.71.0-rc.0
720
+ - @akinon/pz-click-collect@1.71.0-rc.0
721
+ - @akinon/pz-credit-payment@1.71.0-rc.0
722
+ - @akinon/pz-gpay@1.71.0-rc.0
723
+ - @akinon/pz-masterpass@1.71.0-rc.0
724
+ - @akinon/pz-one-click-checkout@1.71.0-rc.0
725
+ - @akinon/pz-otp@1.71.0-rc.0
726
+ - @akinon/pz-pay-on-delivery@1.71.0-rc.0
727
+ - @akinon/pz-saved-card@1.71.0-rc.0
728
+ - @akinon/pz-tabby-extension@1.71.0-rc.0
265
729
 
266
730
  ## 1.70.0
267
731
 
@@ -292,32 +756,249 @@
292
756
 
293
757
  ### Minor Changes
294
758
 
759
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
760
+ - f046f8e: ZERO-2575: update version for react-number-format
761
+
762
+ ### Patch Changes
763
+
764
+ - Updated dependencies [3bfa12a]
765
+ - Updated dependencies [4d3deb4]
766
+ - Updated dependencies [3010514]
767
+ - Updated dependencies [ca774b3]
768
+ - Updated dependencies [f046f8e]
769
+ - @akinon/next@1.69.0-rc.9
770
+ - @akinon/pz-akifast@1.69.0-rc.9
771
+ - @akinon/pz-b2b@1.69.0-rc.9
772
+ - @akinon/pz-basket-gift-pack@1.69.0-rc.9
773
+ - @akinon/pz-bkm@1.69.0-rc.9
774
+ - @akinon/pz-checkout-gift-pack@1.69.0-rc.9
775
+ - @akinon/pz-click-collect@1.69.0-rc.9
776
+ - @akinon/pz-credit-payment@1.69.0-rc.9
777
+ - @akinon/pz-gpay@1.69.0-rc.9
778
+ - @akinon/pz-masterpass@1.69.0-rc.9
779
+ - @akinon/pz-one-click-checkout@1.69.0-rc.9
780
+ - @akinon/pz-otp@1.69.0-rc.9
781
+ - @akinon/pz-pay-on-delivery@1.69.0-rc.9
782
+ - @akinon/pz-saved-card@1.69.0-rc.9
783
+ - @akinon/pz-tabby-extension@1.69.0-rc.9
784
+
785
+ ## 1.69.0-rc.8
786
+
787
+ ### Patch Changes
788
+
789
+ - Updated dependencies [3010514]
790
+ - Updated dependencies [ca774b3]
791
+ - @akinon/next@1.69.0-rc.8
792
+ - @akinon/pz-akifast@1.69.0-rc.8
793
+ - @akinon/pz-b2b@1.69.0-rc.8
794
+ - @akinon/pz-basket-gift-pack@1.69.0-rc.8
795
+ - @akinon/pz-bkm@1.69.0-rc.8
796
+ - @akinon/pz-checkout-gift-pack@1.69.0-rc.8
797
+ - @akinon/pz-click-collect@1.69.0-rc.8
798
+ - @akinon/pz-credit-payment@1.69.0-rc.8
799
+ - @akinon/pz-gpay@1.69.0-rc.8
800
+ - @akinon/pz-masterpass@1.69.0-rc.8
801
+ - @akinon/pz-one-click-checkout@1.69.0-rc.8
802
+ - @akinon/pz-otp@1.69.0-rc.8
803
+ - @akinon/pz-pay-on-delivery@1.69.0-rc.8
804
+ - @akinon/pz-saved-card@1.69.0-rc.8
805
+ - @akinon/pz-tabby-extension@1.69.0-rc.8
806
+
807
+ ## 1.69.0-rc.7
808
+
809
+ ### Patch Changes
810
+
811
+ - Updated dependencies [3bfa12a]
812
+ - @akinon/next@1.69.0-rc.7
813
+ - @akinon/pz-akifast@1.69.0-rc.7
814
+ - @akinon/pz-b2b@1.69.0-rc.7
815
+ - @akinon/pz-basket-gift-pack@1.69.0-rc.7
816
+ - @akinon/pz-bkm@1.69.0-rc.7
817
+ - @akinon/pz-checkout-gift-pack@1.69.0-rc.7
818
+ - @akinon/pz-click-collect@1.69.0-rc.7
819
+ - @akinon/pz-credit-payment@1.69.0-rc.7
820
+ - @akinon/pz-gpay@1.69.0-rc.7
821
+ - @akinon/pz-masterpass@1.69.0-rc.7
822
+ - @akinon/pz-one-click-checkout@1.69.0-rc.7
823
+ - @akinon/pz-otp@1.69.0-rc.7
824
+ - @akinon/pz-pay-on-delivery@1.69.0-rc.7
825
+ - @akinon/pz-saved-card@1.69.0-rc.7
826
+ - @akinon/pz-tabby-extension@1.69.0-rc.7
827
+
828
+ ## 1.69.0-rc.6
829
+
830
+ ### Minor Changes
831
+
832
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
295
833
  - 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
296
834
  - cbdb0c8: ZERO-3010: Move pretty url page into project
297
835
  - 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
298
836
 
299
837
  ### Patch Changes
300
838
 
839
+ - Updated dependencies [4d3deb4]
301
840
  - Updated dependencies [063da74]
302
841
  - Updated dependencies [72da021]
303
842
  - Updated dependencies [5632a99]
304
843
  - Updated dependencies [cbdb0c8]
305
844
  - Updated dependencies [80c869b]
306
- - @akinon/next@1.69.0
307
- - @akinon/pz-akifast@1.69.0
308
- - @akinon/pz-b2b@1.69.0
309
- - @akinon/pz-basket-gift-pack@1.69.0
310
- - @akinon/pz-bkm@1.69.0
311
- - @akinon/pz-checkout-gift-pack@1.69.0
312
- - @akinon/pz-click-collect@1.69.0
313
- - @akinon/pz-credit-payment@1.69.0
314
- - @akinon/pz-gpay@1.69.0
315
- - @akinon/pz-masterpass@1.69.0
316
- - @akinon/pz-one-click-checkout@1.69.0
317
- - @akinon/pz-otp@1.69.0
318
- - @akinon/pz-pay-on-delivery@1.69.0
319
- - @akinon/pz-saved-card@1.69.0
320
- - @akinon/pz-tabby-extension@1.69.0
845
+ - @akinon/next@1.69.0-rc.6
846
+ - @akinon/pz-akifast@1.69.0-rc.6
847
+ - @akinon/pz-b2b@1.69.0-rc.6
848
+ - @akinon/pz-basket-gift-pack@1.69.0-rc.6
849
+ - @akinon/pz-bkm@1.69.0-rc.6
850
+ - @akinon/pz-checkout-gift-pack@1.69.0-rc.6
851
+ - @akinon/pz-click-collect@1.69.0-rc.6
852
+ - @akinon/pz-credit-payment@1.69.0-rc.6
853
+ - @akinon/pz-gpay@1.69.0-rc.6
854
+ - @akinon/pz-masterpass@1.69.0-rc.6
855
+ - @akinon/pz-one-click-checkout@1.69.0-rc.6
856
+ - @akinon/pz-otp@1.69.0-rc.6
857
+ - @akinon/pz-pay-on-delivery@1.69.0-rc.6
858
+ - @akinon/pz-saved-card@1.69.0-rc.6
859
+ - @akinon/pz-tabby-extension@1.69.0-rc.6
860
+
861
+ ## 1.69.0-rc.5
862
+
863
+ ### Minor Changes
864
+
865
+ - 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
866
+
867
+ ### Patch Changes
868
+
869
+ - Updated dependencies [80c869b]
870
+ - @akinon/next@1.69.0-rc.5
871
+ - @akinon/pz-akifast@1.69.0-rc.5
872
+ - @akinon/pz-b2b@1.69.0-rc.5
873
+ - @akinon/pz-basket-gift-pack@1.69.0-rc.5
874
+ - @akinon/pz-bkm@1.69.0-rc.5
875
+ - @akinon/pz-checkout-gift-pack@1.69.0-rc.5
876
+ - @akinon/pz-click-collect@1.69.0-rc.5
877
+ - @akinon/pz-credit-payment@1.69.0-rc.5
878
+ - @akinon/pz-gpay@1.69.0-rc.5
879
+ - @akinon/pz-masterpass@1.69.0-rc.5
880
+ - @akinon/pz-one-click-checkout@1.69.0-rc.5
881
+ - @akinon/pz-otp@1.69.0-rc.5
882
+ - @akinon/pz-pay-on-delivery@1.69.0-rc.5
883
+ - @akinon/pz-saved-card@1.69.0-rc.5
884
+ - @akinon/pz-tabby-extension@1.69.0-rc.5
885
+
886
+ ## 1.69.0-rc.4
887
+
888
+ ### Minor Changes
889
+
890
+ - 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
891
+
892
+ ### Patch Changes
893
+
894
+ - Updated dependencies [063da74]
895
+ - @akinon/next@1.69.0-rc.4
896
+ - @akinon/pz-akifast@1.69.0-rc.4
897
+ - @akinon/pz-b2b@1.69.0-rc.4
898
+ - @akinon/pz-basket-gift-pack@1.69.0-rc.4
899
+ - @akinon/pz-bkm@1.69.0-rc.4
900
+ - @akinon/pz-checkout-gift-pack@1.69.0-rc.4
901
+ - @akinon/pz-click-collect@1.69.0-rc.4
902
+ - @akinon/pz-credit-payment@1.69.0-rc.4
903
+ - @akinon/pz-gpay@1.69.0-rc.4
904
+ - @akinon/pz-masterpass@1.69.0-rc.4
905
+ - @akinon/pz-one-click-checkout@1.69.0-rc.4
906
+ - @akinon/pz-otp@1.69.0-rc.4
907
+ - @akinon/pz-pay-on-delivery@1.69.0-rc.4
908
+ - @akinon/pz-saved-card@1.69.0-rc.4
909
+ - @akinon/pz-tabby-extension@1.69.0-rc.4
910
+
911
+ ## 1.69.0-rc.3
912
+
913
+ ### Minor Changes
914
+
915
+ - cbdb0c8: ZERO-3010: Move pretty url page into project
916
+
917
+ ### Patch Changes
918
+
919
+ - Updated dependencies [cbdb0c8]
920
+ - @akinon/next@1.69.0-rc.3
921
+ - @akinon/pz-akifast@1.69.0-rc.3
922
+ - @akinon/pz-b2b@1.69.0-rc.3
923
+ - @akinon/pz-basket-gift-pack@1.69.0-rc.3
924
+ - @akinon/pz-bkm@1.69.0-rc.3
925
+ - @akinon/pz-checkout-gift-pack@1.69.0-rc.3
926
+ - @akinon/pz-click-collect@1.69.0-rc.3
927
+ - @akinon/pz-credit-payment@1.69.0-rc.3
928
+ - @akinon/pz-gpay@1.69.0-rc.3
929
+ - @akinon/pz-masterpass@1.69.0-rc.3
930
+ - @akinon/pz-one-click-checkout@1.69.0-rc.3
931
+ - @akinon/pz-otp@1.69.0-rc.3
932
+ - @akinon/pz-pay-on-delivery@1.69.0-rc.3
933
+ - @akinon/pz-saved-card@1.69.0-rc.3
934
+ - @akinon/pz-tabby-extension@1.69.0-rc.3
935
+
936
+ ## 1.69.0-rc.2
937
+
938
+ ### Patch Changes
939
+
940
+ - Updated dependencies [5632a99]
941
+ - @akinon/next@1.69.0-rc.2
942
+ - @akinon/pz-akifast@1.69.0-rc.2
943
+ - @akinon/pz-b2b@1.69.0-rc.2
944
+ - @akinon/pz-basket-gift-pack@1.69.0-rc.2
945
+ - @akinon/pz-bkm@1.69.0-rc.2
946
+ - @akinon/pz-checkout-gift-pack@1.69.0-rc.2
947
+ - @akinon/pz-click-collect@1.69.0-rc.2
948
+ - @akinon/pz-credit-payment@1.69.0-rc.2
949
+ - @akinon/pz-gpay@1.69.0-rc.2
950
+ - @akinon/pz-masterpass@1.69.0-rc.2
951
+ - @akinon/pz-one-click-checkout@1.69.0-rc.2
952
+ - @akinon/pz-otp@1.69.0-rc.2
953
+ - @akinon/pz-pay-on-delivery@1.69.0-rc.2
954
+ - @akinon/pz-saved-card@1.69.0-rc.2
955
+ - @akinon/pz-tabby-extension@1.69.0-rc.2
956
+
957
+ ## 1.69.0-rc.1
958
+
959
+ ### Patch Changes
960
+
961
+ - Updated dependencies [72da021]
962
+ - @akinon/next@1.69.0-rc.1
963
+ - @akinon/pz-akifast@1.69.0-rc.1
964
+ - @akinon/pz-b2b@1.69.0-rc.1
965
+ - @akinon/pz-basket-gift-pack@1.69.0-rc.1
966
+ - @akinon/pz-bkm@1.69.0-rc.1
967
+ - @akinon/pz-checkout-gift-pack@1.69.0-rc.1
968
+ - @akinon/pz-click-collect@1.69.0-rc.1
969
+ - @akinon/pz-credit-payment@1.69.0-rc.1
970
+ - @akinon/pz-gpay@1.69.0-rc.1
971
+ - @akinon/pz-masterpass@1.69.0-rc.1
972
+ - @akinon/pz-one-click-checkout@1.69.0-rc.1
973
+ - @akinon/pz-otp@1.69.0-rc.1
974
+ - @akinon/pz-pay-on-delivery@1.69.0-rc.1
975
+ - @akinon/pz-saved-card@1.69.0-rc.1
976
+ - @akinon/pz-tabby-extension@1.69.0-rc.1
977
+
978
+ ## 1.69.0-rc.0
979
+
980
+ ### Minor Changes
981
+
982
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
983
+
984
+ ### Patch Changes
985
+
986
+ - Updated dependencies [4d3deb4]
987
+ - @akinon/next@1.69.0-rc.0
988
+ - @akinon/pz-akifast@1.69.0-rc.0
989
+ - @akinon/pz-b2b@1.69.0-rc.0
990
+ - @akinon/pz-basket-gift-pack@1.69.0-rc.0
991
+ - @akinon/pz-bkm@1.69.0-rc.0
992
+ - @akinon/pz-checkout-gift-pack@1.69.0-rc.0
993
+ - @akinon/pz-click-collect@1.69.0-rc.0
994
+ - @akinon/pz-credit-payment@1.69.0-rc.0
995
+ - @akinon/pz-gpay@1.69.0-rc.0
996
+ - @akinon/pz-masterpass@1.69.0-rc.0
997
+ - @akinon/pz-one-click-checkout@1.69.0-rc.0
998
+ - @akinon/pz-otp@1.69.0-rc.0
999
+ - @akinon/pz-pay-on-delivery@1.69.0-rc.0
1000
+ - @akinon/pz-saved-card@1.69.0-rc.0
1001
+ - @akinon/pz-tabby-extension@1.69.0-rc.0
321
1002
 
322
1003
  ## 1.68.0
323
1004
 
@@ -668,28 +1349,401 @@
668
1349
 
669
1350
  ### Minor Changes
670
1351
 
1352
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1353
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
1354
+ - 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
1355
+ - 8217463: ZERO-2887: Add LoaderSpinner to Filters component
1356
+ - 27a5296d: ZERO-2631:Fix Checkbox Click
1357
+ - 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
1358
+ - bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
1359
+ - e665a0ac: ZERO-2625: Add click outside functionality to close mobile menu
1360
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
1361
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
1362
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
1363
+ - 9b6bf91e: ZERO-2660: Change campaings to campaigns
1364
+ - 74a12699: ZERO-2658:Edit product name clickability on completed order page
1365
+ - d3474c64: ZERO-2655: Add data source shipping option
1366
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1367
+ - 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
1368
+ - 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
1369
+ - 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
1370
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1371
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1372
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1373
+ - fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
1374
+ - 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
1375
+ - f3d076b: ZERO-2864: create tabby extension plugin
1376
+ - f046f8e0: ZERO-2575: update version for react-number-format
1377
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
1378
+
1379
+ ### Patch Changes
1380
+
1381
+ - Updated dependencies [c416d18]
1382
+ - Updated dependencies [572d2e84]
1383
+ - Updated dependencies [5dfeea0]
1384
+ - Updated dependencies [0e25399]
1385
+ - Updated dependencies [a4c8d6a9]
1386
+ - Updated dependencies [fda5b927]
1387
+ - Updated dependencies [2d9b2b2c]
1388
+ - Updated dependencies [c53ea3e6]
1389
+ - Updated dependencies [714e0b46]
1390
+ - Updated dependencies [6c25f66]
1391
+ - Updated dependencies [bc2b4117]
1392
+ - Updated dependencies [3bf2dd9]
1393
+ - Updated dependencies [e9541a13]
1394
+ - Updated dependencies [c53ef7b9]
1395
+ - Updated dependencies [2e6104d]
1396
+ - Updated dependencies [64699d3f]
1397
+ - Updated dependencies [0d3a913e]
1398
+ - Updated dependencies [7b05522]
1399
+ - Updated dependencies [d6edb1d]
1400
+ - Updated dependencies [d3474c64]
1401
+ - Updated dependencies [17f87524]
1402
+ - Updated dependencies [29ead87]
1403
+ - Updated dependencies [c45b62c]
1404
+ - Updated dependencies [91265bba]
1405
+ - Updated dependencies [bbe18b9f]
1406
+ - Updated dependencies [d4099960]
1407
+ - Updated dependencies [4920742]
1408
+ - Updated dependencies [12a873e]
1409
+ - Updated dependencies [7e56d6b]
1410
+ - Updated dependencies [94b69285]
1411
+ - Updated dependencies [98bb8dcd]
1412
+ - Updated dependencies [dcc8a150]
1413
+ - Updated dependencies [8f47cca]
1414
+ - Updated dependencies [fad27689]
1415
+ - Updated dependencies [dff0d595]
1416
+ - Updated dependencies [fdd0b41]
1417
+ - Updated dependencies [f2c325c]
1418
+ - Updated dependencies [9e25a64]
1419
+ - Updated dependencies [beb499e6]
1420
+ - Updated dependencies [f2c92d5c]
1421
+ - Updated dependencies [7bd3d992]
1422
+ - Updated dependencies [f3d076b]
1423
+ - Updated dependencies [f046f8e0]
1424
+ - Updated dependencies [49eeebf]
1425
+ - Updated dependencies [86d25315]
1426
+ - Updated dependencies [3f9b8d7e]
1427
+ - @akinon/next@1.56.0-rc.8
1428
+ - @akinon/pz-tabby-extension@1.56.0-rc.8
1429
+ - @akinon/pz-click-collect@1.56.0-rc.8
1430
+ - @akinon/pz-checkout-gift-pack@1.56.0-rc.8
1431
+ - @akinon/pz-one-click-checkout@1.56.0-rc.8
1432
+ - @akinon/pz-basket-gift-pack@1.56.0-rc.8
1433
+ - @akinon/pz-pay-on-delivery@1.56.0-rc.8
1434
+ - @akinon/pz-credit-payment@1.56.0-rc.8
1435
+ - @akinon/pz-masterpass@1.56.0-rc.8
1436
+ - @akinon/pz-akifast@1.56.0-rc.8
1437
+ - @akinon/pz-gpay@1.56.0-rc.8
1438
+ - @akinon/pz-b2b@1.56.0-rc.8
1439
+ - @akinon/pz-bkm@1.56.0-rc.8
1440
+ - @akinon/pz-otp@1.56.0-rc.8
1441
+
1442
+ ## 1.56.0-rc.7
1443
+
1444
+ ### Patch Changes
1445
+
1446
+ - Updated dependencies [0e25399]
1447
+ - @akinon/pz-tabby-extension@1.56.0-rc.7
1448
+ - @akinon/next@1.56.0-rc.7
1449
+ - @akinon/pz-akifast@1.56.0-rc.7
1450
+ - @akinon/pz-b2b@1.56.0-rc.7
1451
+ - @akinon/pz-basket-gift-pack@1.56.0-rc.7
1452
+ - @akinon/pz-bkm@1.56.0-rc.7
1453
+ - @akinon/pz-checkout-gift-pack@1.56.0-rc.7
1454
+ - @akinon/pz-click-collect@1.56.0-rc.7
1455
+ - @akinon/pz-credit-payment@1.56.0-rc.7
1456
+ - @akinon/pz-gpay@1.56.0-rc.7
1457
+ - @akinon/pz-masterpass@1.56.0-rc.7
1458
+ - @akinon/pz-one-click-checkout@1.56.0-rc.7
1459
+ - @akinon/pz-otp@1.56.0-rc.7
1460
+ - @akinon/pz-pay-on-delivery@1.56.0-rc.7
1461
+
1462
+ ## 1.56.0-rc.6
1463
+
1464
+ ### Minor Changes
1465
+
1466
+ - f3d076b: ZERO-2864: create tabby extension plugin
1467
+
1468
+ ### Patch Changes
1469
+
1470
+ - Updated dependencies [f3d076b]
1471
+ - @akinon/next@1.56.0-rc.6
1472
+ - @akinon/pz-akifast@1.56.0-rc.6
1473
+ - @akinon/pz-b2b@1.56.0-rc.6
1474
+ - @akinon/pz-basket-gift-pack@1.56.0-rc.6
1475
+ - @akinon/pz-bkm@1.56.0-rc.6
1476
+ - @akinon/pz-checkout-gift-pack@1.56.0-rc.6
1477
+ - @akinon/pz-click-collect@1.56.0-rc.6
1478
+ - @akinon/pz-credit-payment@1.56.0-rc.6
1479
+ - @akinon/pz-gpay@1.56.0-rc.6
1480
+ - @akinon/pz-masterpass@1.56.0-rc.6
1481
+ - @akinon/pz-one-click-checkout@1.56.0-rc.6
1482
+ - @akinon/pz-otp@1.56.0-rc.6
1483
+ - @akinon/pz-pay-on-delivery@1.56.0-rc.6
1484
+
1485
+ ## 1.56.0-rc.5
1486
+
1487
+ ### Patch Changes
1488
+
1489
+ - Updated dependencies [c416d18]
1490
+ - @akinon/next@1.56.0-rc.5
1491
+ - @akinon/pz-akifast@1.56.0-rc.5
1492
+ - @akinon/pz-b2b@1.56.0-rc.5
1493
+ - @akinon/pz-basket-gift-pack@1.56.0-rc.5
1494
+ - @akinon/pz-bkm@1.56.0-rc.5
1495
+ - @akinon/pz-checkout-gift-pack@1.56.0-rc.5
1496
+ - @akinon/pz-click-collect@1.56.0-rc.5
1497
+ - @akinon/pz-credit-payment@1.56.0-rc.5
1498
+ - @akinon/pz-gpay@1.56.0-rc.5
1499
+ - @akinon/pz-masterpass@1.56.0-rc.5
1500
+ - @akinon/pz-one-click-checkout@1.56.0-rc.5
1501
+ - @akinon/pz-otp@1.56.0-rc.5
1502
+ - @akinon/pz-pay-on-delivery@1.56.0-rc.5
1503
+
1504
+ ## 1.56.0-rc.4
1505
+
1506
+ ### Minor Changes
1507
+
1508
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1509
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
1510
+ - 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
1511
+ - 8217463: ZERO-2887: Add LoaderSpinner to Filters component
1512
+ - 27a5296d: ZERO-2631:Fix Checkbox Click
1513
+ - 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
1514
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1515
+ - e665a0ac: ZERO-2625: Add click outside functionality to close mobile menu
1516
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
1517
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1518
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
1519
+ - 9b6bf91e: ZERO-2660: Change campaings to campaigns
1520
+ - 74a12699: ZERO-2658:Edit product name clickability on completed order page
1521
+ - d3474c64: ZERO-2655: Add data source shipping option
1522
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1523
+ - 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
1524
+ - 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
1525
+ - 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
1526
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1527
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1528
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1529
+ - fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
1530
+ - 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
1531
+ - f046f8e0: ZERO-2575: update version for react-number-format
671
1532
  - b9273fd: ZERO-2889: add host headers to requests
1533
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
672
1534
 
673
1535
  ### Patch Changes
674
1536
 
1537
+ - Updated dependencies [572d2e84]
1538
+ - Updated dependencies [5dfeea0]
1539
+ - Updated dependencies [a4c8d6a9]
1540
+ - Updated dependencies [fda5b927]
1541
+ - Updated dependencies [2d9b2b2c]
1542
+ - Updated dependencies [c53ea3e6]
675
1543
  - Updated dependencies [d93a507]
1544
+ - Updated dependencies [714e0b46]
1545
+ - Updated dependencies [6c25f66]
1546
+ - Updated dependencies [bc2b411]
1547
+ - Updated dependencies [3bf2dd9]
1548
+ - Updated dependencies [e9541a13]
1549
+ - Updated dependencies [c53ef7b9]
1550
+ - Updated dependencies [2e6104d]
1551
+ - Updated dependencies [64699d3]
1552
+ - Updated dependencies [0d3a913e]
1553
+ - Updated dependencies [7b05522]
1554
+ - Updated dependencies [d6edb1d]
1555
+ - Updated dependencies [d3474c64]
1556
+ - Updated dependencies [17f8752]
1557
+ - Updated dependencies [29ead87]
1558
+ - Updated dependencies [c45b62c]
1559
+ - Updated dependencies [91265bba]
1560
+ - Updated dependencies [bbe18b9f]
1561
+ - Updated dependencies [d4099960]
1562
+ - Updated dependencies [4920742]
1563
+ - Updated dependencies [12a873e]
676
1564
  - Updated dependencies [674badc]
1565
+ - Updated dependencies [7e56d6b]
1566
+ - Updated dependencies [94b69285]
1567
+ - Updated dependencies [98bb8dcd]
677
1568
  - Updated dependencies [207ac6e]
1569
+ - Updated dependencies [dcc8a150]
1570
+ - Updated dependencies [8f47cca]
1571
+ - Updated dependencies [fad27689]
1572
+ - Updated dependencies [dff0d595]
1573
+ - Updated dependencies [fdd0b41]
1574
+ - Updated dependencies [f2c325c]
1575
+ - Updated dependencies [9e25a64]
1576
+ - Updated dependencies [beb499e6]
1577
+ - Updated dependencies [f2c92d5c]
1578
+ - Updated dependencies [7bd3d99]
1579
+ - Updated dependencies [f046f8e0]
678
1580
  - Updated dependencies [b9273fd]
1581
+ - Updated dependencies [49eeebf]
1582
+ - Updated dependencies [86d25315]
679
1583
  - Updated dependencies [c670bd4]
680
- - @akinon/next@1.56.0
681
- - @akinon/pz-akifast@1.56.0
682
- - @akinon/pz-b2b@1.56.0
683
- - @akinon/pz-basket-gift-pack@1.56.0
684
- - @akinon/pz-bkm@1.56.0
685
- - @akinon/pz-checkout-gift-pack@1.56.0
686
- - @akinon/pz-click-collect@1.56.0
687
- - @akinon/pz-credit-payment@1.56.0
688
- - @akinon/pz-gpay@1.56.0
689
- - @akinon/pz-masterpass@1.56.0
690
- - @akinon/pz-one-click-checkout@1.56.0
691
- - @akinon/pz-otp@1.56.0
692
- - @akinon/pz-pay-on-delivery@1.56.0
1584
+ - Updated dependencies [3f9b8d7]
1585
+ - @akinon/next@1.56.0-rc.4
1586
+ - @akinon/pz-click-collect@1.56.0-rc.4
1587
+ - @akinon/pz-checkout-gift-pack@1.56.0-rc.4
1588
+ - @akinon/pz-one-click-checkout@1.56.0-rc.4
1589
+ - @akinon/pz-basket-gift-pack@1.56.0-rc.4
1590
+ - @akinon/pz-pay-on-delivery@1.56.0-rc.4
1591
+ - @akinon/pz-credit-payment@1.56.0-rc.4
1592
+ - @akinon/pz-masterpass@1.56.0-rc.4
1593
+ - @akinon/pz-akifast@1.56.0-rc.4
1594
+ - @akinon/pz-gpay@1.56.0-rc.4
1595
+ - @akinon/pz-b2b@1.56.0-rc.4
1596
+ - @akinon/pz-bkm@1.56.0-rc.4
1597
+ - @akinon/pz-otp@1.56.0-rc.4
1598
+
1599
+ ## 1.56.0-rc.3
1600
+
1601
+ ### Patch Changes
1602
+
1603
+ - Updated dependencies [674badc]
1604
+ - @akinon/next@1.56.0-rc.3
1605
+ - @akinon/pz-akifast@1.56.0-rc.3
1606
+ - @akinon/pz-b2b@1.56.0-rc.3
1607
+ - @akinon/pz-basket-gift-pack@1.56.0-rc.3
1608
+ - @akinon/pz-bkm@1.56.0-rc.3
1609
+ - @akinon/pz-checkout-gift-pack@1.56.0-rc.3
1610
+ - @akinon/pz-click-collect@1.56.0-rc.3
1611
+ - @akinon/pz-credit-payment@1.56.0-rc.3
1612
+ - @akinon/pz-gpay@1.56.0-rc.3
1613
+ - @akinon/pz-masterpass@1.56.0-rc.3
1614
+ - @akinon/pz-one-click-checkout@1.56.0-rc.3
1615
+ - @akinon/pz-otp@1.56.0-rc.3
1616
+ - @akinon/pz-pay-on-delivery@1.56.0-rc.3
1617
+
1618
+ ## 1.56.0-rc.2
1619
+
1620
+ ### Patch Changes
1621
+
1622
+ - Updated dependencies [7b05522]
1623
+ - Updated dependencies [29ead87]
1624
+ - @akinon/next@1.56.0-rc.2
1625
+ - @akinon/pz-otp@1.56.0-rc.2
1626
+ - @akinon/pz-akifast@1.56.0-rc.2
1627
+ - @akinon/pz-b2b@1.56.0-rc.2
1628
+ - @akinon/pz-basket-gift-pack@1.56.0-rc.2
1629
+ - @akinon/pz-bkm@1.56.0-rc.2
1630
+ - @akinon/pz-checkout-gift-pack@1.56.0-rc.2
1631
+ - @akinon/pz-click-collect@1.56.0-rc.2
1632
+ - @akinon/pz-credit-payment@1.56.0-rc.2
1633
+ - @akinon/pz-gpay@1.56.0-rc.2
1634
+ - @akinon/pz-masterpass@1.56.0-rc.2
1635
+ - @akinon/pz-one-click-checkout@1.56.0-rc.2
1636
+ - @akinon/pz-pay-on-delivery@1.56.0-rc.2
1637
+
1638
+ ## 1.56.0-rc.1
1639
+
1640
+ ### Patch Changes
1641
+
1642
+ - Updated dependencies [207ac6e]
1643
+ - @akinon/next@1.56.0-rc.1
1644
+ - @akinon/pz-akifast@1.56.0-rc.1
1645
+ - @akinon/pz-b2b@1.56.0-rc.1
1646
+ - @akinon/pz-basket-gift-pack@1.56.0-rc.1
1647
+ - @akinon/pz-bkm@1.56.0-rc.1
1648
+ - @akinon/pz-checkout-gift-pack@1.56.0-rc.1
1649
+ - @akinon/pz-click-collect@1.56.0-rc.1
1650
+ - @akinon/pz-credit-payment@1.56.0-rc.1
1651
+ - @akinon/pz-gpay@1.56.0-rc.1
1652
+ - @akinon/pz-masterpass@1.56.0-rc.1
1653
+ - @akinon/pz-one-click-checkout@1.56.0-rc.1
1654
+ - @akinon/pz-otp@1.56.0-rc.1
1655
+ - @akinon/pz-pay-on-delivery@1.56.0-rc.1
1656
+
1657
+ ## 1.56.0-rc.0
1658
+
1659
+ ### Minor Changes
1660
+
1661
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1662
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
1663
+ - 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
1664
+ - 8217463: ZERO-2887: Add LoaderSpinner to Filters component
1665
+ - 27a5296d: ZERO-2631:Fix Checkbox Click
1666
+ - 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
1667
+ - bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
1668
+ - e665a0ac: ZERO-2625: Add click outside functionality to close mobile menu
1669
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
1670
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
1671
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
1672
+ - 9b6bf91e: ZERO-2660: Change campaings to campaigns
1673
+ - 74a12699: ZERO-2658:Edit product name clickability on completed order page
1674
+ - d3474c64: ZERO-2655: Add data source shipping option
1675
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1676
+ - 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
1677
+ - 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
1678
+ - 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
1679
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1680
+ - 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
1681
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1682
+ - fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
1683
+ - 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
1684
+ - f046f8e0: ZERO-2575: update version for react-number-format
1685
+ - b9273fd3: ZERO-2889: add host headers to requests
1686
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
1687
+
1688
+ ### Patch Changes
1689
+
1690
+ - Updated dependencies [572d2e84]
1691
+ - Updated dependencies [5dfeea0]
1692
+ - Updated dependencies [a4c8d6a9]
1693
+ - Updated dependencies [fda5b927]
1694
+ - Updated dependencies [2d9b2b2c]
1695
+ - Updated dependencies [c53ea3e6]
1696
+ - Updated dependencies [d93a507]
1697
+ - Updated dependencies [714e0b46]
1698
+ - Updated dependencies [6c25f666]
1699
+ - Updated dependencies [bc2b4117]
1700
+ - Updated dependencies [3bf2dd94]
1701
+ - Updated dependencies [e9541a13]
1702
+ - Updated dependencies [c53ef7b9]
1703
+ - Updated dependencies [2e6104d]
1704
+ - Updated dependencies [64699d3f]
1705
+ - Updated dependencies [0d3a913e]
1706
+ - Updated dependencies [d6edb1d0]
1707
+ - Updated dependencies [d3474c64]
1708
+ - Updated dependencies [17f87524]
1709
+ - Updated dependencies [c45b62c9]
1710
+ - Updated dependencies [91265bba]
1711
+ - Updated dependencies [bbe18b9f]
1712
+ - Updated dependencies [d4099960]
1713
+ - Updated dependencies [4920742c]
1714
+ - Updated dependencies [12a873e]
1715
+ - Updated dependencies [7e56d6b6]
1716
+ - Updated dependencies [94b69285]
1717
+ - Updated dependencies [98bb8dcd]
1718
+ - Updated dependencies [dcc8a150]
1719
+ - Updated dependencies [8f47ccae]
1720
+ - Updated dependencies [fad27689]
1721
+ - Updated dependencies [dff0d595]
1722
+ - Updated dependencies [fdd0b41]
1723
+ - Updated dependencies [f2c325c1]
1724
+ - Updated dependencies [9e25a64b]
1725
+ - Updated dependencies [beb499e6]
1726
+ - Updated dependencies [f2c92d5c]
1727
+ - Updated dependencies [7bd3d992]
1728
+ - Updated dependencies [f046f8e0]
1729
+ - Updated dependencies [b9273fd3]
1730
+ - Updated dependencies [49eeebf]
1731
+ - Updated dependencies [86d25315]
1732
+ - Updated dependencies [c670bd48]
1733
+ - Updated dependencies [3f9b8d7e]
1734
+ - @akinon/next@1.56.0-rc.0
1735
+ - @akinon/pz-click-collect@1.56.0-rc.0
1736
+ - @akinon/pz-checkout-gift-pack@1.56.0-rc.0
1737
+ - @akinon/pz-one-click-checkout@1.56.0-rc.0
1738
+ - @akinon/pz-basket-gift-pack@1.56.0-rc.0
1739
+ - @akinon/pz-pay-on-delivery@1.56.0-rc.0
1740
+ - @akinon/pz-credit-payment@1.56.0-rc.0
1741
+ - @akinon/pz-masterpass@1.56.0-rc.0
1742
+ - @akinon/pz-akifast@1.56.0-rc.0
1743
+ - @akinon/pz-gpay@1.56.0-rc.0
1744
+ - @akinon/pz-b2b@1.56.0-rc.0
1745
+ - @akinon/pz-bkm@1.56.0-rc.0
1746
+ - @akinon/pz-otp@1.56.0-rc.0
693
1747
 
694
1748
  ## 1.55.0
695
1749
 
@@ -832,22 +1886,222 @@
832
1886
 
833
1887
  ### Patch Changes
834
1888
 
835
- - Updated dependencies [eaf97d6]
836
- - @akinon/next@1.50.0
837
- - @akinon/pz-akifast@1.50.0
838
- - @akinon/pz-b2b@1.50.0
839
- - @akinon/pz-basket-gift-pack@1.50.0
840
- - @akinon/pz-bkm@1.50.0
841
- - @akinon/pz-checkout-gift-pack@1.50.0
842
- - @akinon/pz-click-collect@1.50.0
843
- - @akinon/pz-credit-payment@1.50.0
844
- - @akinon/pz-gpay@1.50.0
845
- - @akinon/pz-masterpass@1.50.0
846
- - @akinon/pz-one-click-checkout@1.50.0
847
- - @akinon/pz-otp@1.50.0
848
- - @akinon/pz-pay-on-delivery@1.50.0
1889
+ - Updated dependencies [90282b53]
1890
+ - Updated dependencies [50b90692]
1891
+ - Updated dependencies [572d2e84]
1892
+ - Updated dependencies [5dfeea0]
1893
+ - Updated dependencies [a4c8d6a9]
1894
+ - Updated dependencies [fda5b927]
1895
+ - Updated dependencies [2d9b2b2]
1896
+ - Updated dependencies [c53ea3e6]
1897
+ - Updated dependencies [d93a507]
1898
+ - Updated dependencies [8d9ac9a]
1899
+ - Updated dependencies [18e8197]
1900
+ - Updated dependencies [714e0b46]
1901
+ - Updated dependencies [70279e7]
1902
+ - Updated dependencies [6c25f66]
1903
+ - Updated dependencies [bc2b411]
1904
+ - Updated dependencies [3bf2dd9]
1905
+ - Updated dependencies [e9541a1]
1906
+ - Updated dependencies [c53ef7b9]
1907
+ - Updated dependencies [9d94f7e]
1908
+ - Updated dependencies [2e6104d]
1909
+ - Updated dependencies [64699d3]
1910
+ - Updated dependencies [0d3a913e]
1911
+ - Updated dependencies [1448a96e]
1912
+ - Updated dependencies [1ec2e9d]
1913
+ - Updated dependencies [d6edb1d]
1914
+ - Updated dependencies [d3474c64]
1915
+ - Updated dependencies [75080fd6]
1916
+ - Updated dependencies [17f8752]
1917
+ - Updated dependencies [c45b62c]
1918
+ - Updated dependencies [91265bba]
1919
+ - Updated dependencies [bbe18b9f]
1920
+ - Updated dependencies [d4099960]
1921
+ - Updated dependencies [4920742]
1922
+ - Updated dependencies [12a873e]
1923
+ - Updated dependencies [69ca0801]
1924
+ - Updated dependencies [7e56d6b]
1925
+ - Updated dependencies [94b6928]
1926
+ - Updated dependencies [98bb8dcd]
1927
+ - Updated dependencies [46b7aad7]
1928
+ - Updated dependencies [dcc8a150]
1929
+ - Updated dependencies [8f47cca]
1930
+ - Updated dependencies [fad27689]
1931
+ - Updated dependencies [dff0d595]
1932
+ - Updated dependencies [fdd0b41]
1933
+ - Updated dependencies [eecb282]
1934
+ - Updated dependencies [f2c325c]
1935
+ - Updated dependencies [9e25a64]
1936
+ - Updated dependencies [beb499e6]
1937
+ - Updated dependencies [146ea391]
1938
+ - Updated dependencies [f2c92d5]
1939
+ - Updated dependencies [7bd3d99]
1940
+ - Updated dependencies [c47be30d]
1941
+ - Updated dependencies [e9a46acb]
1942
+ - Updated dependencies [f046f8e0]
1943
+ - Updated dependencies [b9273fd]
1944
+ - Updated dependencies [49eeebf]
1945
+ - Updated dependencies [86d25315]
1946
+ - Updated dependencies [c670bd4]
1947
+ - Updated dependencies [3f9b8d7]
1948
+ - Updated dependencies [3d35f70]
1949
+ - @akinon/next@1.50.0-rc.2
1950
+ - @akinon/pz-checkout-gift-pack@1.50.0-rc.2
1951
+ - @akinon/pz-one-click-checkout@1.50.0-rc.2
1952
+ - @akinon/pz-basket-gift-pack@1.50.0-rc.2
1953
+ - @akinon/pz-click-collect@1.50.0-rc.2
1954
+ - @akinon/pz-masterpass@1.50.0-rc.2
1955
+ - @akinon/pz-akifast@1.50.0-rc.2
1956
+ - @akinon/pz-gpay@1.50.0-rc.2
1957
+ - @akinon/pz-b2b@1.50.0-rc.2
1958
+ - @akinon/pz-bkm@1.50.0-rc.2
1959
+ - @akinon/pz-otp@1.50.0-rc.2
1960
+ - @akinon/pz-pay-on-delivery@1.50.0-rc.2
1961
+ - @akinon/pz-credit-payment@1.50.0-rc.2
1962
+
1963
+ ## 1.50.0-rc.1
849
1964
 
850
- ## 1.49.0
1965
+ ### Patch Changes
1966
+
1967
+ - Updated dependencies [49eeebf]
1968
+ - @akinon/next@1.50.0-rc.1
1969
+ - @akinon/pz-akifast@1.50.0-rc.1
1970
+ - @akinon/pz-b2b@1.50.0-rc.1
1971
+ - @akinon/pz-basket-gift-pack@1.50.0-rc.1
1972
+ - @akinon/pz-bkm@1.50.0-rc.1
1973
+ - @akinon/pz-checkout-gift-pack@1.50.0-rc.1
1974
+ - @akinon/pz-click-collect@1.50.0-rc.1
1975
+ - @akinon/pz-credit-payment@1.50.0-rc.1
1976
+ - @akinon/pz-gpay@1.50.0-rc.1
1977
+ - @akinon/pz-masterpass@1.50.0-rc.1
1978
+ - @akinon/pz-one-click-checkout@1.50.0-rc.1
1979
+ - @akinon/pz-otp@1.50.0-rc.1
1980
+ - @akinon/pz-pay-on-delivery@1.50.0-rc.1
1981
+
1982
+ ## 1.50.0-rc.0
1983
+
1984
+ ### Minor Changes
1985
+
1986
+ - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
1987
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1988
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
1989
+ - 97b8bdc9: ZERO-2724: Remove onClick event in shipping options component
1990
+ - 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
1991
+ - 7521265: ZERO-2787: Fix hover classname for favorite item
1992
+ - 8217463: ZERO-2887: Add LoaderSpinner to Filters component
1993
+ - 27a5296d: ZERO-2631:Fix Checkbox Click
1994
+ - 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
1995
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1996
+ - e665a0ac: ZERO-2625: Add click outside functionality to close mobile menu
1997
+ - 52c13732: ZERO-2619: Added fix flag for the staged linter
1998
+ - 552ee8a: ZERO-2777: fix link component usage
1999
+ - 03c4c3eb: ZERO-2731: Update Project Zero CLI command
2000
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
2001
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
2002
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
2003
+ - 778a9a0b: ZERO-2740: Upgrade next to 14.2.4
2004
+ - 9b6bf91e: ZERO-2660: Change campaings to campaigns
2005
+ - 06650cab: ZERO-2620: Remove unnecessary pointer-events-none class
2006
+ - 74a12699: ZERO-2658:Edit product name clickability on completed order page
2007
+ - 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
2008
+ - d3474c64: ZERO-2655: Add data source shipping option
2009
+ - d2f0f15c: ZERO-2723: Update sentry version and dependencies
2010
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
2011
+ - 9609eb2: ZERO-2779: Upgrade for tailwind
2012
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
2013
+ - 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
2014
+ - 959e1fa: ZERO-2778: Upgrade for nextjs
2015
+ - 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
2016
+ - 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
2017
+ - dfabc06: ZERO-2836: Upgrade version for tailwind
2018
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
2019
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
2020
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
2021
+ - beb499e6: ZERO-2551: Add new tsconfig paths
2022
+ - fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
2023
+ - 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
2024
+ - e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
2025
+ - f046f8e0: ZERO-2575: update version for react-number-format
2026
+ - b9273fd: ZERO-2889: add host headers to requests
2027
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
2028
+
2029
+ ### Patch Changes
2030
+
2031
+ - Updated dependencies [90282b53]
2032
+ - Updated dependencies [50b90692]
2033
+ - Updated dependencies [572d2e84]
2034
+ - Updated dependencies [5dfeea0]
2035
+ - Updated dependencies [a4c8d6a9]
2036
+ - Updated dependencies [fda5b927]
2037
+ - Updated dependencies [2d9b2b2]
2038
+ - Updated dependencies [c53ea3e6]
2039
+ - Updated dependencies [d93a507]
2040
+ - Updated dependencies [8d9ac9a]
2041
+ - Updated dependencies [18e8197]
2042
+ - Updated dependencies [eaf97d6]
2043
+ - Updated dependencies [714e0b46]
2044
+ - Updated dependencies [70279e7]
2045
+ - Updated dependencies [6c25f66]
2046
+ - Updated dependencies [bc2b411]
2047
+ - Updated dependencies [3bf2dd9]
2048
+ - Updated dependencies [e9541a1]
2049
+ - Updated dependencies [c53ef7b9]
2050
+ - Updated dependencies [9d94f7e]
2051
+ - Updated dependencies [2e6104d]
2052
+ - Updated dependencies [64699d3]
2053
+ - Updated dependencies [0d3a913e]
2054
+ - Updated dependencies [1448a96e]
2055
+ - Updated dependencies [1ec2e9d]
2056
+ - Updated dependencies [d6edb1d]
2057
+ - Updated dependencies [d3474c64]
2058
+ - Updated dependencies [75080fd6]
2059
+ - Updated dependencies [17f8752]
2060
+ - Updated dependencies [c45b62c]
2061
+ - Updated dependencies [91265bba]
2062
+ - Updated dependencies [bbe18b9f]
2063
+ - Updated dependencies [d4099960]
2064
+ - Updated dependencies [4920742]
2065
+ - Updated dependencies [12a873e]
2066
+ - Updated dependencies [69ca080]
2067
+ - Updated dependencies [7e56d6b]
2068
+ - Updated dependencies [94b6928]
2069
+ - Updated dependencies [98bb8dcd]
2070
+ - Updated dependencies [46b7aad7]
2071
+ - Updated dependencies [dcc8a150]
2072
+ - Updated dependencies [8f47cca]
2073
+ - Updated dependencies [fad27689]
2074
+ - Updated dependencies [dff0d595]
2075
+ - Updated dependencies [fdd0b41]
2076
+ - Updated dependencies [eecb282]
2077
+ - Updated dependencies [f2c325c]
2078
+ - Updated dependencies [9e25a64]
2079
+ - Updated dependencies [beb499e6]
2080
+ - Updated dependencies [146ea391]
2081
+ - Updated dependencies [f2c92d5]
2082
+ - Updated dependencies [7bd3d99]
2083
+ - Updated dependencies [c47be30d]
2084
+ - Updated dependencies [e9a46acb]
2085
+ - Updated dependencies [f046f8e0]
2086
+ - Updated dependencies [b9273fd]
2087
+ - Updated dependencies [86d25315]
2088
+ - Updated dependencies [c670bd4]
2089
+ - Updated dependencies [3f9b8d7]
2090
+ - @akinon/next@1.50.0-rc.0
2091
+ - @akinon/pz-checkout-gift-pack@1.50.0-rc.0
2092
+ - @akinon/pz-one-click-checkout@1.50.0-rc.0
2093
+ - @akinon/pz-basket-gift-pack@1.50.0-rc.0
2094
+ - @akinon/pz-click-collect@1.50.0-rc.0
2095
+ - @akinon/pz-masterpass@1.50.0-rc.0
2096
+ - @akinon/pz-akifast@1.50.0-rc.0
2097
+ - @akinon/pz-gpay@1.50.0-rc.0
2098
+ - @akinon/pz-b2b@1.50.0-rc.0
2099
+ - @akinon/pz-bkm@1.50.0-rc.0
2100
+ - @akinon/pz-otp@1.50.0-rc.0
2101
+ - @akinon/pz-pay-on-delivery@1.50.0-rc.0
2102
+ - @akinon/pz-credit-payment@1.50.0-rc.0
2103
+
2104
+ ## 1.49.0
851
2105
 
852
2106
  ### Patch Changes
853
2107
 
@@ -873,23 +2127,480 @@
873
2127
 
874
2128
  ### Minor Changes
875
2129
 
2130
+ - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
2131
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
2132
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
2133
+ - 97b8bdc9: ZERO-2724: Remove onClick event in shipping options component
2134
+ - 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
2135
+ - 7521265: ZERO-2787: Fix hover classname for favorite item
2136
+ - 8217463: ZERO-2887: Add LoaderSpinner to Filters component
2137
+ - 27a5296d: ZERO-2631:Fix Checkbox Click
2138
+ - 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
2139
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
2140
+ - e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
2141
+ - 52c13732: ZERO-2619: Added fix flag for the staged linter
2142
+ - 552ee8a: ZERO-2777: fix link component usage
2143
+ - 03c4c3eb: ZERO-2731: Update Project Zero CLI command
2144
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
2145
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
2146
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
2147
+ - 778a9a0b: ZERO-2740: Upgrade next to 14.2.4
2148
+ - 9b6bf91e: ZERO-2660: Change campaings to campaigns
2149
+ - 06650cab: ZERO-2620: Remove unnecessary pointer-events-none class
2150
+ - 74a12699: ZERO-2658:Edit product name clickability on completed order page
2151
+ - 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
2152
+ - d3474c64: ZERO-2655: Add data source shipping option
2153
+ - d2f0f15c: ZERO-2723: Update sentry version and dependencies
2154
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
2155
+ - 9609eb2: ZERO-2779: Upgrade for tailwind
2156
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
2157
+ - 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
2158
+ - 959e1fa: ZERO-2778: Upgrade for nextjs
2159
+ - 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
2160
+ - 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
2161
+ - dfabc06: ZERO-2836: Upgrade version for tailwind
2162
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
2163
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
2164
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
2165
+ - beb499e6: ZERO-2551: Add new tsconfig paths
2166
+ - fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
2167
+ - 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
2168
+ - e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
2169
+ - f046f8e0: ZERO-2575: update version for react-number-format
2170
+ - b9273fd: ZERO-2889: add host headers to requests
2171
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
2172
+
2173
+ ### Patch Changes
2174
+
2175
+ - Updated dependencies [90282b53]
2176
+ - Updated dependencies [50b9069]
2177
+ - Updated dependencies [572d2e84]
2178
+ - Updated dependencies [5dfeea0]
2179
+ - Updated dependencies [a4c8d6a9]
2180
+ - Updated dependencies [fda5b927]
2181
+ - Updated dependencies [2d9b2b2]
2182
+ - Updated dependencies [c53ea3e6]
2183
+ - Updated dependencies [d93a507]
2184
+ - Updated dependencies [8d9ac9a]
2185
+ - Updated dependencies [18e8197]
2186
+ - Updated dependencies [714e0b46]
2187
+ - Updated dependencies [70279e7]
2188
+ - Updated dependencies [6c25f66]
2189
+ - Updated dependencies [bc2b411]
2190
+ - Updated dependencies [3bf2dd9]
2191
+ - Updated dependencies [e9541a1]
2192
+ - Updated dependencies [c53ef7b9]
2193
+ - Updated dependencies [9d94f7e]
2194
+ - Updated dependencies [2e6104d]
2195
+ - Updated dependencies [64699d3]
2196
+ - Updated dependencies [0d3a913e]
2197
+ - Updated dependencies [1448a96e]
2198
+ - Updated dependencies [26b809f]
2199
+ - Updated dependencies [1ec2e9d]
2200
+ - Updated dependencies [d6edb1d]
2201
+ - Updated dependencies [d3474c64]
2202
+ - Updated dependencies [75080fd6]
2203
+ - Updated dependencies [17f8752]
2204
+ - Updated dependencies [c45b62c]
2205
+ - Updated dependencies [91265bba]
2206
+ - Updated dependencies [20da358]
2207
+ - Updated dependencies [bbe18b9f]
2208
+ - Updated dependencies [d409996]
2209
+ - Updated dependencies [4920742]
2210
+ - Updated dependencies [12a873e]
2211
+ - Updated dependencies [69ca080]
2212
+ - Updated dependencies [7e56d6b]
2213
+ - Updated dependencies [94b6928]
2214
+ - Updated dependencies [98bb8dcd]
2215
+ - Updated dependencies [46b7aad7]
2216
+ - Updated dependencies [dcc8a150]
2217
+ - Updated dependencies [8f47cca]
2218
+ - Updated dependencies [fad27689]
2219
+ - Updated dependencies [dff0d595]
2220
+ - Updated dependencies [fdd0b41]
2221
+ - Updated dependencies [eecb282]
2222
+ - Updated dependencies [f2c325c]
2223
+ - Updated dependencies [9e25a64]
2224
+ - Updated dependencies [beb499e6]
2225
+ - Updated dependencies [146ea391]
2226
+ - Updated dependencies [f2c92d5]
2227
+ - Updated dependencies [7bd3d99]
2228
+ - Updated dependencies [c47be30d]
2229
+ - Updated dependencies [e9a46acb]
2230
+ - Updated dependencies [f046f8e0]
2231
+ - Updated dependencies [04115e5]
2232
+ - Updated dependencies [b9273fd]
2233
+ - Updated dependencies [fa88889]
2234
+ - Updated dependencies [86d25315]
2235
+ - Updated dependencies [c670bd4]
2236
+ - Updated dependencies [3f9b8d7]
2237
+ - @akinon/next@1.48.0-rc.8
2238
+ - @akinon/pz-checkout-gift-pack@1.48.0-rc.8
2239
+ - @akinon/pz-one-click-checkout@1.48.0-rc.8
2240
+ - @akinon/pz-basket-gift-pack@1.48.0-rc.8
2241
+ - @akinon/pz-click-collect@1.48.0-rc.8
2242
+ - @akinon/pz-masterpass@1.48.0-rc.8
2243
+ - @akinon/pz-akifast@1.48.0-rc.8
2244
+ - @akinon/pz-gpay@1.48.0-rc.8
2245
+ - @akinon/pz-b2b@1.48.0-rc.8
2246
+ - @akinon/pz-bkm@1.48.0-rc.8
2247
+ - @akinon/pz-otp@1.48.0-rc.8
2248
+ - @akinon/pz-pay-on-delivery@1.48.0-rc.8
2249
+ - @akinon/pz-credit-payment@1.48.0-rc.8
2250
+
2251
+ ## 1.48.0-rc.7
2252
+
2253
+ ### Patch Changes
2254
+
2255
+ - Updated dependencies [26b809f]
2256
+ - @akinon/next@1.48.0-rc.7
2257
+ - @akinon/pz-akifast@1.48.0-rc.7
2258
+ - @akinon/pz-b2b@1.48.0-rc.7
2259
+ - @akinon/pz-basket-gift-pack@1.48.0-rc.7
2260
+ - @akinon/pz-bkm@1.48.0-rc.7
2261
+ - @akinon/pz-checkout-gift-pack@1.48.0-rc.7
2262
+ - @akinon/pz-click-collect@1.48.0-rc.7
2263
+ - @akinon/pz-credit-payment@1.48.0-rc.7
2264
+ - @akinon/pz-gpay@1.48.0-rc.7
2265
+ - @akinon/pz-masterpass@1.48.0-rc.7
2266
+ - @akinon/pz-one-click-checkout@1.48.0-rc.7
2267
+ - @akinon/pz-otp@1.48.0-rc.7
2268
+ - @akinon/pz-pay-on-delivery@1.48.0-rc.7
2269
+
2270
+ ## 1.48.0-rc.6
2271
+
2272
+ ### Patch Changes
2273
+
2274
+ - Updated dependencies [04115e5]
2275
+ - @akinon/next@1.48.0-rc.6
2276
+ - @akinon/pz-akifast@1.48.0-rc.6
2277
+ - @akinon/pz-b2b@1.48.0-rc.6
2278
+ - @akinon/pz-basket-gift-pack@1.48.0-rc.6
2279
+ - @akinon/pz-bkm@1.48.0-rc.6
2280
+ - @akinon/pz-checkout-gift-pack@1.48.0-rc.6
2281
+ - @akinon/pz-click-collect@1.48.0-rc.6
2282
+ - @akinon/pz-credit-payment@1.48.0-rc.6
2283
+ - @akinon/pz-gpay@1.48.0-rc.6
2284
+ - @akinon/pz-masterpass@1.48.0-rc.6
2285
+ - @akinon/pz-one-click-checkout@1.48.0-rc.6
2286
+ - @akinon/pz-otp@1.48.0-rc.6
2287
+ - @akinon/pz-pay-on-delivery@1.48.0-rc.6
2288
+
2289
+ ## 1.48.0-rc.5
2290
+
2291
+ ### Patch Changes
2292
+
2293
+ - Updated dependencies [20da358]
2294
+ - @akinon/next@1.48.0-rc.5
2295
+ - @akinon/pz-akifast@1.48.0-rc.5
2296
+ - @akinon/pz-b2b@1.48.0-rc.5
2297
+ - @akinon/pz-basket-gift-pack@1.48.0-rc.5
2298
+ - @akinon/pz-bkm@1.48.0-rc.5
2299
+ - @akinon/pz-checkout-gift-pack@1.48.0-rc.5
2300
+ - @akinon/pz-click-collect@1.48.0-rc.5
2301
+ - @akinon/pz-credit-payment@1.48.0-rc.5
2302
+ - @akinon/pz-gpay@1.48.0-rc.5
2303
+ - @akinon/pz-masterpass@1.48.0-rc.5
2304
+ - @akinon/pz-one-click-checkout@1.48.0-rc.5
2305
+ - @akinon/pz-otp@1.48.0-rc.5
2306
+ - @akinon/pz-pay-on-delivery@1.48.0-rc.5
2307
+
2308
+ ## 1.48.0-rc.4
2309
+
2310
+ ### Patch Changes
2311
+
2312
+ - Updated dependencies [5dfeea0]
2313
+ - @akinon/next@1.48.0-rc.4
2314
+ - @akinon/pz-akifast@1.48.0-rc.4
2315
+ - @akinon/pz-b2b@1.48.0-rc.4
2316
+ - @akinon/pz-basket-gift-pack@1.48.0-rc.4
2317
+ - @akinon/pz-bkm@1.48.0-rc.4
2318
+ - @akinon/pz-checkout-gift-pack@1.48.0-rc.4
2319
+ - @akinon/pz-click-collect@1.48.0-rc.4
2320
+ - @akinon/pz-credit-payment@1.48.0-rc.4
2321
+ - @akinon/pz-gpay@1.48.0-rc.4
2322
+ - @akinon/pz-masterpass@1.48.0-rc.4
2323
+ - @akinon/pz-one-click-checkout@1.48.0-rc.4
2324
+ - @akinon/pz-otp@1.48.0-rc.4
2325
+ - @akinon/pz-pay-on-delivery@1.48.0-rc.4
2326
+
2327
+ ## 1.48.0-rc.3
2328
+
2329
+ ### Minor Changes
2330
+
2331
+ - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
2332
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
2333
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
2334
+ - 97b8bdc9: ZERO-2724: Remove onClick event in shipping options component
2335
+ - 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
2336
+ - 7521265: ZERO-2787: Fix hover classname for favorite item
2337
+ - 8217463: ZERO-2887: Add LoaderSpinner to Filters component
2338
+ - 27a5296d: ZERO-2631:Fix Checkbox Click
2339
+ - 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
2340
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
2341
+ - e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
2342
+ - 52c1373: ZERO-2619: Added fix flag for the staged linter
2343
+ - 552ee8a: ZERO-2777: fix link component usage
2344
+ - 03c4c3eb: ZERO-2731: Update Project Zero CLI command
2345
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
2346
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
2347
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
2348
+ - 778a9a0b: ZERO-2740: Upgrade next to 14.2.4
2349
+ - 9b6bf91e: ZERO-2660: Change campaings to campaigns
2350
+ - 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
2351
+ - 74a12699: ZERO-2658:Edit product name clickability on completed order page
2352
+ - 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
2353
+ - d3474c64: ZERO-2655: Add data source shipping option
2354
+ - d2f0f15c: ZERO-2723: Update sentry version and dependencies
2355
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
2356
+ - 9609eb2: ZERO-2779: Upgrade for tailwind
2357
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
2358
+ - 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
2359
+ - 959e1fa: ZERO-2778: Upgrade for nextjs
2360
+ - 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
2361
+ - 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
2362
+ - dfabc06: ZERO-2836: Upgrade version for tailwind
2363
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
2364
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
2365
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
2366
+ - beb499e6: ZERO-2551: Add new tsconfig paths
876
2367
  - f45aa87: ZERO-2904: Upgrade version for tailwindcss
2368
+ - fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
2369
+ - 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
2370
+ - e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
2371
+ - f046f8e0: ZERO-2575: update version for react-number-format
2372
+ - b9273fd: ZERO-2889: add host headers to requests
2373
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
2374
+
2375
+ ### Patch Changes
2376
+
2377
+ - Updated dependencies [90282b53]
2378
+ - Updated dependencies [50b9069]
2379
+ - Updated dependencies [572d2e84]
2380
+ - Updated dependencies [a4c8d6a9]
2381
+ - Updated dependencies [fda5b92]
2382
+ - Updated dependencies [2d9b2b2]
2383
+ - Updated dependencies [c53ea3e6]
2384
+ - Updated dependencies [d93a507]
2385
+ - Updated dependencies [8d9ac9a]
2386
+ - Updated dependencies [18e8197]
2387
+ - Updated dependencies [714e0b46]
2388
+ - Updated dependencies [70279e7]
2389
+ - Updated dependencies [6c25f66]
2390
+ - Updated dependencies [bc2b411]
2391
+ - Updated dependencies [3bf2dd9]
2392
+ - Updated dependencies [e9541a1]
2393
+ - Updated dependencies [c53ef7b9]
2394
+ - Updated dependencies [9d94f7e]
2395
+ - Updated dependencies [2e6104d]
2396
+ - Updated dependencies [64699d3]
2397
+ - Updated dependencies [0d3a913e]
2398
+ - Updated dependencies [1448a96e]
2399
+ - Updated dependencies [1ec2e9d]
2400
+ - Updated dependencies [d6edb1d]
2401
+ - Updated dependencies [d3474c64]
2402
+ - Updated dependencies [75080fd6]
2403
+ - Updated dependencies [17f8752]
2404
+ - Updated dependencies [c45b62c]
2405
+ - Updated dependencies [91265bba]
2406
+ - Updated dependencies [bbe18b9f]
2407
+ - Updated dependencies [d409996]
2408
+ - Updated dependencies [4920742]
2409
+ - Updated dependencies [12a873e]
2410
+ - Updated dependencies [69ca080]
2411
+ - Updated dependencies [7e56d6b]
2412
+ - Updated dependencies [94b6928]
2413
+ - Updated dependencies [98bb8dcd]
2414
+ - Updated dependencies [46b7aad]
2415
+ - Updated dependencies [dcc8a150]
2416
+ - Updated dependencies [8f47cca]
2417
+ - Updated dependencies [fad27689]
2418
+ - Updated dependencies [dff0d595]
2419
+ - Updated dependencies [fdd0b41]
2420
+ - Updated dependencies [eecb282]
2421
+ - Updated dependencies [f2c325c]
2422
+ - Updated dependencies [9e25a64]
2423
+ - Updated dependencies [beb499e6]
2424
+ - Updated dependencies [146ea39]
2425
+ - Updated dependencies [f2c92d5]
2426
+ - Updated dependencies [7bd3d99]
2427
+ - Updated dependencies [c47be30d]
2428
+ - Updated dependencies [e9a46acb]
2429
+ - Updated dependencies [f046f8e0]
2430
+ - Updated dependencies [b9273fd]
2431
+ - Updated dependencies [86d25315]
2432
+ - Updated dependencies [c670bd4]
2433
+ - Updated dependencies [3f9b8d7]
2434
+ - @akinon/next@1.48.0-rc.3
2435
+ - @akinon/pz-checkout-gift-pack@1.48.0-rc.3
2436
+ - @akinon/pz-one-click-checkout@1.48.0-rc.3
2437
+ - @akinon/pz-basket-gift-pack@1.48.0-rc.3
2438
+ - @akinon/pz-click-collect@1.48.0-rc.3
2439
+ - @akinon/pz-masterpass@1.48.0-rc.3
2440
+ - @akinon/pz-akifast@1.48.0-rc.3
2441
+ - @akinon/pz-gpay@1.48.0-rc.3
2442
+ - @akinon/pz-b2b@1.48.0-rc.3
2443
+ - @akinon/pz-bkm@1.48.0-rc.3
2444
+ - @akinon/pz-otp@1.48.0-rc.3
2445
+ - @akinon/pz-pay-on-delivery@1.48.0-rc.3
2446
+ - @akinon/pz-credit-payment@1.48.0-rc.3
2447
+
2448
+ ## 1.48.0-rc.2
2449
+
2450
+ ### Minor Changes
2451
+
2452
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
2453
+
2454
+ ### Patch Changes
2455
+
2456
+ - Updated dependencies [2e6104d]
2457
+ - @akinon/next@1.48.0-rc.2
2458
+ - @akinon/pz-akifast@1.48.0-rc.2
2459
+ - @akinon/pz-b2b@1.48.0-rc.2
2460
+ - @akinon/pz-basket-gift-pack@1.48.0-rc.2
2461
+ - @akinon/pz-bkm@1.48.0-rc.2
2462
+ - @akinon/pz-checkout-gift-pack@1.48.0-rc.2
2463
+ - @akinon/pz-click-collect@1.48.0-rc.2
2464
+ - @akinon/pz-credit-payment@1.48.0-rc.2
2465
+ - @akinon/pz-gpay@1.48.0-rc.2
2466
+ - @akinon/pz-masterpass@1.48.0-rc.2
2467
+ - @akinon/pz-one-click-checkout@1.48.0-rc.2
2468
+ - @akinon/pz-otp@1.48.0-rc.2
2469
+ - @akinon/pz-pay-on-delivery@1.48.0-rc.2
2470
+
2471
+ ## 1.48.0-rc.1
2472
+
2473
+ ### Patch Changes
2474
+
2475
+ - Updated dependencies [fdd0b41]
2476
+ - @akinon/next@1.48.0-rc.1
2477
+ - @akinon/pz-akifast@1.48.0-rc.1
2478
+ - @akinon/pz-b2b@1.48.0-rc.1
2479
+ - @akinon/pz-basket-gift-pack@1.48.0-rc.1
2480
+ - @akinon/pz-bkm@1.48.0-rc.1
2481
+ - @akinon/pz-checkout-gift-pack@1.48.0-rc.1
2482
+ - @akinon/pz-click-collect@1.48.0-rc.1
2483
+ - @akinon/pz-credit-payment@1.48.0-rc.1
2484
+ - @akinon/pz-gpay@1.48.0-rc.1
2485
+ - @akinon/pz-masterpass@1.48.0-rc.1
2486
+ - @akinon/pz-one-click-checkout@1.48.0-rc.1
2487
+ - @akinon/pz-otp@1.48.0-rc.1
2488
+ - @akinon/pz-pay-on-delivery@1.48.0-rc.1
2489
+
2490
+ ## 1.48.0-rc.0
2491
+
2492
+ ### Minor Changes
2493
+
2494
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
2495
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
2496
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
2497
+ - 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
2498
+ - 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
2499
+ - 7521265: ZERO-2787: Fix hover classname for favorite item
2500
+ - 27a5296d: ZERO-2631:Fix Checkbox Click
2501
+ - 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
2502
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
2503
+ - e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
2504
+ - 52c1373: ZERO-2619: Added fix flag for the staged linter
2505
+ - 552ee8a: ZERO-2777: fix link component usage
2506
+ - 03c4c3e: ZERO-2731: Update Project Zero CLI command
2507
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
2508
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
2509
+ - 778a9a0: ZERO-2740: Upgrade next to 14.2.4
2510
+ - 9b6bf91e: ZERO-2660: Change campaings to campaigns
2511
+ - 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
2512
+ - 74a12699: ZERO-2658:Edit product name clickability on completed order page
2513
+ - 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
2514
+ - d3474c6: ZERO-2655: Add data source shipping option
2515
+ - d2f0f15: ZERO-2723: Update sentry version and dependencies
2516
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
2517
+ - 9609eb2: ZERO-2779: Upgrade for tailwind
2518
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
2519
+ - 959e1fa: ZERO-2778: Upgrade for nextjs
2520
+ - 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
2521
+ - 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
2522
+ - dfabc06: ZERO-2836: Upgrade version for tailwind
2523
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
2524
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
2525
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
2526
+ - beb499e6: ZERO-2551: Add new tsconfig paths
2527
+ - fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
2528
+ - 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
2529
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
2530
+ - f046f8e0: ZERO-2575: update version for react-number-format
2531
+ - b9273fd: ZERO-2889: add host headers to requests
2532
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
877
2533
 
878
2534
  ### Patch Changes
879
2535
 
880
- - @akinon/next@1.48.0
881
- - @akinon/pz-akifast@1.48.0
882
- - @akinon/pz-b2b@1.48.0
883
- - @akinon/pz-basket-gift-pack@1.48.0
884
- - @akinon/pz-bkm@1.48.0
885
- - @akinon/pz-checkout-gift-pack@1.48.0
886
- - @akinon/pz-click-collect@1.48.0
887
- - @akinon/pz-credit-payment@1.48.0
888
- - @akinon/pz-gpay@1.48.0
889
- - @akinon/pz-masterpass@1.48.0
890
- - @akinon/pz-one-click-checkout@1.48.0
891
- - @akinon/pz-otp@1.48.0
892
- - @akinon/pz-pay-on-delivery@1.48.0
2536
+ - Updated dependencies [90282b5]
2537
+ - Updated dependencies [50b9069]
2538
+ - Updated dependencies [572d2e8]
2539
+ - Updated dependencies [a4c8d6a9]
2540
+ - Updated dependencies [fda5b92]
2541
+ - Updated dependencies [2d9b2b2]
2542
+ - Updated dependencies [c53ea3e6]
2543
+ - Updated dependencies [d93a507]
2544
+ - Updated dependencies [8d9ac9a]
2545
+ - Updated dependencies [18e8197]
2546
+ - Updated dependencies [714e0b4]
2547
+ - Updated dependencies [70279e7]
2548
+ - Updated dependencies [6c25f66]
2549
+ - Updated dependencies [bc2b411]
2550
+ - Updated dependencies [3bf2dd9]
2551
+ - Updated dependencies [e9541a1]
2552
+ - Updated dependencies [c53ef7b9]
2553
+ - Updated dependencies [9d94f7e]
2554
+ - Updated dependencies [64699d3]
2555
+ - Updated dependencies [0d3a913]
2556
+ - Updated dependencies [1448a96e]
2557
+ - Updated dependencies [1ec2e9d]
2558
+ - Updated dependencies [d6edb1d]
2559
+ - Updated dependencies [d3474c6]
2560
+ - Updated dependencies [75080fd6]
2561
+ - Updated dependencies [17f8752]
2562
+ - Updated dependencies [c45b62c]
2563
+ - Updated dependencies [91265bba]
2564
+ - Updated dependencies [bbe18b9f]
2565
+ - Updated dependencies [d409996]
2566
+ - Updated dependencies [4920742]
2567
+ - Updated dependencies [12a873e]
2568
+ - Updated dependencies [69ca080]
2569
+ - Updated dependencies [7e56d6b]
2570
+ - Updated dependencies [94b6928]
2571
+ - Updated dependencies [98bb8dc]
2572
+ - Updated dependencies [46b7aad]
2573
+ - Updated dependencies [dcc8a15]
2574
+ - Updated dependencies [8f47cca]
2575
+ - Updated dependencies [fad2768]
2576
+ - Updated dependencies [dff0d595]
2577
+ - Updated dependencies [eecb282]
2578
+ - Updated dependencies [f2c325c]
2579
+ - Updated dependencies [9e25a64]
2580
+ - Updated dependencies [beb499e6]
2581
+ - Updated dependencies [146ea39]
2582
+ - Updated dependencies [f2c92d5]
2583
+ - Updated dependencies [7bd3d99]
2584
+ - Updated dependencies [c47be30]
2585
+ - Updated dependencies [e9a46ac]
2586
+ - Updated dependencies [f046f8e0]
2587
+ - Updated dependencies [b9273fd]
2588
+ - Updated dependencies [86d2531]
2589
+ - Updated dependencies [c670bd4]
2590
+ - Updated dependencies [3f9b8d7]
2591
+ - @akinon/next@1.48.0-rc.0
2592
+ - @akinon/pz-checkout-gift-pack@1.48.0-rc.0
2593
+ - @akinon/pz-one-click-checkout@1.48.0-rc.0
2594
+ - @akinon/pz-basket-gift-pack@1.48.0-rc.0
2595
+ - @akinon/pz-click-collect@1.48.0-rc.0
2596
+ - @akinon/pz-masterpass@1.48.0-rc.0
2597
+ - @akinon/pz-akifast@1.48.0-rc.0
2598
+ - @akinon/pz-gpay@1.48.0-rc.0
2599
+ - @akinon/pz-b2b@1.48.0-rc.0
2600
+ - @akinon/pz-bkm@1.48.0-rc.0
2601
+ - @akinon/pz-otp@1.48.0-rc.0
2602
+ - @akinon/pz-pay-on-delivery@1.48.0-rc.0
2603
+ - @akinon/pz-credit-payment@1.48.0-rc.0
893
2604
 
894
2605
  ## 1.47.0
895
2606
 
@@ -933,65 +2644,841 @@
933
2644
  - @akinon/pz-otp@1.46.0
934
2645
  - @akinon/pz-pay-on-delivery@1.46.0
935
2646
 
936
- ## 1.45.0
2647
+ ## 1.45.0
2648
+
2649
+ ### Patch Changes
2650
+
2651
+ - Updated dependencies [90282b5]
2652
+ - Updated dependencies [50b9069]
2653
+ - Updated dependencies [572d2e8]
2654
+ - Updated dependencies [a4c8d6a9]
2655
+ - Updated dependencies [fda5b92]
2656
+ - Updated dependencies [2d9b2b2]
2657
+ - Updated dependencies [c53ea3e]
2658
+ - Updated dependencies [8d9ac9a]
2659
+ - Updated dependencies [18e8197]
2660
+ - Updated dependencies [714e0b4]
2661
+ - Updated dependencies [70279e7]
2662
+ - Updated dependencies [6c25f66]
2663
+ - Updated dependencies [bc2b411]
2664
+ - Updated dependencies [3bf2dd9]
2665
+ - Updated dependencies [e9541a1]
2666
+ - Updated dependencies [c53ef7b9]
2667
+ - Updated dependencies [9d94f7e]
2668
+ - Updated dependencies [64699d3]
2669
+ - Updated dependencies [0d3a913]
2670
+ - Updated dependencies [1448a96e]
2671
+ - Updated dependencies [d6edb1d]
2672
+ - Updated dependencies [d3474c6]
2673
+ - Updated dependencies [75080fd6]
2674
+ - Updated dependencies [17f8752]
2675
+ - Updated dependencies [c45b62c]
2676
+ - Updated dependencies [91265bba]
2677
+ - Updated dependencies [bbe18b9f]
2678
+ - Updated dependencies [d409996]
2679
+ - Updated dependencies [4920742]
2680
+ - Updated dependencies [69ca080]
2681
+ - Updated dependencies [7e56d6b]
2682
+ - Updated dependencies [94b6928]
2683
+ - Updated dependencies [98bb8dc]
2684
+ - Updated dependencies [46b7aad]
2685
+ - Updated dependencies [dcc8a15]
2686
+ - Updated dependencies [8f47cca]
2687
+ - Updated dependencies [fad2768]
2688
+ - Updated dependencies [dff0d595]
2689
+ - Updated dependencies [eecb282]
2690
+ - Updated dependencies [f2c325c]
2691
+ - Updated dependencies [9e25a64]
2692
+ - Updated dependencies [beb499e6]
2693
+ - Updated dependencies [948eb42]
2694
+ - Updated dependencies [146ea39]
2695
+ - Updated dependencies [f2c92d5]
2696
+ - Updated dependencies [7bd3d99]
2697
+ - Updated dependencies [c47be30]
2698
+ - Updated dependencies [e9a46ac]
2699
+ - Updated dependencies [f046f8e0]
2700
+ - Updated dependencies [86d2531]
2701
+ - Updated dependencies [3f9b8d7]
2702
+ - @akinon/next@1.45.0-rc.5
2703
+ - @akinon/pz-checkout-gift-pack@1.45.0-rc.5
2704
+ - @akinon/pz-one-click-checkout@1.45.0-rc.5
2705
+ - @akinon/pz-basket-gift-pack@1.45.0-rc.5
2706
+ - @akinon/pz-click-collect@1.45.0-rc.5
2707
+ - @akinon/pz-masterpass@1.45.0-rc.5
2708
+ - @akinon/pz-akifast@1.45.0-rc.5
2709
+ - @akinon/pz-gpay@1.45.0-rc.5
2710
+ - @akinon/pz-b2b@1.45.0-rc.5
2711
+ - @akinon/pz-bkm@1.45.0-rc.5
2712
+ - @akinon/pz-otp@1.45.0-rc.5
2713
+ - @akinon/pz-pay-on-delivery@1.45.0-rc.5
2714
+ - @akinon/pz-credit-payment@1.45.0-rc.5
2715
+
2716
+ ## 1.45.0-rc.4
2717
+
2718
+ ### Patch Changes
2719
+
2720
+ - Updated dependencies [8f47cca]
2721
+ - @akinon/next@1.45.0-rc.4
2722
+ - @akinon/pz-akifast@1.45.0-rc.4
2723
+ - @akinon/pz-b2b@1.45.0-rc.4
2724
+ - @akinon/pz-basket-gift-pack@1.45.0-rc.4
2725
+ - @akinon/pz-bkm@1.45.0-rc.4
2726
+ - @akinon/pz-checkout-gift-pack@1.45.0-rc.4
2727
+ - @akinon/pz-click-collect@1.45.0-rc.4
2728
+ - @akinon/pz-credit-payment@1.45.0-rc.4
2729
+ - @akinon/pz-gpay@1.45.0-rc.4
2730
+ - @akinon/pz-masterpass@1.45.0-rc.4
2731
+ - @akinon/pz-one-click-checkout@1.45.0-rc.4
2732
+ - @akinon/pz-otp@1.45.0-rc.4
2733
+ - @akinon/pz-pay-on-delivery@1.45.0-rc.4
2734
+
2735
+ ## 1.45.0-rc.3
2736
+
2737
+ ### Patch Changes
2738
+
2739
+ - Updated dependencies [948eb42]
2740
+ - @akinon/next@1.45.0-rc.3
2741
+ - @akinon/pz-akifast@1.45.0-rc.3
2742
+ - @akinon/pz-b2b@1.45.0-rc.3
2743
+ - @akinon/pz-basket-gift-pack@1.45.0-rc.3
2744
+ - @akinon/pz-bkm@1.45.0-rc.3
2745
+ - @akinon/pz-checkout-gift-pack@1.45.0-rc.3
2746
+ - @akinon/pz-click-collect@1.45.0-rc.3
2747
+ - @akinon/pz-credit-payment@1.45.0-rc.3
2748
+ - @akinon/pz-gpay@1.45.0-rc.3
2749
+ - @akinon/pz-masterpass@1.45.0-rc.3
2750
+ - @akinon/pz-one-click-checkout@1.45.0-rc.3
2751
+ - @akinon/pz-otp@1.45.0-rc.3
2752
+ - @akinon/pz-pay-on-delivery@1.45.0-rc.3
2753
+
2754
+ ## 1.45.0-rc.2
2755
+
2756
+ ### Minor Changes
2757
+
2758
+ - dfabc06: ZERO-2836: Upgrade version for tailwind
2759
+
2760
+ ### Patch Changes
2761
+
2762
+ - Updated dependencies [c45b62c]
2763
+ - Updated dependencies [f2c325c]
2764
+ - @akinon/next@1.45.0-rc.2
2765
+ - @akinon/pz-b2b@1.45.0-rc.2
2766
+ - @akinon/pz-akifast@1.45.0-rc.2
2767
+ - @akinon/pz-basket-gift-pack@1.45.0-rc.2
2768
+ - @akinon/pz-bkm@1.45.0-rc.2
2769
+ - @akinon/pz-checkout-gift-pack@1.45.0-rc.2
2770
+ - @akinon/pz-click-collect@1.45.0-rc.2
2771
+ - @akinon/pz-credit-payment@1.45.0-rc.2
2772
+ - @akinon/pz-gpay@1.45.0-rc.2
2773
+ - @akinon/pz-masterpass@1.45.0-rc.2
2774
+ - @akinon/pz-one-click-checkout@1.45.0-rc.2
2775
+ - @akinon/pz-otp@1.45.0-rc.2
2776
+ - @akinon/pz-pay-on-delivery@1.45.0-rc.2
2777
+
2778
+ ## 1.45.0-rc.1
2779
+
2780
+ ### Patch Changes
2781
+
2782
+ - Updated dependencies [7e56d6b]
2783
+ - @akinon/next@1.45.0-rc.1
2784
+ - @akinon/pz-akifast@1.45.0-rc.1
2785
+ - @akinon/pz-b2b@1.45.0-rc.1
2786
+ - @akinon/pz-basket-gift-pack@1.45.0-rc.1
2787
+ - @akinon/pz-bkm@1.45.0-rc.1
2788
+ - @akinon/pz-checkout-gift-pack@1.45.0-rc.1
2789
+ - @akinon/pz-click-collect@1.45.0-rc.1
2790
+ - @akinon/pz-credit-payment@1.45.0-rc.1
2791
+ - @akinon/pz-gpay@1.45.0-rc.1
2792
+ - @akinon/pz-masterpass@1.45.0-rc.1
2793
+ - @akinon/pz-one-click-checkout@1.45.0-rc.1
2794
+ - @akinon/pz-otp@1.45.0-rc.1
2795
+ - @akinon/pz-pay-on-delivery@1.45.0-rc.1
2796
+
2797
+ ## 1.45.0-rc.0
2798
+
2799
+ ### Minor Changes
2800
+
2801
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
2802
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
2803
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
2804
+ - 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
2805
+ - 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
2806
+ - 7521265: ZERO-2787: Fix hover classname for favorite item
2807
+ - 27a5296: ZERO-2631:Fix Checkbox Click
2808
+ - 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
2809
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
2810
+ - e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
2811
+ - 52c1373: ZERO-2619: Added fix flag for the staged linter
2812
+ - 552ee8a: ZERO-2777: fix link component usage
2813
+ - 03c4c3e: ZERO-2731: Update Project Zero CLI command
2814
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
2815
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
2816
+ - 778a9a0: ZERO-2740: Upgrade next to 14.2.4
2817
+ - 9b6bf91: ZERO-2660: Change campaings to campaigns
2818
+ - 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
2819
+ - 74a1269: ZERO-2658:Edit product name clickability on completed order page
2820
+ - d3474c6: ZERO-2655: Add data source shipping option
2821
+ - d2f0f15: ZERO-2723: Update sentry version and dependencies
2822
+ - 75080fd: ZERO-2630: Add max limit to postcode area
2823
+ - 9609eb2: ZERO-2779: Upgrade for tailwind
2824
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
2825
+ - 959e1fa: ZERO-2778: Upgrade for nextjs
2826
+ - 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
2827
+ - 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
2828
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
2829
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
2830
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
2831
+ - beb499e: ZERO-2551: Add new tsconfig paths
2832
+ - fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
2833
+ - 4614eee: ZERO-2602: The script that checks the build for standalone projects
2834
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
2835
+ - f046f8e0: ZERO-2575: update version for react-number-format
2836
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
2837
+
2838
+ ### Patch Changes
2839
+
2840
+ - Updated dependencies [90282b5]
2841
+ - Updated dependencies [50b9069]
2842
+ - Updated dependencies [572d2e8]
2843
+ - Updated dependencies [a4c8d6a9]
2844
+ - Updated dependencies [fda5b92]
2845
+ - Updated dependencies [2d9b2b2]
2846
+ - Updated dependencies [c53ea3e]
2847
+ - Updated dependencies [8d9ac9a]
2848
+ - Updated dependencies [18e8197]
2849
+ - Updated dependencies [714e0b4]
2850
+ - Updated dependencies [70279e7]
2851
+ - Updated dependencies [6c25f66]
2852
+ - Updated dependencies [bc2b411]
2853
+ - Updated dependencies [3bf2dd9]
2854
+ - Updated dependencies [e9541a1]
2855
+ - Updated dependencies [c53ef7b9]
2856
+ - Updated dependencies [9d94f7e]
2857
+ - Updated dependencies [64699d3]
2858
+ - Updated dependencies [0d3a913]
2859
+ - Updated dependencies [1448a96]
2860
+ - Updated dependencies [2ab6e08]
2861
+ - Updated dependencies [d6edb1d]
2862
+ - Updated dependencies [d3474c6]
2863
+ - Updated dependencies [75080fd]
2864
+ - Updated dependencies [17f8752]
2865
+ - Updated dependencies [91265bb]
2866
+ - Updated dependencies [bbe18b9]
2867
+ - Updated dependencies [d409996]
2868
+ - Updated dependencies [4920742]
2869
+ - Updated dependencies [69ca080]
2870
+ - Updated dependencies [94b6928]
2871
+ - Updated dependencies [98bb8dc]
2872
+ - Updated dependencies [46b7aad]
2873
+ - Updated dependencies [dcc8a15]
2874
+ - Updated dependencies [fad2768]
2875
+ - Updated dependencies [dff0d59]
2876
+ - Updated dependencies [eecb282]
2877
+ - Updated dependencies [9e25a64]
2878
+ - Updated dependencies [beb499e]
2879
+ - Updated dependencies [146ea39]
2880
+ - Updated dependencies [f2c92d5]
2881
+ - Updated dependencies [7bd3d99]
2882
+ - Updated dependencies [c47be30]
2883
+ - Updated dependencies [e9a46ac]
2884
+ - Updated dependencies [f046f8e0]
2885
+ - Updated dependencies [86d2531]
2886
+ - Updated dependencies [3f9b8d7]
2887
+ - @akinon/next@1.45.0-rc.0
2888
+ - @akinon/pz-checkout-gift-pack@1.45.0-rc.0
2889
+ - @akinon/pz-one-click-checkout@1.45.0-rc.0
2890
+ - @akinon/pz-basket-gift-pack@1.45.0-rc.0
2891
+ - @akinon/pz-click-collect@1.45.0-rc.0
2892
+ - @akinon/pz-masterpass@1.45.0-rc.0
2893
+ - @akinon/pz-akifast@1.45.0-rc.0
2894
+ - @akinon/pz-gpay@1.45.0-rc.0
2895
+ - @akinon/pz-b2b@1.45.0-rc.0
2896
+ - @akinon/pz-bkm@1.45.0-rc.0
2897
+ - @akinon/pz-otp@1.45.0-rc.0
2898
+ - @akinon/pz-pay-on-delivery@1.45.0-rc.0
2899
+ - @akinon/pz-credit-payment@1.45.0-rc.0
2900
+
2901
+ ## 1.44.0
2902
+
2903
+ ### Patch Changes
2904
+
2905
+ - @akinon/next@1.44.0
2906
+ - @akinon/pz-akifast@1.44.0
2907
+ - @akinon/pz-b2b@1.44.0
2908
+ - @akinon/pz-basket-gift-pack@1.44.0
2909
+ - @akinon/pz-bkm@1.44.0
2910
+ - @akinon/pz-checkout-gift-pack@1.44.0
2911
+ - @akinon/pz-click-collect@1.44.0
2912
+ - @akinon/pz-credit-payment@1.44.0
2913
+ - @akinon/pz-gpay@1.44.0
2914
+ - @akinon/pz-masterpass@1.44.0
2915
+ - @akinon/pz-one-click-checkout@1.44.0
2916
+ - @akinon/pz-otp@1.44.0
2917
+ - @akinon/pz-pay-on-delivery@1.44.0
2918
+
2919
+ ## 1.43.0
2920
+
2921
+ ### Minor Changes
2922
+
2923
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
2924
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
2925
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
2926
+ - 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
2927
+ - 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
2928
+ - 7521265: ZERO-2787: Fix hover classname for favorite item
2929
+ - 27a5296: ZERO-2631:Fix Checkbox Click
2930
+ - 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
2931
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
2932
+ - e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
2933
+ - 52c1373: ZERO-2619: Added fix flag for the staged linter
2934
+ - 552ee8a: ZERO-2777: fix link component usage
2935
+ - 03c4c3e: ZERO-2731: Update Project Zero CLI command
2936
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
2937
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
2938
+ - 778a9a0: ZERO-2740: Upgrade next to 14.2.4
2939
+ - 9b6bf91: ZERO-2660: Change campaings to campaigns
2940
+ - 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
2941
+ - 74a1269: ZERO-2658:Edit product name clickability on completed order page
2942
+ - d3474c6: ZERO-2655: Add data source shipping option
2943
+ - d2f0f15: ZERO-2723: Update sentry version and dependencies
2944
+ - 75080fd: ZERO-2630: Add max limit to postcode area
2945
+ - 9609eb2: ZERO-2779: Upgrade for tailwind
2946
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
2947
+ - 959e1fa: ZERO-2778: Upgrade for nextjs
2948
+ - 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
2949
+ - 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
2950
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
2951
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
2952
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
2953
+ - beb499e: ZERO-2551: Add new tsconfig paths
2954
+ - fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
2955
+ - 4614eee: ZERO-2602: The script that checks the build for standalone projects
2956
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
2957
+ - f046f8e0: ZERO-2575: update version for react-number-format
2958
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
2959
+
2960
+ ### Patch Changes
2961
+
2962
+ - Updated dependencies [90282b5]
2963
+ - Updated dependencies [50b9069]
2964
+ - Updated dependencies [572d2e8]
2965
+ - Updated dependencies [a4c8d6a9]
2966
+ - Updated dependencies [fda5b92]
2967
+ - Updated dependencies [2d9b2b2]
2968
+ - Updated dependencies [c53ea3e]
2969
+ - Updated dependencies [8d9ac9a]
2970
+ - Updated dependencies [18e8197]
2971
+ - Updated dependencies [714e0b4]
2972
+ - Updated dependencies [70279e7]
2973
+ - Updated dependencies [6c25f66]
2974
+ - Updated dependencies [bc2b411]
2975
+ - Updated dependencies [3bf2dd9]
2976
+ - Updated dependencies [e9541a1]
2977
+ - Updated dependencies [c53ef7b9]
2978
+ - Updated dependencies [9d94f7e]
2979
+ - Updated dependencies [64699d3]
2980
+ - Updated dependencies [0d3a913]
2981
+ - Updated dependencies [1448a96]
2982
+ - Updated dependencies [d6edb1d]
2983
+ - Updated dependencies [d3474c6]
2984
+ - Updated dependencies [75080fd]
2985
+ - Updated dependencies [17f8752]
2986
+ - Updated dependencies [91265bb]
2987
+ - Updated dependencies [bbe18b9]
2988
+ - Updated dependencies [d409996]
2989
+ - Updated dependencies [4920742]
2990
+ - Updated dependencies [69ca080]
2991
+ - Updated dependencies [94b6928]
2992
+ - Updated dependencies [98bb8dc]
2993
+ - Updated dependencies [46b7aad]
2994
+ - Updated dependencies [dcc8a15]
2995
+ - Updated dependencies [fad2768]
2996
+ - Updated dependencies [dff0d59]
2997
+ - Updated dependencies [eecb282]
2998
+ - Updated dependencies [9e25a64]
2999
+ - Updated dependencies [beb499e]
3000
+ - Updated dependencies [146ea39]
3001
+ - Updated dependencies [f2c92d5]
3002
+ - Updated dependencies [7bd3d99]
3003
+ - Updated dependencies [c47be30]
3004
+ - Updated dependencies [e9a46ac]
3005
+ - Updated dependencies [f046f8e0]
3006
+ - Updated dependencies [86d2531]
3007
+ - Updated dependencies [3f9b8d7]
3008
+ - @akinon/next@1.43.0-rc.16
3009
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.16
3010
+ - @akinon/pz-one-click-checkout@1.43.0-rc.16
3011
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.16
3012
+ - @akinon/pz-click-collect@1.43.0-rc.16
3013
+ - @akinon/pz-masterpass@1.43.0-rc.16
3014
+ - @akinon/pz-akifast@1.43.0-rc.16
3015
+ - @akinon/pz-gpay@1.43.0-rc.16
3016
+ - @akinon/pz-b2b@1.43.0-rc.16
3017
+ - @akinon/pz-bkm@1.43.0-rc.16
3018
+ - @akinon/pz-otp@1.43.0-rc.16
3019
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.16
3020
+ - @akinon/pz-credit-payment@1.43.0-rc.16
3021
+
3022
+ ## 1.43.0-rc.15
3023
+
3024
+ ### Patch Changes
3025
+
3026
+ - @akinon/next@1.43.0-rc.15
3027
+ - @akinon/pz-akifast@1.43.0-rc.15
3028
+ - @akinon/pz-b2b@1.43.0-rc.15
3029
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.15
3030
+ - @akinon/pz-bkm@1.43.0-rc.15
3031
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.15
3032
+ - @akinon/pz-click-collect@1.43.0-rc.15
3033
+ - @akinon/pz-credit-payment@1.43.0-rc.15
3034
+ - @akinon/pz-gpay@1.43.0-rc.15
3035
+ - @akinon/pz-masterpass@1.43.0-rc.15
3036
+ - @akinon/pz-one-click-checkout@1.43.0-rc.15
3037
+ - @akinon/pz-otp@1.43.0-rc.15
3038
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.15
3039
+
3040
+ ## 1.43.0-rc.14
3041
+
3042
+ ### Patch Changes
3043
+
3044
+ - Updated dependencies [3bf2dd9]
3045
+ - @akinon/next@1.43.0-rc.14
3046
+ - @akinon/pz-akifast@1.43.0-rc.14
3047
+ - @akinon/pz-b2b@1.43.0-rc.14
3048
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.14
3049
+ - @akinon/pz-bkm@1.43.0-rc.14
3050
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.14
3051
+ - @akinon/pz-click-collect@1.43.0-rc.14
3052
+ - @akinon/pz-credit-payment@1.43.0-rc.14
3053
+ - @akinon/pz-gpay@1.43.0-rc.14
3054
+ - @akinon/pz-masterpass@1.43.0-rc.14
3055
+ - @akinon/pz-one-click-checkout@1.43.0-rc.14
3056
+ - @akinon/pz-otp@1.43.0-rc.14
3057
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.14
3058
+
3059
+ ## 1.43.0-rc.13
3060
+
3061
+ ### Minor Changes
3062
+
3063
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
3064
+
3065
+ ### Patch Changes
3066
+
3067
+ - Updated dependencies [9e25a64]
3068
+ - @akinon/next@1.43.0-rc.13
3069
+ - @akinon/pz-akifast@1.43.0-rc.13
3070
+ - @akinon/pz-b2b@1.43.0-rc.13
3071
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.13
3072
+ - @akinon/pz-bkm@1.43.0-rc.13
3073
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.13
3074
+ - @akinon/pz-click-collect@1.43.0-rc.13
3075
+ - @akinon/pz-credit-payment@1.43.0-rc.13
3076
+ - @akinon/pz-gpay@1.43.0-rc.13
3077
+ - @akinon/pz-masterpass@1.43.0-rc.13
3078
+ - @akinon/pz-one-click-checkout@1.43.0-rc.13
3079
+ - @akinon/pz-otp@1.43.0-rc.13
3080
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.13
3081
+
3082
+ ## 1.43.0-rc.12
3083
+
3084
+ ### Patch Changes
3085
+
3086
+ - Updated dependencies [4920742]
3087
+ - @akinon/next@1.43.0-rc.12
3088
+ - @akinon/pz-akifast@1.43.0-rc.12
3089
+ - @akinon/pz-b2b@1.43.0-rc.12
3090
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.12
3091
+ - @akinon/pz-bkm@1.43.0-rc.12
3092
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.12
3093
+ - @akinon/pz-click-collect@1.43.0-rc.12
3094
+ - @akinon/pz-credit-payment@1.43.0-rc.12
3095
+ - @akinon/pz-gpay@1.43.0-rc.12
3096
+ - @akinon/pz-masterpass@1.43.0-rc.12
3097
+ - @akinon/pz-one-click-checkout@1.43.0-rc.12
3098
+ - @akinon/pz-otp@1.43.0-rc.12
3099
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.12
3100
+
3101
+ ## 1.43.0-rc.11
3102
+
3103
+ ### Patch Changes
3104
+
3105
+ - Updated dependencies [6c25f66]
3106
+ - @akinon/next@1.43.0-rc.11
3107
+ - @akinon/pz-akifast@1.43.0-rc.11
3108
+ - @akinon/pz-b2b@1.43.0-rc.11
3109
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.11
3110
+ - @akinon/pz-bkm@1.43.0-rc.11
3111
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.11
3112
+ - @akinon/pz-click-collect@1.43.0-rc.11
3113
+ - @akinon/pz-credit-payment@1.43.0-rc.11
3114
+ - @akinon/pz-gpay@1.43.0-rc.11
3115
+ - @akinon/pz-masterpass@1.43.0-rc.11
3116
+ - @akinon/pz-one-click-checkout@1.43.0-rc.11
3117
+ - @akinon/pz-otp@1.43.0-rc.11
3118
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.11
3119
+
3120
+ ## 1.43.0-rc.10
3121
+
3122
+ ### Patch Changes
3123
+
3124
+ - Updated dependencies [d6edb1d]
3125
+ - @akinon/next@1.43.0-rc.10
3126
+ - @akinon/pz-akifast@1.43.0-rc.10
3127
+ - @akinon/pz-b2b@1.43.0-rc.10
3128
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.10
3129
+ - @akinon/pz-bkm@1.43.0-rc.10
3130
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.10
3131
+ - @akinon/pz-click-collect@1.43.0-rc.10
3132
+ - @akinon/pz-credit-payment@1.43.0-rc.10
3133
+ - @akinon/pz-gpay@1.43.0-rc.10
3134
+ - @akinon/pz-masterpass@1.43.0-rc.10
3135
+ - @akinon/pz-one-click-checkout@1.43.0-rc.10
3136
+ - @akinon/pz-otp@1.43.0-rc.10
3137
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.10
3138
+
3139
+ ## 1.43.0-rc.9
3140
+
3141
+ ### Minor Changes
3142
+
3143
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
3144
+
3145
+ ### Patch Changes
3146
+
3147
+ - Updated dependencies [bc2b411]
3148
+ - @akinon/next@1.43.0-rc.9
3149
+ - @akinon/pz-akifast@1.43.0-rc.9
3150
+ - @akinon/pz-b2b@1.43.0-rc.9
3151
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.9
3152
+ - @akinon/pz-bkm@1.43.0-rc.9
3153
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.9
3154
+ - @akinon/pz-click-collect@1.43.0-rc.9
3155
+ - @akinon/pz-credit-payment@1.43.0-rc.9
3156
+ - @akinon/pz-gpay@1.43.0-rc.9
3157
+ - @akinon/pz-masterpass@1.43.0-rc.9
3158
+ - @akinon/pz-one-click-checkout@1.43.0-rc.9
3159
+ - @akinon/pz-otp@1.43.0-rc.9
3160
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.9
3161
+
3162
+ ## 1.43.0-rc.8
3163
+
3164
+ ### Patch Changes
3165
+
3166
+ - Updated dependencies [70279e7]
3167
+ - Updated dependencies [9d94f7e]
3168
+ - @akinon/next@1.43.0-rc.8
3169
+ - @akinon/pz-akifast@1.43.0-rc.8
3170
+ - @akinon/pz-b2b@1.43.0-rc.8
3171
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.8
3172
+ - @akinon/pz-bkm@1.43.0-rc.8
3173
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.8
3174
+ - @akinon/pz-click-collect@1.43.0-rc.8
3175
+ - @akinon/pz-credit-payment@1.43.0-rc.8
3176
+ - @akinon/pz-gpay@1.43.0-rc.8
3177
+ - @akinon/pz-masterpass@1.43.0-rc.8
3178
+ - @akinon/pz-one-click-checkout@1.43.0-rc.8
3179
+ - @akinon/pz-otp@1.43.0-rc.8
3180
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.8
3181
+
3182
+ ## 1.43.0-rc.7
3183
+
3184
+ ### Patch Changes
3185
+
3186
+ - Updated dependencies [7bd3d99]
3187
+ - @akinon/next@1.43.0-rc.7
3188
+ - @akinon/pz-akifast@1.43.0-rc.7
3189
+ - @akinon/pz-b2b@1.43.0-rc.7
3190
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.7
3191
+ - @akinon/pz-bkm@1.43.0-rc.7
3192
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.7
3193
+ - @akinon/pz-click-collect@1.43.0-rc.7
3194
+ - @akinon/pz-credit-payment@1.43.0-rc.7
3195
+ - @akinon/pz-gpay@1.43.0-rc.7
3196
+ - @akinon/pz-masterpass@1.43.0-rc.7
3197
+ - @akinon/pz-one-click-checkout@1.43.0-rc.7
3198
+ - @akinon/pz-otp@1.43.0-rc.7
3199
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.7
3200
+
3201
+ ## 1.43.0-rc.6
3202
+
3203
+ ### Minor Changes
3204
+
3205
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
3206
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
3207
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
3208
+ - 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
3209
+ - 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
3210
+ - 7521265: ZERO-2787: Fix hover classname for favorite item
3211
+ - 27a5296: ZERO-2631:Fix Checkbox Click
3212
+ - 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
3213
+ - e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
3214
+ - 52c1373: ZERO-2619: Added fix flag for the staged linter
3215
+ - 552ee8a: ZERO-2777: fix link component usage
3216
+ - 03c4c3e: ZERO-2731: Update Project Zero CLI command
3217
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
3218
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
3219
+ - 778a9a0: ZERO-2740: Upgrade next to 14.2.4
3220
+ - 9b6bf91: ZERO-2660: Change campaings to campaigns
3221
+ - 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
3222
+ - 74a1269: ZERO-2658:Edit product name clickability on completed order page
3223
+ - d3474c6: ZERO-2655: Add data source shipping option
3224
+ - d2f0f15: ZERO-2723: Update sentry version and dependencies
3225
+ - 75080fd: ZERO-2630: Add max limit to postcode area
3226
+ - 9609eb2: ZERO-2779: Upgrade for tailwind
3227
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
3228
+ - 959e1fa: ZERO-2778: Upgrade for nextjs
3229
+ - 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
3230
+ - 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
3231
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
3232
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
3233
+ - 4a163f2: ZERO-2761: Add condition for basket summary
3234
+ - beb499e: ZERO-2551: Add new tsconfig paths
3235
+ - fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
3236
+ - 4614eee: ZERO-2602: The script that checks the build for standalone projects
3237
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
3238
+ - f046f8e: ZERO-2575: update version for react-number-format
3239
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
3240
+
3241
+ ### Patch Changes
3242
+
3243
+ - Updated dependencies [90282b5]
3244
+ - Updated dependencies [50b9069]
3245
+ - Updated dependencies [572d2e8]
3246
+ - Updated dependencies [a4c8d6a]
3247
+ - Updated dependencies [fda5b92]
3248
+ - Updated dependencies [2d9b2b2]
3249
+ - Updated dependencies [c53ea3e]
3250
+ - Updated dependencies [8d9ac9a]
3251
+ - Updated dependencies [18e8197]
3252
+ - Updated dependencies [714e0b4]
3253
+ - Updated dependencies [e9541a1]
3254
+ - Updated dependencies [c53ef7b]
3255
+ - Updated dependencies [64699d3]
3256
+ - Updated dependencies [0d3a913]
3257
+ - Updated dependencies [1448a96]
3258
+ - Updated dependencies [d3474c6]
3259
+ - Updated dependencies [75080fd]
3260
+ - Updated dependencies [17f8752]
3261
+ - Updated dependencies [91265bb]
3262
+ - Updated dependencies [bbe18b9]
3263
+ - Updated dependencies [d409996]
3264
+ - Updated dependencies [69ca080]
3265
+ - Updated dependencies [94b6928]
3266
+ - Updated dependencies [98bb8dc]
3267
+ - Updated dependencies [46b7aad]
3268
+ - Updated dependencies [dcc8a15]
3269
+ - Updated dependencies [fad2768]
3270
+ - Updated dependencies [dff0d59]
3271
+ - Updated dependencies [eecb282]
3272
+ - Updated dependencies [4a163f2]
3273
+ - Updated dependencies [beb499e]
3274
+ - Updated dependencies [146ea39]
3275
+ - Updated dependencies [f2c92d5]
3276
+ - Updated dependencies [c47be30]
3277
+ - Updated dependencies [e9a46ac]
3278
+ - Updated dependencies [f046f8e]
3279
+ - Updated dependencies [86d2531]
3280
+ - Updated dependencies [3f9b8d7]
3281
+ - @akinon/next@1.43.0-rc.6
3282
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.6
3283
+ - @akinon/pz-one-click-checkout@1.43.0-rc.6
3284
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.6
3285
+ - @akinon/pz-click-collect@1.43.0-rc.6
3286
+ - @akinon/pz-masterpass@1.43.0-rc.6
3287
+ - @akinon/pz-akifast@1.43.0-rc.6
3288
+ - @akinon/pz-gpay@1.43.0-rc.6
3289
+ - @akinon/pz-b2b@1.43.0-rc.6
3290
+ - @akinon/pz-bkm@1.43.0-rc.6
3291
+ - @akinon/pz-otp@1.43.0-rc.6
3292
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.6
3293
+ - @akinon/pz-credit-payment@1.43.0-rc.6
3294
+
3295
+ ## 1.43.0-rc.5
3296
+
3297
+ ### Patch Changes
3298
+
3299
+ - Updated dependencies [17f8752]
3300
+ - @akinon/next@1.43.0-rc.5
3301
+ - @akinon/pz-akifast@1.43.0-rc.5
3302
+ - @akinon/pz-b2b@1.43.0-rc.5
3303
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.5
3304
+ - @akinon/pz-bkm@1.43.0-rc.5
3305
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.5
3306
+ - @akinon/pz-click-collect@1.43.0-rc.5
3307
+ - @akinon/pz-credit-payment@1.43.0-rc.5
3308
+ - @akinon/pz-gpay@1.43.0-rc.5
3309
+ - @akinon/pz-masterpass@1.43.0-rc.5
3310
+ - @akinon/pz-one-click-checkout@1.43.0-rc.5
3311
+ - @akinon/pz-otp@1.43.0-rc.5
3312
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.5
3313
+
3314
+ ## 1.43.0-rc.4
937
3315
 
938
3316
  ### Patch Changes
939
3317
 
940
- - Updated dependencies [2ab6e08]
941
- - @akinon/next@1.45.0
942
- - @akinon/pz-akifast@1.45.0
943
- - @akinon/pz-b2b@1.45.0
944
- - @akinon/pz-basket-gift-pack@1.45.0
945
- - @akinon/pz-bkm@1.45.0
946
- - @akinon/pz-checkout-gift-pack@1.45.0
947
- - @akinon/pz-click-collect@1.45.0
948
- - @akinon/pz-credit-payment@1.45.0
949
- - @akinon/pz-gpay@1.45.0
950
- - @akinon/pz-masterpass@1.45.0
951
- - @akinon/pz-one-click-checkout@1.45.0
952
- - @akinon/pz-otp@1.45.0
953
- - @akinon/pz-pay-on-delivery@1.45.0
3318
+ - Updated dependencies [3f9b8d7]
3319
+ - @akinon/next@1.43.0-rc.4
3320
+ - @akinon/pz-akifast@1.43.0-rc.4
3321
+ - @akinon/pz-b2b@1.43.0-rc.4
3322
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.4
3323
+ - @akinon/pz-bkm@1.43.0-rc.4
3324
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.4
3325
+ - @akinon/pz-click-collect@1.43.0-rc.4
3326
+ - @akinon/pz-credit-payment@1.43.0-rc.4
3327
+ - @akinon/pz-gpay@1.43.0-rc.4
3328
+ - @akinon/pz-masterpass@1.43.0-rc.4
3329
+ - @akinon/pz-one-click-checkout@1.43.0-rc.4
3330
+ - @akinon/pz-otp@1.43.0-rc.4
3331
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.4
3332
+
3333
+ ## 1.43.0-rc.3
954
3334
 
955
- ## 1.44.0
3335
+ ### Minor Changes
3336
+
3337
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
956
3338
 
957
3339
  ### Patch Changes
958
3340
 
959
- - @akinon/next@1.44.0
960
- - @akinon/pz-akifast@1.44.0
961
- - @akinon/pz-b2b@1.44.0
962
- - @akinon/pz-basket-gift-pack@1.44.0
963
- - @akinon/pz-bkm@1.44.0
964
- - @akinon/pz-checkout-gift-pack@1.44.0
965
- - @akinon/pz-click-collect@1.44.0
966
- - @akinon/pz-credit-payment@1.44.0
967
- - @akinon/pz-gpay@1.44.0
968
- - @akinon/pz-masterpass@1.44.0
969
- - @akinon/pz-one-click-checkout@1.44.0
970
- - @akinon/pz-otp@1.44.0
971
- - @akinon/pz-pay-on-delivery@1.44.0
3341
+ - Updated dependencies [64699d3]
3342
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.3
3343
+ - @akinon/pz-one-click-checkout@1.43.0-rc.3
3344
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.3
3345
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.3
3346
+ - @akinon/pz-credit-payment@1.43.0-rc.3
3347
+ - @akinon/pz-click-collect@1.43.0-rc.3
3348
+ - @akinon/pz-masterpass@1.43.0-rc.3
3349
+ - @akinon/next@1.43.0-rc.3
3350
+ - @akinon/pz-akifast@1.43.0-rc.3
3351
+ - @akinon/pz-gpay@1.43.0-rc.3
3352
+ - @akinon/pz-b2b@1.43.0-rc.3
3353
+ - @akinon/pz-bkm@1.43.0-rc.3
3354
+ - @akinon/pz-otp@1.43.0-rc.3
3355
+
3356
+ ## 1.43.0-rc.2
972
3357
 
973
- ## 1.43.0
3358
+ ### Patch Changes
3359
+
3360
+ - Updated dependencies [f2c92d5]
3361
+ - @akinon/next@1.43.0-rc.2
3362
+ - @akinon/pz-akifast@1.43.0-rc.2
3363
+ - @akinon/pz-b2b@1.43.0-rc.2
3364
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.2
3365
+ - @akinon/pz-bkm@1.43.0-rc.2
3366
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.2
3367
+ - @akinon/pz-click-collect@1.43.0-rc.2
3368
+ - @akinon/pz-credit-payment@1.43.0-rc.2
3369
+ - @akinon/pz-gpay@1.43.0-rc.2
3370
+ - @akinon/pz-masterpass@1.43.0-rc.2
3371
+ - @akinon/pz-one-click-checkout@1.43.0-rc.2
3372
+ - @akinon/pz-otp@1.43.0-rc.2
3373
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.2
3374
+
3375
+ ## 1.43.0-rc.1
974
3376
 
975
3377
  ### Minor Changes
976
3378
 
977
- - 4a163f2: ZERO-2761: Add condition for basket summary
3379
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
978
3380
 
979
3381
  ### Patch Changes
980
3382
 
981
- - Updated dependencies [4a163f2]
982
- - @akinon/next@1.43.0
983
- - @akinon/pz-akifast@1.43.0
984
- - @akinon/pz-b2b@1.43.0
985
- - @akinon/pz-basket-gift-pack@1.43.0
986
- - @akinon/pz-bkm@1.43.0
987
- - @akinon/pz-checkout-gift-pack@1.43.0
988
- - @akinon/pz-click-collect@1.43.0
989
- - @akinon/pz-credit-payment@1.43.0
990
- - @akinon/pz-gpay@1.43.0
991
- - @akinon/pz-masterpass@1.43.0
992
- - @akinon/pz-one-click-checkout@1.43.0
993
- - @akinon/pz-otp@1.43.0
994
- - @akinon/pz-pay-on-delivery@1.43.0
3383
+ - Updated dependencies [eecb282]
3384
+ - @akinon/next@1.43.0-rc.1
3385
+ - @akinon/pz-akifast@1.43.0-rc.1
3386
+ - @akinon/pz-b2b@1.43.0-rc.1
3387
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.1
3388
+ - @akinon/pz-bkm@1.43.0-rc.1
3389
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.1
3390
+ - @akinon/pz-click-collect@1.43.0-rc.1
3391
+ - @akinon/pz-credit-payment@1.43.0-rc.1
3392
+ - @akinon/pz-gpay@1.43.0-rc.1
3393
+ - @akinon/pz-masterpass@1.43.0-rc.1
3394
+ - @akinon/pz-one-click-checkout@1.43.0-rc.1
3395
+ - @akinon/pz-otp@1.43.0-rc.1
3396
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.1
3397
+
3398
+ ## 1.43.0-rc.0
3399
+
3400
+ ### Minor Changes
3401
+
3402
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
3403
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
3404
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
3405
+ - 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
3406
+ - 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
3407
+ - 7521265: ZERO-2787: Fix hover classname for favorite item
3408
+ - 27a5296: ZERO-2631:Fix Checkbox Click
3409
+ - 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
3410
+ - e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
3411
+ - 52c1373: ZERO-2619: Added fix flag for the staged linter
3412
+ - 552ee8a: ZERO-2777: fix link component usage
3413
+ - 03c4c3e: ZERO-2731: Update Project Zero CLI command
3414
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
3415
+ - 778a9a0: ZERO-2740: Upgrade next to 14.2.4
3416
+ - 9b6bf91: ZERO-2660: Change campaings to campaigns
3417
+ - 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
3418
+ - 74a1269: ZERO-2658:Edit product name clickability on completed order page
3419
+ - d3474c6: ZERO-2655: Add data source shipping option
3420
+ - d2f0f15: ZERO-2723: Update sentry version and dependencies
3421
+ - 75080fd: ZERO-2630: Add max limit to postcode area
3422
+ - 9609eb2: ZERO-2779: Upgrade for tailwind
3423
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
3424
+ - 959e1fa: ZERO-2778: Upgrade for nextjs
3425
+ - 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
3426
+ - 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
3427
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
3428
+ - beb499e: ZERO-2551: Add new tsconfig paths
3429
+ - fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
3430
+ - 4614eee: ZERO-2602: The script that checks the build for standalone projects
3431
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
3432
+ - f046f8e: ZERO-2575: update version for react-number-format
3433
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
3434
+
3435
+ ### Patch Changes
3436
+
3437
+ - Updated dependencies [90282b5]
3438
+ - Updated dependencies [50b9069]
3439
+ - Updated dependencies [572d2e8]
3440
+ - Updated dependencies [a4c8d6a]
3441
+ - Updated dependencies [fda5b92]
3442
+ - Updated dependencies [2d9b2b2]
3443
+ - Updated dependencies [c53ea3e]
3444
+ - Updated dependencies [8d9ac9a]
3445
+ - Updated dependencies [18e8197]
3446
+ - Updated dependencies [714e0b4]
3447
+ - Updated dependencies [e9541a1]
3448
+ - Updated dependencies [c53ef7b]
3449
+ - Updated dependencies [0d3a913]
3450
+ - Updated dependencies [1448a96]
3451
+ - Updated dependencies [d3474c6]
3452
+ - Updated dependencies [75080fd]
3453
+ - Updated dependencies [91265bb]
3454
+ - Updated dependencies [bbe18b9]
3455
+ - Updated dependencies [d409996]
3456
+ - Updated dependencies [69ca080]
3457
+ - Updated dependencies [94b6928]
3458
+ - Updated dependencies [98bb8dc]
3459
+ - Updated dependencies [46b7aad]
3460
+ - Updated dependencies [dcc8a15]
3461
+ - Updated dependencies [fad2768]
3462
+ - Updated dependencies [dff0d59]
3463
+ - Updated dependencies [beb499e]
3464
+ - Updated dependencies [146ea39]
3465
+ - Updated dependencies [c47be30]
3466
+ - Updated dependencies [e9a46ac]
3467
+ - Updated dependencies [f046f8e]
3468
+ - Updated dependencies [86d2531]
3469
+ - @akinon/next@1.43.0-rc.0
3470
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.0
3471
+ - @akinon/pz-one-click-checkout@1.43.0-rc.0
3472
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.0
3473
+ - @akinon/pz-click-collect@1.43.0-rc.0
3474
+ - @akinon/pz-masterpass@1.43.0-rc.0
3475
+ - @akinon/pz-akifast@1.43.0-rc.0
3476
+ - @akinon/pz-gpay@1.43.0-rc.0
3477
+ - @akinon/pz-b2b@1.43.0-rc.0
3478
+ - @akinon/pz-bkm@1.43.0-rc.0
3479
+ - @akinon/pz-otp@1.43.0-rc.0
3480
+ - @akinon/pz-credit-payment@1.43.0-rc.0
3481
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.0
995
3482
 
996
3483
  ## 1.42.0
997
3484
 
@@ -1160,13 +3647,301 @@
1160
3647
 
1161
3648
  ### Patch Changes
1162
3649
 
1163
- - @akinon/next@1.34.0
1164
- - @akinon/pz-b2b@1.34.0
1165
- - @akinon/pz-gpay@1.34.0
1166
- - @akinon/pz-masterpass@1.34.0
1167
- - @akinon/pz-one-click-checkout@1.34.0
1168
- - @akinon/pz-otp@1.34.0
1169
- - @akinon/pz-pay-on-delivery@1.34.0
3650
+ - Updated dependencies [a4c8d6a]
3651
+ - Updated dependencies [d09b677]
3652
+ - Updated dependencies [6d4aadb]
3653
+ - Updated dependencies [8e6e8cf]
3654
+ - Updated dependencies [c53ef7b]
3655
+ - Updated dependencies [ebb63ce]
3656
+ - Updated dependencies [7cebe87]
3657
+ - Updated dependencies [616690d]
3658
+ - Updated dependencies [f3b595e]
3659
+ - Updated dependencies [91265bb]
3660
+ - Updated dependencies [59fb7c3]
3661
+ - Updated dependencies [bbe18b9]
3662
+ - Updated dependencies [f0c23bc]
3663
+ - Updated dependencies [3420416]
3664
+ - Updated dependencies [495d155]
3665
+ - Updated dependencies [beb499e]
3666
+ - Updated dependencies [6c18543]
3667
+ - Updated dependencies [40ad73e]
3668
+ - Updated dependencies [495d155]
3669
+ - Updated dependencies [f046f8e]
3670
+ - Updated dependencies [6b2972b]
3671
+ - Updated dependencies [3e68768]
3672
+ - @akinon/next@1.34.0-rc.20
3673
+ - @akinon/pz-masterpass@1.34.0-rc.20
3674
+ - @akinon/pz-one-click-checkout@1.34.0-rc.20
3675
+ - @akinon/pz-b2b@1.34.0-rc.20
3676
+ - @akinon/pz-gpay@1.34.0-rc.20
3677
+ - @akinon/pz-otp@1.34.0-rc.20
3678
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.20
3679
+
3680
+ ## 1.34.0-rc.19
3681
+
3682
+ ### Patch Changes
3683
+
3684
+ - Updated dependencies [c53ef7b]
3685
+ - @akinon/next@1.34.0-rc.19
3686
+ - @akinon/pz-b2b@1.34.0-rc.19
3687
+ - @akinon/pz-gpay@1.34.0-rc.19
3688
+ - @akinon/pz-masterpass@1.34.0-rc.19
3689
+ - @akinon/pz-one-click-checkout@1.34.0-rc.19
3690
+ - @akinon/pz-otp@1.34.0-rc.19
3691
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.19
3692
+
3693
+ ## 1.34.0-rc.18
3694
+
3695
+ ### Minor Changes
3696
+
3697
+ - 9b6bf91: ZERO-2660: Change campaings to campaigns
3698
+ - 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
3699
+
3700
+ ### Patch Changes
3701
+
3702
+ - Updated dependencies [a4c8d6a]
3703
+ - @akinon/next@1.34.0-rc.18
3704
+ - @akinon/pz-b2b@1.34.0-rc.18
3705
+ - @akinon/pz-gpay@1.34.0-rc.18
3706
+ - @akinon/pz-masterpass@1.34.0-rc.18
3707
+ - @akinon/pz-one-click-checkout@1.34.0-rc.18
3708
+ - @akinon/pz-otp@1.34.0-rc.18
3709
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.18
3710
+
3711
+ ## 1.34.0-rc.17
3712
+
3713
+ ### Minor Changes
3714
+
3715
+ - 567e4c1: ZERO-2580:Add checked attribute from props to checkbox
3716
+ - d09b677: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
3717
+ - 27a5296: ZERO-2631:Fix Checkbox Click
3718
+ - ebb63ce: ZERO-2525: Fix category facet removal bug and add close icon to active filters
3719
+ - 74a1269: ZERO-2658:Edit product name clickability on completed order page
3720
+ - 0d0f36c: ZERO-2598: Fix eslint warnings and update dependencies
3721
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
3722
+ - f0c23bc: ZERO-2135: add custom not found page
3723
+ - 3420416: ZERO-2533: extend eslint config from @akinon/next
3724
+ - beb499e: ZERO-2551: Add new tsconfig paths
3725
+ - 6c18543: ZERO-2542:Refactor and show error in OneClickCheckoutButtons
3726
+ - 202f84e: ZERO-2569: Fix static keys
3727
+ - 4614eee: ZERO-2602: The script that checks the build for standalone projects
3728
+ - f046f8e: ZERO-2575: update version for react-number-format
3729
+ - 12c10a4: ZERO-2570: Category filters routes to absolute url
3730
+
3731
+ ### Patch Changes
3732
+
3733
+ - Updated dependencies [d09b677]
3734
+ - Updated dependencies [6d4aadb]
3735
+ - Updated dependencies [8e6e8cf]
3736
+ - Updated dependencies [ebb63ce]
3737
+ - Updated dependencies [7cebe87]
3738
+ - Updated dependencies [616690d]
3739
+ - Updated dependencies [f3b595e]
3740
+ - Updated dependencies [91265bb]
3741
+ - Updated dependencies [59fb7c3]
3742
+ - Updated dependencies [bbe18b9]
3743
+ - Updated dependencies [f0c23bc]
3744
+ - Updated dependencies [3420416]
3745
+ - Updated dependencies [495d155]
3746
+ - Updated dependencies [beb499e]
3747
+ - Updated dependencies [6c18543]
3748
+ - Updated dependencies [40ad73e]
3749
+ - Updated dependencies [495d155]
3750
+ - Updated dependencies [f046f8e]
3751
+ - Updated dependencies [6b2972b]
3752
+ - Updated dependencies [3e68768]
3753
+ - @akinon/next@1.34.0-rc.17
3754
+ - @akinon/pz-masterpass@1.34.0-rc.17
3755
+ - @akinon/pz-one-click-checkout@1.34.0-rc.17
3756
+ - @akinon/pz-b2b@1.34.0-rc.17
3757
+ - @akinon/pz-gpay@1.34.0-rc.17
3758
+ - @akinon/pz-otp@1.34.0-rc.17
3759
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.17
3760
+
3761
+ ## 1.34.0-rc.16
3762
+
3763
+ ### Patch Changes
3764
+
3765
+ - @akinon/next@1.34.0-rc.16
3766
+ - @akinon/pz-b2b@1.34.0-rc.16
3767
+ - @akinon/pz-gpay@1.34.0-rc.16
3768
+ - @akinon/pz-masterpass@1.34.0-rc.16
3769
+ - @akinon/pz-one-click-checkout@1.34.0-rc.16
3770
+ - @akinon/pz-otp@1.34.0-rc.16
3771
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.16
3772
+
3773
+ ## 1.34.0-rc.15
3774
+
3775
+ ### Patch Changes
3776
+
3777
+ - @akinon/next@1.34.0-rc.15
3778
+ - @akinon/pz-b2b@1.34.0-rc.15
3779
+ - @akinon/pz-gpay@1.34.0-rc.15
3780
+ - @akinon/pz-masterpass@1.34.0-rc.15
3781
+ - @akinon/pz-one-click-checkout@1.34.0-rc.15
3782
+ - @akinon/pz-otp@1.34.0-rc.15
3783
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.15
3784
+
3785
+ ## 1.34.0-rc.14
3786
+
3787
+ ### Minor Changes
3788
+
3789
+ - 4614eee: ZERO-2602: The script that checks the build for standalone projects
3790
+
3791
+ ### Patch Changes
3792
+
3793
+ - @akinon/next@1.34.0-rc.14
3794
+ - @akinon/pz-b2b@1.34.0-rc.14
3795
+ - @akinon/pz-gpay@1.34.0-rc.14
3796
+ - @akinon/pz-masterpass@1.34.0-rc.14
3797
+ - @akinon/pz-one-click-checkout@1.34.0-rc.14
3798
+ - @akinon/pz-otp@1.34.0-rc.14
3799
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.14
3800
+
3801
+ ## 1.34.0-rc.13
3802
+
3803
+ ### Minor Changes
3804
+
3805
+ - 74a1269: ZERO-2658:Edit product name clickability on completed order page
3806
+
3807
+ ### Patch Changes
3808
+
3809
+ - @akinon/next@1.34.0-rc.13
3810
+ - @akinon/pz-b2b@1.34.0-rc.13
3811
+ - @akinon/pz-gpay@1.34.0-rc.13
3812
+ - @akinon/pz-masterpass@1.34.0-rc.13
3813
+ - @akinon/pz-one-click-checkout@1.34.0-rc.13
3814
+ - @akinon/pz-otp@1.34.0-rc.13
3815
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.13
3816
+
3817
+ ## 1.34.0-rc.12
3818
+
3819
+ ### Patch Changes
3820
+
3821
+ - Updated dependencies [616690d]
3822
+ - @akinon/next@1.34.0-rc.12
3823
+ - @akinon/pz-b2b@1.34.0-rc.12
3824
+ - @akinon/pz-gpay@1.34.0-rc.12
3825
+ - @akinon/pz-masterpass@1.34.0-rc.12
3826
+ - @akinon/pz-one-click-checkout@1.34.0-rc.12
3827
+ - @akinon/pz-otp@1.34.0-rc.12
3828
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.12
3829
+
3830
+ ## 1.34.0-rc.11
3831
+
3832
+ ### Patch Changes
3833
+
3834
+ - Updated dependencies [8e6e8cf]
3835
+ - @akinon/next@1.34.0-rc.11
3836
+ - @akinon/pz-b2b@1.34.0-rc.11
3837
+ - @akinon/pz-gpay@1.34.0-rc.11
3838
+ - @akinon/pz-masterpass@1.34.0-rc.11
3839
+ - @akinon/pz-one-click-checkout@1.34.0-rc.11
3840
+ - @akinon/pz-otp@1.34.0-rc.11
3841
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.11
3842
+
3843
+ ## 1.34.0-rc.10
3844
+
3845
+ ### Patch Changes
3846
+
3847
+ - Updated dependencies [bbe18b9]
3848
+ - @akinon/next@1.34.0-rc.10
3849
+ - @akinon/pz-b2b@1.34.0-rc.10
3850
+ - @akinon/pz-gpay@1.34.0-rc.10
3851
+ - @akinon/pz-masterpass@1.34.0-rc.10
3852
+ - @akinon/pz-one-click-checkout@1.34.0-rc.10
3853
+ - @akinon/pz-otp@1.34.0-rc.10
3854
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.10
3855
+
3856
+ ## 1.34.0-rc.9
3857
+
3858
+ ### Minor Changes
3859
+
3860
+ - beb499e: ZERO-2551: Add new tsconfig paths
3861
+
3862
+ ### Patch Changes
3863
+
3864
+ - Updated dependencies [beb499e]
3865
+ - @akinon/next@1.34.0-rc.9
3866
+ - @akinon/pz-b2b@1.34.0-rc.9
3867
+ - @akinon/pz-gpay@1.34.0-rc.9
3868
+ - @akinon/pz-masterpass@1.34.0-rc.9
3869
+ - @akinon/pz-one-click-checkout@1.34.0-rc.9
3870
+ - @akinon/pz-otp@1.34.0-rc.9
3871
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.9
3872
+
3873
+ ## 1.34.0-rc.8
3874
+
3875
+ ### Minor Changes
3876
+
3877
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
3878
+
3879
+ ### Patch Changes
3880
+
3881
+ - Updated dependencies [91265bb]
3882
+ - @akinon/next@1.34.0-rc.8
3883
+ - @akinon/pz-b2b@1.34.0-rc.8
3884
+ - @akinon/pz-gpay@1.34.0-rc.8
3885
+ - @akinon/pz-masterpass@1.34.0-rc.8
3886
+ - @akinon/pz-one-click-checkout@1.34.0-rc.8
3887
+ - @akinon/pz-otp@1.34.0-rc.8
3888
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.8
3889
+
3890
+ ## 1.34.0-rc.7
3891
+
3892
+ ### Minor Changes
3893
+
3894
+ - 0d0f36c: ZERO-2598: Fix eslint warnings and update dependencies
3895
+
3896
+ ### Patch Changes
3897
+
3898
+ - @akinon/next@1.34.0-rc.7
3899
+ - @akinon/pz-b2b@1.34.0-rc.7
3900
+ - @akinon/pz-gpay@1.34.0-rc.7
3901
+ - @akinon/pz-masterpass@1.34.0-rc.7
3902
+ - @akinon/pz-one-click-checkout@1.34.0-rc.7
3903
+ - @akinon/pz-otp@1.34.0-rc.7
3904
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.7
3905
+
3906
+ ## 1.34.0-rc.6
3907
+
3908
+ ### Minor Changes
3909
+
3910
+ - 567e4c1: ZERO-2580:Add checked attribute from props to checkbox
3911
+ - d09b677: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
3912
+ - 27a5296: ZERO-2631:Fix Checkbox Click
3913
+ - ebb63ce: ZERO-2525: Fix category facet removal bug and add close icon to active filters
3914
+ - f0c23bc: ZERO-2135: add custom not found page
3915
+ - 3420416: ZERO-2533: extend eslint config from @akinon/next
3916
+ - 6c18543: ZERO-2542:Refactor and show error in OneClickCheckoutButtons
3917
+ - 202f84e: ZERO-2569: Fix static keys
3918
+ - f046f8e: ZERO-2575: update version for react-number-format
3919
+ - 12c10a4: ZERO-2570: Category filters routes to absolute url
3920
+
3921
+ ### Patch Changes
3922
+
3923
+ - Updated dependencies [d09b677]
3924
+ - Updated dependencies [6d4aadb]
3925
+ - Updated dependencies [ebb63ce]
3926
+ - Updated dependencies [7cebe87]
3927
+ - Updated dependencies [f3b595e]
3928
+ - Updated dependencies [59fb7c3]
3929
+ - Updated dependencies [f0c23bc]
3930
+ - Updated dependencies [3420416]
3931
+ - Updated dependencies [495d155]
3932
+ - Updated dependencies [6c18543]
3933
+ - Updated dependencies [40ad73e]
3934
+ - Updated dependencies [495d155]
3935
+ - Updated dependencies [f046f8e]
3936
+ - Updated dependencies [6b2972b]
3937
+ - Updated dependencies [3e68768]
3938
+ - @akinon/next@1.34.0-rc.6
3939
+ - @akinon/pz-masterpass@1.34.0-rc.6
3940
+ - @akinon/pz-one-click-checkout@1.34.0-rc.6
3941
+ - @akinon/pz-b2b@1.34.0-rc.6
3942
+ - @akinon/pz-gpay@1.34.0-rc.6
3943
+ - @akinon/pz-otp@1.34.0-rc.6
3944
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.6
1170
3945
 
1171
3946
  ## 1.33.2
1172
3947