@akinon/projectzero 1.44.0 → 1.45.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +43 -0
- package/README.md +3 -2
- package/app-template/.lintstagedrc.js +5 -4
- package/app-template/CHANGELOG.md +972 -20
- package/app-template/docs/basic-setup.md +1 -1
- package/app-template/docs/plugins.md +7 -7
- package/app-template/package-lock.json +29303 -0
- package/app-template/package.json +23 -21
- package/app-template/public/locales/en/account.json +4 -4
- package/app-template/public/locales/tr/account.json +1 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/[...prettyurl]/page.tsx +8 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/address/page.tsx +1 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +4 -4
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +1 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +5 -2
- package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +12 -8
- package/app-template/src/components/checkbox.tsx +2 -2
- package/app-template/src/components/input.tsx +19 -7
- package/app-template/src/components/price.tsx +9 -4
- package/app-template/src/redux/reducers/category.ts +7 -1
- package/app-template/src/settings.js +6 -1
- package/app-template/src/views/account/address-card.tsx +2 -2
- package/app-template/src/views/account/address-form.tsx +22 -7
- package/app-template/src/views/account/contact-form.tsx +23 -6
- package/app-template/src/views/account/favorite-item.tsx +2 -2
- package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +5 -1
- package/app-template/src/views/breadcrumb.tsx +4 -1
- package/app-template/src/views/category/category-info.tsx +31 -17
- package/app-template/src/views/category/filters/filter-item.tsx +131 -0
- package/app-template/src/views/category/filters/index.tsx +5 -105
- package/app-template/src/views/category/layout.tsx +5 -3
- package/app-template/src/views/checkout/steps/payment/options/credit-card/index.tsx +33 -4
- package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +43 -37
- package/app-template/src/views/checkout/steps/payment/payment-option-buttons.tsx +19 -3
- package/app-template/src/views/checkout/steps/shipping/address-box.tsx +2 -2
- package/app-template/src/views/checkout/steps/shipping/addresses.tsx +1 -1
- package/app-template/src/views/checkout/steps/shipping/shipping-options.tsx +230 -37
- package/app-template/src/views/find-in-store/index.tsx +2 -3
- package/app-template/src/views/header/mobile-menu.tsx +25 -8
- package/app-template/tsconfig.json +14 -4
- package/app-template/yarn.lock +1824 -1953
- package/commands/create.ts +29 -5
- package/dist/commands/create.js +25 -2
- package/package.json +2 -2
|
@@ -1,5 +1,128 @@
|
|
|
1
1
|
# projectzeronext
|
|
2
2
|
|
|
3
|
+
## 1.45.0-rc.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [7e56d6b]
|
|
8
|
+
- @akinon/next@1.45.0-rc.1
|
|
9
|
+
- @akinon/pz-akifast@1.45.0-rc.1
|
|
10
|
+
- @akinon/pz-b2b@1.45.0-rc.1
|
|
11
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.1
|
|
12
|
+
- @akinon/pz-bkm@1.45.0-rc.1
|
|
13
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.1
|
|
14
|
+
- @akinon/pz-click-collect@1.45.0-rc.1
|
|
15
|
+
- @akinon/pz-credit-payment@1.45.0-rc.1
|
|
16
|
+
- @akinon/pz-gpay@1.45.0-rc.1
|
|
17
|
+
- @akinon/pz-masterpass@1.45.0-rc.1
|
|
18
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.1
|
|
19
|
+
- @akinon/pz-otp@1.45.0-rc.1
|
|
20
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.1
|
|
21
|
+
|
|
22
|
+
## 1.45.0-rc.0
|
|
23
|
+
|
|
24
|
+
### Minor Changes
|
|
25
|
+
|
|
26
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
27
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
28
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
29
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
30
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
31
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
32
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
33
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
34
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
35
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
36
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
37
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
38
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
39
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
40
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
41
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
42
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
43
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
44
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
45
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
46
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
47
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
48
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
49
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
50
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
51
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
52
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
53
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
54
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
55
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
56
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
57
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
58
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
59
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
60
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
61
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
62
|
+
|
|
63
|
+
### Patch Changes
|
|
64
|
+
|
|
65
|
+
- Updated dependencies [90282b5]
|
|
66
|
+
- Updated dependencies [50b9069]
|
|
67
|
+
- Updated dependencies [572d2e8]
|
|
68
|
+
- Updated dependencies [a4c8d6a9]
|
|
69
|
+
- Updated dependencies [fda5b92]
|
|
70
|
+
- Updated dependencies [2d9b2b2]
|
|
71
|
+
- Updated dependencies [c53ea3e]
|
|
72
|
+
- Updated dependencies [8d9ac9a]
|
|
73
|
+
- Updated dependencies [18e8197]
|
|
74
|
+
- Updated dependencies [714e0b4]
|
|
75
|
+
- Updated dependencies [70279e7]
|
|
76
|
+
- Updated dependencies [6c25f66]
|
|
77
|
+
- Updated dependencies [bc2b411]
|
|
78
|
+
- Updated dependencies [3bf2dd9]
|
|
79
|
+
- Updated dependencies [e9541a1]
|
|
80
|
+
- Updated dependencies [c53ef7b9]
|
|
81
|
+
- Updated dependencies [9d94f7e]
|
|
82
|
+
- Updated dependencies [64699d3]
|
|
83
|
+
- Updated dependencies [0d3a913]
|
|
84
|
+
- Updated dependencies [1448a96]
|
|
85
|
+
- Updated dependencies [2ab6e08]
|
|
86
|
+
- Updated dependencies [d6edb1d]
|
|
87
|
+
- Updated dependencies [d3474c6]
|
|
88
|
+
- Updated dependencies [75080fd]
|
|
89
|
+
- Updated dependencies [17f8752]
|
|
90
|
+
- Updated dependencies [91265bb]
|
|
91
|
+
- Updated dependencies [bbe18b9]
|
|
92
|
+
- Updated dependencies [d409996]
|
|
93
|
+
- Updated dependencies [4920742]
|
|
94
|
+
- Updated dependencies [69ca080]
|
|
95
|
+
- Updated dependencies [94b6928]
|
|
96
|
+
- Updated dependencies [98bb8dc]
|
|
97
|
+
- Updated dependencies [46b7aad]
|
|
98
|
+
- Updated dependencies [dcc8a15]
|
|
99
|
+
- Updated dependencies [fad2768]
|
|
100
|
+
- Updated dependencies [dff0d59]
|
|
101
|
+
- Updated dependencies [eecb282]
|
|
102
|
+
- Updated dependencies [9e25a64]
|
|
103
|
+
- Updated dependencies [beb499e]
|
|
104
|
+
- Updated dependencies [146ea39]
|
|
105
|
+
- Updated dependencies [f2c92d5]
|
|
106
|
+
- Updated dependencies [7bd3d99]
|
|
107
|
+
- Updated dependencies [c47be30]
|
|
108
|
+
- Updated dependencies [e9a46ac]
|
|
109
|
+
- Updated dependencies [f046f8e0]
|
|
110
|
+
- Updated dependencies [86d2531]
|
|
111
|
+
- Updated dependencies [3f9b8d7]
|
|
112
|
+
- @akinon/next@1.45.0-rc.0
|
|
113
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.0
|
|
114
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.0
|
|
115
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.0
|
|
116
|
+
- @akinon/pz-click-collect@1.45.0-rc.0
|
|
117
|
+
- @akinon/pz-masterpass@1.45.0-rc.0
|
|
118
|
+
- @akinon/pz-akifast@1.45.0-rc.0
|
|
119
|
+
- @akinon/pz-gpay@1.45.0-rc.0
|
|
120
|
+
- @akinon/pz-b2b@1.45.0-rc.0
|
|
121
|
+
- @akinon/pz-bkm@1.45.0-rc.0
|
|
122
|
+
- @akinon/pz-otp@1.45.0-rc.0
|
|
123
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.0
|
|
124
|
+
- @akinon/pz-credit-payment@1.45.0-rc.0
|
|
125
|
+
|
|
3
126
|
## 1.44.0
|
|
4
127
|
|
|
5
128
|
### Patch Changes
|
|
@@ -22,24 +145,565 @@
|
|
|
22
145
|
|
|
23
146
|
### Minor Changes
|
|
24
147
|
|
|
148
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
149
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
150
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
151
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
152
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
153
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
154
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
155
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
156
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
157
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
158
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
159
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
160
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
161
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
162
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
163
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
164
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
165
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
166
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
167
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
168
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
169
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
170
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
171
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
172
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
173
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
174
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
175
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
176
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
177
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
178
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
179
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
180
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
181
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
182
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
183
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
184
|
+
|
|
185
|
+
### Patch Changes
|
|
186
|
+
|
|
187
|
+
- Updated dependencies [90282b5]
|
|
188
|
+
- Updated dependencies [50b9069]
|
|
189
|
+
- Updated dependencies [572d2e8]
|
|
190
|
+
- Updated dependencies [a4c8d6a9]
|
|
191
|
+
- Updated dependencies [fda5b92]
|
|
192
|
+
- Updated dependencies [2d9b2b2]
|
|
193
|
+
- Updated dependencies [c53ea3e]
|
|
194
|
+
- Updated dependencies [8d9ac9a]
|
|
195
|
+
- Updated dependencies [18e8197]
|
|
196
|
+
- Updated dependencies [714e0b4]
|
|
197
|
+
- Updated dependencies [70279e7]
|
|
198
|
+
- Updated dependencies [6c25f66]
|
|
199
|
+
- Updated dependencies [bc2b411]
|
|
200
|
+
- Updated dependencies [3bf2dd9]
|
|
201
|
+
- Updated dependencies [e9541a1]
|
|
202
|
+
- Updated dependencies [c53ef7b9]
|
|
203
|
+
- Updated dependencies [9d94f7e]
|
|
204
|
+
- Updated dependencies [64699d3]
|
|
205
|
+
- Updated dependencies [0d3a913]
|
|
206
|
+
- Updated dependencies [1448a96]
|
|
207
|
+
- Updated dependencies [d6edb1d]
|
|
208
|
+
- Updated dependencies [d3474c6]
|
|
209
|
+
- Updated dependencies [75080fd]
|
|
210
|
+
- Updated dependencies [17f8752]
|
|
211
|
+
- Updated dependencies [91265bb]
|
|
212
|
+
- Updated dependencies [bbe18b9]
|
|
213
|
+
- Updated dependencies [d409996]
|
|
214
|
+
- Updated dependencies [4920742]
|
|
215
|
+
- Updated dependencies [69ca080]
|
|
216
|
+
- Updated dependencies [94b6928]
|
|
217
|
+
- Updated dependencies [98bb8dc]
|
|
218
|
+
- Updated dependencies [46b7aad]
|
|
219
|
+
- Updated dependencies [dcc8a15]
|
|
220
|
+
- Updated dependencies [fad2768]
|
|
221
|
+
- Updated dependencies [dff0d59]
|
|
222
|
+
- Updated dependencies [eecb282]
|
|
223
|
+
- Updated dependencies [9e25a64]
|
|
224
|
+
- Updated dependencies [beb499e]
|
|
225
|
+
- Updated dependencies [146ea39]
|
|
226
|
+
- Updated dependencies [f2c92d5]
|
|
227
|
+
- Updated dependencies [7bd3d99]
|
|
228
|
+
- Updated dependencies [c47be30]
|
|
229
|
+
- Updated dependencies [e9a46ac]
|
|
230
|
+
- Updated dependencies [f046f8e0]
|
|
231
|
+
- Updated dependencies [86d2531]
|
|
232
|
+
- Updated dependencies [3f9b8d7]
|
|
233
|
+
- @akinon/next@1.43.0-rc.16
|
|
234
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.16
|
|
235
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.16
|
|
236
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.16
|
|
237
|
+
- @akinon/pz-click-collect@1.43.0-rc.16
|
|
238
|
+
- @akinon/pz-masterpass@1.43.0-rc.16
|
|
239
|
+
- @akinon/pz-akifast@1.43.0-rc.16
|
|
240
|
+
- @akinon/pz-gpay@1.43.0-rc.16
|
|
241
|
+
- @akinon/pz-b2b@1.43.0-rc.16
|
|
242
|
+
- @akinon/pz-bkm@1.43.0-rc.16
|
|
243
|
+
- @akinon/pz-otp@1.43.0-rc.16
|
|
244
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.16
|
|
245
|
+
- @akinon/pz-credit-payment@1.43.0-rc.16
|
|
246
|
+
|
|
247
|
+
## 1.43.0-rc.15
|
|
248
|
+
|
|
249
|
+
### Patch Changes
|
|
250
|
+
|
|
251
|
+
- @akinon/next@1.43.0-rc.15
|
|
252
|
+
- @akinon/pz-akifast@1.43.0-rc.15
|
|
253
|
+
- @akinon/pz-b2b@1.43.0-rc.15
|
|
254
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.15
|
|
255
|
+
- @akinon/pz-bkm@1.43.0-rc.15
|
|
256
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.15
|
|
257
|
+
- @akinon/pz-click-collect@1.43.0-rc.15
|
|
258
|
+
- @akinon/pz-credit-payment@1.43.0-rc.15
|
|
259
|
+
- @akinon/pz-gpay@1.43.0-rc.15
|
|
260
|
+
- @akinon/pz-masterpass@1.43.0-rc.15
|
|
261
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.15
|
|
262
|
+
- @akinon/pz-otp@1.43.0-rc.15
|
|
263
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.15
|
|
264
|
+
|
|
265
|
+
## 1.43.0-rc.14
|
|
266
|
+
|
|
267
|
+
### Patch Changes
|
|
268
|
+
|
|
269
|
+
- Updated dependencies [3bf2dd9]
|
|
270
|
+
- @akinon/next@1.43.0-rc.14
|
|
271
|
+
- @akinon/pz-akifast@1.43.0-rc.14
|
|
272
|
+
- @akinon/pz-b2b@1.43.0-rc.14
|
|
273
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.14
|
|
274
|
+
- @akinon/pz-bkm@1.43.0-rc.14
|
|
275
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.14
|
|
276
|
+
- @akinon/pz-click-collect@1.43.0-rc.14
|
|
277
|
+
- @akinon/pz-credit-payment@1.43.0-rc.14
|
|
278
|
+
- @akinon/pz-gpay@1.43.0-rc.14
|
|
279
|
+
- @akinon/pz-masterpass@1.43.0-rc.14
|
|
280
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.14
|
|
281
|
+
- @akinon/pz-otp@1.43.0-rc.14
|
|
282
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.14
|
|
283
|
+
|
|
284
|
+
## 1.43.0-rc.13
|
|
285
|
+
|
|
286
|
+
### Minor Changes
|
|
287
|
+
|
|
288
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
289
|
+
|
|
290
|
+
### Patch Changes
|
|
291
|
+
|
|
292
|
+
- Updated dependencies [9e25a64]
|
|
293
|
+
- @akinon/next@1.43.0-rc.13
|
|
294
|
+
- @akinon/pz-akifast@1.43.0-rc.13
|
|
295
|
+
- @akinon/pz-b2b@1.43.0-rc.13
|
|
296
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.13
|
|
297
|
+
- @akinon/pz-bkm@1.43.0-rc.13
|
|
298
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.13
|
|
299
|
+
- @akinon/pz-click-collect@1.43.0-rc.13
|
|
300
|
+
- @akinon/pz-credit-payment@1.43.0-rc.13
|
|
301
|
+
- @akinon/pz-gpay@1.43.0-rc.13
|
|
302
|
+
- @akinon/pz-masterpass@1.43.0-rc.13
|
|
303
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.13
|
|
304
|
+
- @akinon/pz-otp@1.43.0-rc.13
|
|
305
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.13
|
|
306
|
+
|
|
307
|
+
## 1.43.0-rc.12
|
|
308
|
+
|
|
309
|
+
### Patch Changes
|
|
310
|
+
|
|
311
|
+
- Updated dependencies [4920742]
|
|
312
|
+
- @akinon/next@1.43.0-rc.12
|
|
313
|
+
- @akinon/pz-akifast@1.43.0-rc.12
|
|
314
|
+
- @akinon/pz-b2b@1.43.0-rc.12
|
|
315
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.12
|
|
316
|
+
- @akinon/pz-bkm@1.43.0-rc.12
|
|
317
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.12
|
|
318
|
+
- @akinon/pz-click-collect@1.43.0-rc.12
|
|
319
|
+
- @akinon/pz-credit-payment@1.43.0-rc.12
|
|
320
|
+
- @akinon/pz-gpay@1.43.0-rc.12
|
|
321
|
+
- @akinon/pz-masterpass@1.43.0-rc.12
|
|
322
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.12
|
|
323
|
+
- @akinon/pz-otp@1.43.0-rc.12
|
|
324
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.12
|
|
325
|
+
|
|
326
|
+
## 1.43.0-rc.11
|
|
327
|
+
|
|
328
|
+
### Patch Changes
|
|
329
|
+
|
|
330
|
+
- Updated dependencies [6c25f66]
|
|
331
|
+
- @akinon/next@1.43.0-rc.11
|
|
332
|
+
- @akinon/pz-akifast@1.43.0-rc.11
|
|
333
|
+
- @akinon/pz-b2b@1.43.0-rc.11
|
|
334
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.11
|
|
335
|
+
- @akinon/pz-bkm@1.43.0-rc.11
|
|
336
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.11
|
|
337
|
+
- @akinon/pz-click-collect@1.43.0-rc.11
|
|
338
|
+
- @akinon/pz-credit-payment@1.43.0-rc.11
|
|
339
|
+
- @akinon/pz-gpay@1.43.0-rc.11
|
|
340
|
+
- @akinon/pz-masterpass@1.43.0-rc.11
|
|
341
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.11
|
|
342
|
+
- @akinon/pz-otp@1.43.0-rc.11
|
|
343
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.11
|
|
344
|
+
|
|
345
|
+
## 1.43.0-rc.10
|
|
346
|
+
|
|
347
|
+
### Patch Changes
|
|
348
|
+
|
|
349
|
+
- Updated dependencies [d6edb1d]
|
|
350
|
+
- @akinon/next@1.43.0-rc.10
|
|
351
|
+
- @akinon/pz-akifast@1.43.0-rc.10
|
|
352
|
+
- @akinon/pz-b2b@1.43.0-rc.10
|
|
353
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.10
|
|
354
|
+
- @akinon/pz-bkm@1.43.0-rc.10
|
|
355
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.10
|
|
356
|
+
- @akinon/pz-click-collect@1.43.0-rc.10
|
|
357
|
+
- @akinon/pz-credit-payment@1.43.0-rc.10
|
|
358
|
+
- @akinon/pz-gpay@1.43.0-rc.10
|
|
359
|
+
- @akinon/pz-masterpass@1.43.0-rc.10
|
|
360
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.10
|
|
361
|
+
- @akinon/pz-otp@1.43.0-rc.10
|
|
362
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.10
|
|
363
|
+
|
|
364
|
+
## 1.43.0-rc.9
|
|
365
|
+
|
|
366
|
+
### Minor Changes
|
|
367
|
+
|
|
368
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
369
|
+
|
|
370
|
+
### Patch Changes
|
|
371
|
+
|
|
372
|
+
- Updated dependencies [bc2b411]
|
|
373
|
+
- @akinon/next@1.43.0-rc.9
|
|
374
|
+
- @akinon/pz-akifast@1.43.0-rc.9
|
|
375
|
+
- @akinon/pz-b2b@1.43.0-rc.9
|
|
376
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.9
|
|
377
|
+
- @akinon/pz-bkm@1.43.0-rc.9
|
|
378
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.9
|
|
379
|
+
- @akinon/pz-click-collect@1.43.0-rc.9
|
|
380
|
+
- @akinon/pz-credit-payment@1.43.0-rc.9
|
|
381
|
+
- @akinon/pz-gpay@1.43.0-rc.9
|
|
382
|
+
- @akinon/pz-masterpass@1.43.0-rc.9
|
|
383
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.9
|
|
384
|
+
- @akinon/pz-otp@1.43.0-rc.9
|
|
385
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.9
|
|
386
|
+
|
|
387
|
+
## 1.43.0-rc.8
|
|
388
|
+
|
|
389
|
+
### Patch Changes
|
|
390
|
+
|
|
391
|
+
- Updated dependencies [70279e7]
|
|
392
|
+
- Updated dependencies [9d94f7e]
|
|
393
|
+
- @akinon/next@1.43.0-rc.8
|
|
394
|
+
- @akinon/pz-akifast@1.43.0-rc.8
|
|
395
|
+
- @akinon/pz-b2b@1.43.0-rc.8
|
|
396
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.8
|
|
397
|
+
- @akinon/pz-bkm@1.43.0-rc.8
|
|
398
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.8
|
|
399
|
+
- @akinon/pz-click-collect@1.43.0-rc.8
|
|
400
|
+
- @akinon/pz-credit-payment@1.43.0-rc.8
|
|
401
|
+
- @akinon/pz-gpay@1.43.0-rc.8
|
|
402
|
+
- @akinon/pz-masterpass@1.43.0-rc.8
|
|
403
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.8
|
|
404
|
+
- @akinon/pz-otp@1.43.0-rc.8
|
|
405
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.8
|
|
406
|
+
|
|
407
|
+
## 1.43.0-rc.7
|
|
408
|
+
|
|
409
|
+
### Patch Changes
|
|
410
|
+
|
|
411
|
+
- Updated dependencies [7bd3d99]
|
|
412
|
+
- @akinon/next@1.43.0-rc.7
|
|
413
|
+
- @akinon/pz-akifast@1.43.0-rc.7
|
|
414
|
+
- @akinon/pz-b2b@1.43.0-rc.7
|
|
415
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.7
|
|
416
|
+
- @akinon/pz-bkm@1.43.0-rc.7
|
|
417
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.7
|
|
418
|
+
- @akinon/pz-click-collect@1.43.0-rc.7
|
|
419
|
+
- @akinon/pz-credit-payment@1.43.0-rc.7
|
|
420
|
+
- @akinon/pz-gpay@1.43.0-rc.7
|
|
421
|
+
- @akinon/pz-masterpass@1.43.0-rc.7
|
|
422
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.7
|
|
423
|
+
- @akinon/pz-otp@1.43.0-rc.7
|
|
424
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.7
|
|
425
|
+
|
|
426
|
+
## 1.43.0-rc.6
|
|
427
|
+
|
|
428
|
+
### Minor Changes
|
|
429
|
+
|
|
430
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
431
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
432
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
433
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
434
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
435
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
436
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
437
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
438
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
439
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
440
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
441
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
442
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
443
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
444
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
445
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
446
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
447
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
448
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
449
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
450
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
451
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
452
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
453
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
454
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
455
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
456
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
457
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
25
458
|
- 4a163f2: ZERO-2761: Add condition for basket summary
|
|
459
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
460
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
461
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
462
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
463
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
464
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
26
465
|
|
|
27
466
|
### Patch Changes
|
|
28
467
|
|
|
468
|
+
- Updated dependencies [90282b5]
|
|
469
|
+
- Updated dependencies [50b9069]
|
|
470
|
+
- Updated dependencies [572d2e8]
|
|
471
|
+
- Updated dependencies [a4c8d6a]
|
|
472
|
+
- Updated dependencies [fda5b92]
|
|
473
|
+
- Updated dependencies [2d9b2b2]
|
|
474
|
+
- Updated dependencies [c53ea3e]
|
|
475
|
+
- Updated dependencies [8d9ac9a]
|
|
476
|
+
- Updated dependencies [18e8197]
|
|
477
|
+
- Updated dependencies [714e0b4]
|
|
478
|
+
- Updated dependencies [e9541a1]
|
|
479
|
+
- Updated dependencies [c53ef7b]
|
|
480
|
+
- Updated dependencies [64699d3]
|
|
481
|
+
- Updated dependencies [0d3a913]
|
|
482
|
+
- Updated dependencies [1448a96]
|
|
483
|
+
- Updated dependencies [d3474c6]
|
|
484
|
+
- Updated dependencies [75080fd]
|
|
485
|
+
- Updated dependencies [17f8752]
|
|
486
|
+
- Updated dependencies [91265bb]
|
|
487
|
+
- Updated dependencies [bbe18b9]
|
|
488
|
+
- Updated dependencies [d409996]
|
|
489
|
+
- Updated dependencies [69ca080]
|
|
490
|
+
- Updated dependencies [94b6928]
|
|
491
|
+
- Updated dependencies [98bb8dc]
|
|
492
|
+
- Updated dependencies [46b7aad]
|
|
493
|
+
- Updated dependencies [dcc8a15]
|
|
494
|
+
- Updated dependencies [fad2768]
|
|
495
|
+
- Updated dependencies [dff0d59]
|
|
496
|
+
- Updated dependencies [eecb282]
|
|
29
497
|
- Updated dependencies [4a163f2]
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
- @akinon/
|
|
39
|
-
- @akinon/pz-
|
|
40
|
-
- @akinon/pz-one-click-checkout@1.43.0
|
|
41
|
-
- @akinon/pz-
|
|
42
|
-
- @akinon/pz-
|
|
498
|
+
- Updated dependencies [beb499e]
|
|
499
|
+
- Updated dependencies [146ea39]
|
|
500
|
+
- Updated dependencies [f2c92d5]
|
|
501
|
+
- Updated dependencies [c47be30]
|
|
502
|
+
- Updated dependencies [e9a46ac]
|
|
503
|
+
- Updated dependencies [f046f8e]
|
|
504
|
+
- Updated dependencies [86d2531]
|
|
505
|
+
- Updated dependencies [3f9b8d7]
|
|
506
|
+
- @akinon/next@1.43.0-rc.6
|
|
507
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.6
|
|
508
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.6
|
|
509
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.6
|
|
510
|
+
- @akinon/pz-click-collect@1.43.0-rc.6
|
|
511
|
+
- @akinon/pz-masterpass@1.43.0-rc.6
|
|
512
|
+
- @akinon/pz-akifast@1.43.0-rc.6
|
|
513
|
+
- @akinon/pz-gpay@1.43.0-rc.6
|
|
514
|
+
- @akinon/pz-b2b@1.43.0-rc.6
|
|
515
|
+
- @akinon/pz-bkm@1.43.0-rc.6
|
|
516
|
+
- @akinon/pz-otp@1.43.0-rc.6
|
|
517
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.6
|
|
518
|
+
- @akinon/pz-credit-payment@1.43.0-rc.6
|
|
519
|
+
|
|
520
|
+
## 1.43.0-rc.5
|
|
521
|
+
|
|
522
|
+
### Patch Changes
|
|
523
|
+
|
|
524
|
+
- Updated dependencies [17f8752]
|
|
525
|
+
- @akinon/next@1.43.0-rc.5
|
|
526
|
+
- @akinon/pz-akifast@1.43.0-rc.5
|
|
527
|
+
- @akinon/pz-b2b@1.43.0-rc.5
|
|
528
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.5
|
|
529
|
+
- @akinon/pz-bkm@1.43.0-rc.5
|
|
530
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.5
|
|
531
|
+
- @akinon/pz-click-collect@1.43.0-rc.5
|
|
532
|
+
- @akinon/pz-credit-payment@1.43.0-rc.5
|
|
533
|
+
- @akinon/pz-gpay@1.43.0-rc.5
|
|
534
|
+
- @akinon/pz-masterpass@1.43.0-rc.5
|
|
535
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.5
|
|
536
|
+
- @akinon/pz-otp@1.43.0-rc.5
|
|
537
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.5
|
|
538
|
+
|
|
539
|
+
## 1.43.0-rc.4
|
|
540
|
+
|
|
541
|
+
### Patch Changes
|
|
542
|
+
|
|
543
|
+
- Updated dependencies [3f9b8d7]
|
|
544
|
+
- @akinon/next@1.43.0-rc.4
|
|
545
|
+
- @akinon/pz-akifast@1.43.0-rc.4
|
|
546
|
+
- @akinon/pz-b2b@1.43.0-rc.4
|
|
547
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.4
|
|
548
|
+
- @akinon/pz-bkm@1.43.0-rc.4
|
|
549
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.4
|
|
550
|
+
- @akinon/pz-click-collect@1.43.0-rc.4
|
|
551
|
+
- @akinon/pz-credit-payment@1.43.0-rc.4
|
|
552
|
+
- @akinon/pz-gpay@1.43.0-rc.4
|
|
553
|
+
- @akinon/pz-masterpass@1.43.0-rc.4
|
|
554
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.4
|
|
555
|
+
- @akinon/pz-otp@1.43.0-rc.4
|
|
556
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.4
|
|
557
|
+
|
|
558
|
+
## 1.43.0-rc.3
|
|
559
|
+
|
|
560
|
+
### Minor Changes
|
|
561
|
+
|
|
562
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
563
|
+
|
|
564
|
+
### Patch Changes
|
|
565
|
+
|
|
566
|
+
- Updated dependencies [64699d3]
|
|
567
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.3
|
|
568
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.3
|
|
569
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.3
|
|
570
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.3
|
|
571
|
+
- @akinon/pz-credit-payment@1.43.0-rc.3
|
|
572
|
+
- @akinon/pz-click-collect@1.43.0-rc.3
|
|
573
|
+
- @akinon/pz-masterpass@1.43.0-rc.3
|
|
574
|
+
- @akinon/next@1.43.0-rc.3
|
|
575
|
+
- @akinon/pz-akifast@1.43.0-rc.3
|
|
576
|
+
- @akinon/pz-gpay@1.43.0-rc.3
|
|
577
|
+
- @akinon/pz-b2b@1.43.0-rc.3
|
|
578
|
+
- @akinon/pz-bkm@1.43.0-rc.3
|
|
579
|
+
- @akinon/pz-otp@1.43.0-rc.3
|
|
580
|
+
|
|
581
|
+
## 1.43.0-rc.2
|
|
582
|
+
|
|
583
|
+
### Patch Changes
|
|
584
|
+
|
|
585
|
+
- Updated dependencies [f2c92d5]
|
|
586
|
+
- @akinon/next@1.43.0-rc.2
|
|
587
|
+
- @akinon/pz-akifast@1.43.0-rc.2
|
|
588
|
+
- @akinon/pz-b2b@1.43.0-rc.2
|
|
589
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.2
|
|
590
|
+
- @akinon/pz-bkm@1.43.0-rc.2
|
|
591
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.2
|
|
592
|
+
- @akinon/pz-click-collect@1.43.0-rc.2
|
|
593
|
+
- @akinon/pz-credit-payment@1.43.0-rc.2
|
|
594
|
+
- @akinon/pz-gpay@1.43.0-rc.2
|
|
595
|
+
- @akinon/pz-masterpass@1.43.0-rc.2
|
|
596
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.2
|
|
597
|
+
- @akinon/pz-otp@1.43.0-rc.2
|
|
598
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.2
|
|
599
|
+
|
|
600
|
+
## 1.43.0-rc.1
|
|
601
|
+
|
|
602
|
+
### Minor Changes
|
|
603
|
+
|
|
604
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
605
|
+
|
|
606
|
+
### Patch Changes
|
|
607
|
+
|
|
608
|
+
- Updated dependencies [eecb282]
|
|
609
|
+
- @akinon/next@1.43.0-rc.1
|
|
610
|
+
- @akinon/pz-akifast@1.43.0-rc.1
|
|
611
|
+
- @akinon/pz-b2b@1.43.0-rc.1
|
|
612
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.1
|
|
613
|
+
- @akinon/pz-bkm@1.43.0-rc.1
|
|
614
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.1
|
|
615
|
+
- @akinon/pz-click-collect@1.43.0-rc.1
|
|
616
|
+
- @akinon/pz-credit-payment@1.43.0-rc.1
|
|
617
|
+
- @akinon/pz-gpay@1.43.0-rc.1
|
|
618
|
+
- @akinon/pz-masterpass@1.43.0-rc.1
|
|
619
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.1
|
|
620
|
+
- @akinon/pz-otp@1.43.0-rc.1
|
|
621
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.1
|
|
622
|
+
|
|
623
|
+
## 1.43.0-rc.0
|
|
624
|
+
|
|
625
|
+
### Minor Changes
|
|
626
|
+
|
|
627
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
628
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
629
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
630
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
631
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
632
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
633
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
634
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
635
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
636
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
637
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
638
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
639
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
640
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
641
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
642
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
643
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
644
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
645
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
646
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
647
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
648
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
649
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
650
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
651
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
652
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
653
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
654
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
655
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
656
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
657
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
658
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
659
|
+
|
|
660
|
+
### Patch Changes
|
|
661
|
+
|
|
662
|
+
- Updated dependencies [90282b5]
|
|
663
|
+
- Updated dependencies [50b9069]
|
|
664
|
+
- Updated dependencies [572d2e8]
|
|
665
|
+
- Updated dependencies [a4c8d6a]
|
|
666
|
+
- Updated dependencies [fda5b92]
|
|
667
|
+
- Updated dependencies [2d9b2b2]
|
|
668
|
+
- Updated dependencies [c53ea3e]
|
|
669
|
+
- Updated dependencies [8d9ac9a]
|
|
670
|
+
- Updated dependencies [18e8197]
|
|
671
|
+
- Updated dependencies [714e0b4]
|
|
672
|
+
- Updated dependencies [e9541a1]
|
|
673
|
+
- Updated dependencies [c53ef7b]
|
|
674
|
+
- Updated dependencies [0d3a913]
|
|
675
|
+
- Updated dependencies [1448a96]
|
|
676
|
+
- Updated dependencies [d3474c6]
|
|
677
|
+
- Updated dependencies [75080fd]
|
|
678
|
+
- Updated dependencies [91265bb]
|
|
679
|
+
- Updated dependencies [bbe18b9]
|
|
680
|
+
- Updated dependencies [d409996]
|
|
681
|
+
- Updated dependencies [69ca080]
|
|
682
|
+
- Updated dependencies [94b6928]
|
|
683
|
+
- Updated dependencies [98bb8dc]
|
|
684
|
+
- Updated dependencies [46b7aad]
|
|
685
|
+
- Updated dependencies [dcc8a15]
|
|
686
|
+
- Updated dependencies [fad2768]
|
|
687
|
+
- Updated dependencies [dff0d59]
|
|
688
|
+
- Updated dependencies [beb499e]
|
|
689
|
+
- Updated dependencies [146ea39]
|
|
690
|
+
- Updated dependencies [c47be30]
|
|
691
|
+
- Updated dependencies [e9a46ac]
|
|
692
|
+
- Updated dependencies [f046f8e]
|
|
693
|
+
- Updated dependencies [86d2531]
|
|
694
|
+
- @akinon/next@1.43.0-rc.0
|
|
695
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.0
|
|
696
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.0
|
|
697
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.0
|
|
698
|
+
- @akinon/pz-click-collect@1.43.0-rc.0
|
|
699
|
+
- @akinon/pz-masterpass@1.43.0-rc.0
|
|
700
|
+
- @akinon/pz-akifast@1.43.0-rc.0
|
|
701
|
+
- @akinon/pz-gpay@1.43.0-rc.0
|
|
702
|
+
- @akinon/pz-b2b@1.43.0-rc.0
|
|
703
|
+
- @akinon/pz-bkm@1.43.0-rc.0
|
|
704
|
+
- @akinon/pz-otp@1.43.0-rc.0
|
|
705
|
+
- @akinon/pz-credit-payment@1.43.0-rc.0
|
|
706
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.0
|
|
43
707
|
|
|
44
708
|
## 1.42.0
|
|
45
709
|
|
|
@@ -208,13 +872,301 @@
|
|
|
208
872
|
|
|
209
873
|
### Patch Changes
|
|
210
874
|
|
|
211
|
-
-
|
|
212
|
-
-
|
|
213
|
-
-
|
|
214
|
-
-
|
|
215
|
-
-
|
|
216
|
-
-
|
|
217
|
-
-
|
|
875
|
+
- Updated dependencies [a4c8d6a]
|
|
876
|
+
- Updated dependencies [d09b677]
|
|
877
|
+
- Updated dependencies [6d4aadb]
|
|
878
|
+
- Updated dependencies [8e6e8cf]
|
|
879
|
+
- Updated dependencies [c53ef7b]
|
|
880
|
+
- Updated dependencies [ebb63ce]
|
|
881
|
+
- Updated dependencies [7cebe87]
|
|
882
|
+
- Updated dependencies [616690d]
|
|
883
|
+
- Updated dependencies [f3b595e]
|
|
884
|
+
- Updated dependencies [91265bb]
|
|
885
|
+
- Updated dependencies [59fb7c3]
|
|
886
|
+
- Updated dependencies [bbe18b9]
|
|
887
|
+
- Updated dependencies [f0c23bc]
|
|
888
|
+
- Updated dependencies [3420416]
|
|
889
|
+
- Updated dependencies [495d155]
|
|
890
|
+
- Updated dependencies [beb499e]
|
|
891
|
+
- Updated dependencies [6c18543]
|
|
892
|
+
- Updated dependencies [40ad73e]
|
|
893
|
+
- Updated dependencies [495d155]
|
|
894
|
+
- Updated dependencies [f046f8e]
|
|
895
|
+
- Updated dependencies [6b2972b]
|
|
896
|
+
- Updated dependencies [3e68768]
|
|
897
|
+
- @akinon/next@1.34.0-rc.20
|
|
898
|
+
- @akinon/pz-masterpass@1.34.0-rc.20
|
|
899
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.20
|
|
900
|
+
- @akinon/pz-b2b@1.34.0-rc.20
|
|
901
|
+
- @akinon/pz-gpay@1.34.0-rc.20
|
|
902
|
+
- @akinon/pz-otp@1.34.0-rc.20
|
|
903
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.20
|
|
904
|
+
|
|
905
|
+
## 1.34.0-rc.19
|
|
906
|
+
|
|
907
|
+
### Patch Changes
|
|
908
|
+
|
|
909
|
+
- Updated dependencies [c53ef7b]
|
|
910
|
+
- @akinon/next@1.34.0-rc.19
|
|
911
|
+
- @akinon/pz-b2b@1.34.0-rc.19
|
|
912
|
+
- @akinon/pz-gpay@1.34.0-rc.19
|
|
913
|
+
- @akinon/pz-masterpass@1.34.0-rc.19
|
|
914
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.19
|
|
915
|
+
- @akinon/pz-otp@1.34.0-rc.19
|
|
916
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.19
|
|
917
|
+
|
|
918
|
+
## 1.34.0-rc.18
|
|
919
|
+
|
|
920
|
+
### Minor Changes
|
|
921
|
+
|
|
922
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
923
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
924
|
+
|
|
925
|
+
### Patch Changes
|
|
926
|
+
|
|
927
|
+
- Updated dependencies [a4c8d6a]
|
|
928
|
+
- @akinon/next@1.34.0-rc.18
|
|
929
|
+
- @akinon/pz-b2b@1.34.0-rc.18
|
|
930
|
+
- @akinon/pz-gpay@1.34.0-rc.18
|
|
931
|
+
- @akinon/pz-masterpass@1.34.0-rc.18
|
|
932
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.18
|
|
933
|
+
- @akinon/pz-otp@1.34.0-rc.18
|
|
934
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.18
|
|
935
|
+
|
|
936
|
+
## 1.34.0-rc.17
|
|
937
|
+
|
|
938
|
+
### Minor Changes
|
|
939
|
+
|
|
940
|
+
- 567e4c1: ZERO-2580:Add checked attribute from props to checkbox
|
|
941
|
+
- d09b677: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
|
|
942
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
943
|
+
- ebb63ce: ZERO-2525: Fix category facet removal bug and add close icon to active filters
|
|
944
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
945
|
+
- 0d0f36c: ZERO-2598: Fix eslint warnings and update dependencies
|
|
946
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
947
|
+
- f0c23bc: ZERO-2135: add custom not found page
|
|
948
|
+
- 3420416: ZERO-2533: extend eslint config from @akinon/next
|
|
949
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
950
|
+
- 6c18543: ZERO-2542:Refactor and show error in OneClickCheckoutButtons
|
|
951
|
+
- 202f84e: ZERO-2569: Fix static keys
|
|
952
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
953
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
954
|
+
- 12c10a4: ZERO-2570: Category filters routes to absolute url
|
|
955
|
+
|
|
956
|
+
### Patch Changes
|
|
957
|
+
|
|
958
|
+
- Updated dependencies [d09b677]
|
|
959
|
+
- Updated dependencies [6d4aadb]
|
|
960
|
+
- Updated dependencies [8e6e8cf]
|
|
961
|
+
- Updated dependencies [ebb63ce]
|
|
962
|
+
- Updated dependencies [7cebe87]
|
|
963
|
+
- Updated dependencies [616690d]
|
|
964
|
+
- Updated dependencies [f3b595e]
|
|
965
|
+
- Updated dependencies [91265bb]
|
|
966
|
+
- Updated dependencies [59fb7c3]
|
|
967
|
+
- Updated dependencies [bbe18b9]
|
|
968
|
+
- Updated dependencies [f0c23bc]
|
|
969
|
+
- Updated dependencies [3420416]
|
|
970
|
+
- Updated dependencies [495d155]
|
|
971
|
+
- Updated dependencies [beb499e]
|
|
972
|
+
- Updated dependencies [6c18543]
|
|
973
|
+
- Updated dependencies [40ad73e]
|
|
974
|
+
- Updated dependencies [495d155]
|
|
975
|
+
- Updated dependencies [f046f8e]
|
|
976
|
+
- Updated dependencies [6b2972b]
|
|
977
|
+
- Updated dependencies [3e68768]
|
|
978
|
+
- @akinon/next@1.34.0-rc.17
|
|
979
|
+
- @akinon/pz-masterpass@1.34.0-rc.17
|
|
980
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.17
|
|
981
|
+
- @akinon/pz-b2b@1.34.0-rc.17
|
|
982
|
+
- @akinon/pz-gpay@1.34.0-rc.17
|
|
983
|
+
- @akinon/pz-otp@1.34.0-rc.17
|
|
984
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.17
|
|
985
|
+
|
|
986
|
+
## 1.34.0-rc.16
|
|
987
|
+
|
|
988
|
+
### Patch Changes
|
|
989
|
+
|
|
990
|
+
- @akinon/next@1.34.0-rc.16
|
|
991
|
+
- @akinon/pz-b2b@1.34.0-rc.16
|
|
992
|
+
- @akinon/pz-gpay@1.34.0-rc.16
|
|
993
|
+
- @akinon/pz-masterpass@1.34.0-rc.16
|
|
994
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.16
|
|
995
|
+
- @akinon/pz-otp@1.34.0-rc.16
|
|
996
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.16
|
|
997
|
+
|
|
998
|
+
## 1.34.0-rc.15
|
|
999
|
+
|
|
1000
|
+
### Patch Changes
|
|
1001
|
+
|
|
1002
|
+
- @akinon/next@1.34.0-rc.15
|
|
1003
|
+
- @akinon/pz-b2b@1.34.0-rc.15
|
|
1004
|
+
- @akinon/pz-gpay@1.34.0-rc.15
|
|
1005
|
+
- @akinon/pz-masterpass@1.34.0-rc.15
|
|
1006
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.15
|
|
1007
|
+
- @akinon/pz-otp@1.34.0-rc.15
|
|
1008
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.15
|
|
1009
|
+
|
|
1010
|
+
## 1.34.0-rc.14
|
|
1011
|
+
|
|
1012
|
+
### Minor Changes
|
|
1013
|
+
|
|
1014
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
1015
|
+
|
|
1016
|
+
### Patch Changes
|
|
1017
|
+
|
|
1018
|
+
- @akinon/next@1.34.0-rc.14
|
|
1019
|
+
- @akinon/pz-b2b@1.34.0-rc.14
|
|
1020
|
+
- @akinon/pz-gpay@1.34.0-rc.14
|
|
1021
|
+
- @akinon/pz-masterpass@1.34.0-rc.14
|
|
1022
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.14
|
|
1023
|
+
- @akinon/pz-otp@1.34.0-rc.14
|
|
1024
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.14
|
|
1025
|
+
|
|
1026
|
+
## 1.34.0-rc.13
|
|
1027
|
+
|
|
1028
|
+
### Minor Changes
|
|
1029
|
+
|
|
1030
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
1031
|
+
|
|
1032
|
+
### Patch Changes
|
|
1033
|
+
|
|
1034
|
+
- @akinon/next@1.34.0-rc.13
|
|
1035
|
+
- @akinon/pz-b2b@1.34.0-rc.13
|
|
1036
|
+
- @akinon/pz-gpay@1.34.0-rc.13
|
|
1037
|
+
- @akinon/pz-masterpass@1.34.0-rc.13
|
|
1038
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.13
|
|
1039
|
+
- @akinon/pz-otp@1.34.0-rc.13
|
|
1040
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.13
|
|
1041
|
+
|
|
1042
|
+
## 1.34.0-rc.12
|
|
1043
|
+
|
|
1044
|
+
### Patch Changes
|
|
1045
|
+
|
|
1046
|
+
- Updated dependencies [616690d]
|
|
1047
|
+
- @akinon/next@1.34.0-rc.12
|
|
1048
|
+
- @akinon/pz-b2b@1.34.0-rc.12
|
|
1049
|
+
- @akinon/pz-gpay@1.34.0-rc.12
|
|
1050
|
+
- @akinon/pz-masterpass@1.34.0-rc.12
|
|
1051
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.12
|
|
1052
|
+
- @akinon/pz-otp@1.34.0-rc.12
|
|
1053
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.12
|
|
1054
|
+
|
|
1055
|
+
## 1.34.0-rc.11
|
|
1056
|
+
|
|
1057
|
+
### Patch Changes
|
|
1058
|
+
|
|
1059
|
+
- Updated dependencies [8e6e8cf]
|
|
1060
|
+
- @akinon/next@1.34.0-rc.11
|
|
1061
|
+
- @akinon/pz-b2b@1.34.0-rc.11
|
|
1062
|
+
- @akinon/pz-gpay@1.34.0-rc.11
|
|
1063
|
+
- @akinon/pz-masterpass@1.34.0-rc.11
|
|
1064
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.11
|
|
1065
|
+
- @akinon/pz-otp@1.34.0-rc.11
|
|
1066
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.11
|
|
1067
|
+
|
|
1068
|
+
## 1.34.0-rc.10
|
|
1069
|
+
|
|
1070
|
+
### Patch Changes
|
|
1071
|
+
|
|
1072
|
+
- Updated dependencies [bbe18b9]
|
|
1073
|
+
- @akinon/next@1.34.0-rc.10
|
|
1074
|
+
- @akinon/pz-b2b@1.34.0-rc.10
|
|
1075
|
+
- @akinon/pz-gpay@1.34.0-rc.10
|
|
1076
|
+
- @akinon/pz-masterpass@1.34.0-rc.10
|
|
1077
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.10
|
|
1078
|
+
- @akinon/pz-otp@1.34.0-rc.10
|
|
1079
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.10
|
|
1080
|
+
|
|
1081
|
+
## 1.34.0-rc.9
|
|
1082
|
+
|
|
1083
|
+
### Minor Changes
|
|
1084
|
+
|
|
1085
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1086
|
+
|
|
1087
|
+
### Patch Changes
|
|
1088
|
+
|
|
1089
|
+
- Updated dependencies [beb499e]
|
|
1090
|
+
- @akinon/next@1.34.0-rc.9
|
|
1091
|
+
- @akinon/pz-b2b@1.34.0-rc.9
|
|
1092
|
+
- @akinon/pz-gpay@1.34.0-rc.9
|
|
1093
|
+
- @akinon/pz-masterpass@1.34.0-rc.9
|
|
1094
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.9
|
|
1095
|
+
- @akinon/pz-otp@1.34.0-rc.9
|
|
1096
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.9
|
|
1097
|
+
|
|
1098
|
+
## 1.34.0-rc.8
|
|
1099
|
+
|
|
1100
|
+
### Minor Changes
|
|
1101
|
+
|
|
1102
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1103
|
+
|
|
1104
|
+
### Patch Changes
|
|
1105
|
+
|
|
1106
|
+
- Updated dependencies [91265bb]
|
|
1107
|
+
- @akinon/next@1.34.0-rc.8
|
|
1108
|
+
- @akinon/pz-b2b@1.34.0-rc.8
|
|
1109
|
+
- @akinon/pz-gpay@1.34.0-rc.8
|
|
1110
|
+
- @akinon/pz-masterpass@1.34.0-rc.8
|
|
1111
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.8
|
|
1112
|
+
- @akinon/pz-otp@1.34.0-rc.8
|
|
1113
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.8
|
|
1114
|
+
|
|
1115
|
+
## 1.34.0-rc.7
|
|
1116
|
+
|
|
1117
|
+
### Minor Changes
|
|
1118
|
+
|
|
1119
|
+
- 0d0f36c: ZERO-2598: Fix eslint warnings and update dependencies
|
|
1120
|
+
|
|
1121
|
+
### Patch Changes
|
|
1122
|
+
|
|
1123
|
+
- @akinon/next@1.34.0-rc.7
|
|
1124
|
+
- @akinon/pz-b2b@1.34.0-rc.7
|
|
1125
|
+
- @akinon/pz-gpay@1.34.0-rc.7
|
|
1126
|
+
- @akinon/pz-masterpass@1.34.0-rc.7
|
|
1127
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.7
|
|
1128
|
+
- @akinon/pz-otp@1.34.0-rc.7
|
|
1129
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.7
|
|
1130
|
+
|
|
1131
|
+
## 1.34.0-rc.6
|
|
1132
|
+
|
|
1133
|
+
### Minor Changes
|
|
1134
|
+
|
|
1135
|
+
- 567e4c1: ZERO-2580:Add checked attribute from props to checkbox
|
|
1136
|
+
- d09b677: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
|
|
1137
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
1138
|
+
- ebb63ce: ZERO-2525: Fix category facet removal bug and add close icon to active filters
|
|
1139
|
+
- f0c23bc: ZERO-2135: add custom not found page
|
|
1140
|
+
- 3420416: ZERO-2533: extend eslint config from @akinon/next
|
|
1141
|
+
- 6c18543: ZERO-2542:Refactor and show error in OneClickCheckoutButtons
|
|
1142
|
+
- 202f84e: ZERO-2569: Fix static keys
|
|
1143
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
1144
|
+
- 12c10a4: ZERO-2570: Category filters routes to absolute url
|
|
1145
|
+
|
|
1146
|
+
### Patch Changes
|
|
1147
|
+
|
|
1148
|
+
- Updated dependencies [d09b677]
|
|
1149
|
+
- Updated dependencies [6d4aadb]
|
|
1150
|
+
- Updated dependencies [ebb63ce]
|
|
1151
|
+
- Updated dependencies [7cebe87]
|
|
1152
|
+
- Updated dependencies [f3b595e]
|
|
1153
|
+
- Updated dependencies [59fb7c3]
|
|
1154
|
+
- Updated dependencies [f0c23bc]
|
|
1155
|
+
- Updated dependencies [3420416]
|
|
1156
|
+
- Updated dependencies [495d155]
|
|
1157
|
+
- Updated dependencies [6c18543]
|
|
1158
|
+
- Updated dependencies [40ad73e]
|
|
1159
|
+
- Updated dependencies [495d155]
|
|
1160
|
+
- Updated dependencies [f046f8e]
|
|
1161
|
+
- Updated dependencies [6b2972b]
|
|
1162
|
+
- Updated dependencies [3e68768]
|
|
1163
|
+
- @akinon/next@1.34.0-rc.6
|
|
1164
|
+
- @akinon/pz-masterpass@1.34.0-rc.6
|
|
1165
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.6
|
|
1166
|
+
- @akinon/pz-b2b@1.34.0-rc.6
|
|
1167
|
+
- @akinon/pz-gpay@1.34.0-rc.6
|
|
1168
|
+
- @akinon/pz-otp@1.34.0-rc.6
|
|
1169
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.6
|
|
218
1170
|
|
|
219
1171
|
## 1.33.2
|
|
220
1172
|
|