@akinon/projectzero 1.48.0 → 1.50.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.
- package/CHANGELOG.md +43 -0
- package/README.md +3 -2
- package/app-template/.gitignore +2 -0
- package/app-template/.lintstagedrc.js +5 -4
- package/app-template/CHANGELOG.md +1712 -47
- 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 +22 -20
- 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/pagination.tsx +13 -18
- package/app-template/src/components/price.tsx +9 -4
- package/app-template/src/redux/reducers/category.ts +7 -1
- package/app-template/src/settings.js +6 -1
- package/app-template/src/views/account/address-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-active-filters.tsx +16 -6
- package/app-template/src/views/category/category-info.tsx +31 -17
- package/app-template/src/views/category/filters/filter-item.tsx +163 -0
- package/app-template/src/views/category/filters/index.tsx +16 -108
- package/app-template/src/views/category/layout.tsx +5 -3
- package/app-template/src/views/checkout/steps/payment/options/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/src/views/product/product-info.tsx +0 -2
- 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,26 +1,627 @@
|
|
|
1
1
|
# projectzeronext
|
|
2
2
|
|
|
3
|
+
## 1.50.0-rc.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
8
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
9
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
10
|
+
- 97b8bdc9: ZERO-2724: Remove onClick event in shipping options component
|
|
11
|
+
- 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
|
|
12
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
13
|
+
- 8217463: ZERO-2887: Add LoaderSpinner to Filters component
|
|
14
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
15
|
+
- 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
16
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
17
|
+
- e665a0ac: ZERO-2625: Add click outside functionality to close mobile menu
|
|
18
|
+
- 52c13732: ZERO-2619: Added fix flag for the staged linter
|
|
19
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
20
|
+
- 03c4c3eb: ZERO-2731: Update Project Zero CLI command
|
|
21
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
22
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
23
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
24
|
+
- 778a9a0b: ZERO-2740: Upgrade next to 14.2.4
|
|
25
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
26
|
+
- 06650cab: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
27
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
28
|
+
- 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
|
|
29
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
30
|
+
- d2f0f15c: ZERO-2723: Update sentry version and dependencies
|
|
31
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
32
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
33
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
34
|
+
- 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
|
|
35
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
36
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
37
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
38
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
39
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
40
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
41
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
42
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
43
|
+
- fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
44
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
45
|
+
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
46
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
47
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
48
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
49
|
+
|
|
50
|
+
### Patch Changes
|
|
51
|
+
|
|
52
|
+
- Updated dependencies [90282b53]
|
|
53
|
+
- Updated dependencies [50b90692]
|
|
54
|
+
- Updated dependencies [572d2e84]
|
|
55
|
+
- Updated dependencies [5dfeea0]
|
|
56
|
+
- Updated dependencies [a4c8d6a9]
|
|
57
|
+
- Updated dependencies [fda5b927]
|
|
58
|
+
- Updated dependencies [2d9b2b2]
|
|
59
|
+
- Updated dependencies [c53ea3e6]
|
|
60
|
+
- Updated dependencies [d93a507]
|
|
61
|
+
- Updated dependencies [8d9ac9a]
|
|
62
|
+
- Updated dependencies [18e8197]
|
|
63
|
+
- Updated dependencies [eaf97d6]
|
|
64
|
+
- Updated dependencies [714e0b46]
|
|
65
|
+
- Updated dependencies [70279e7]
|
|
66
|
+
- Updated dependencies [6c25f66]
|
|
67
|
+
- Updated dependencies [bc2b411]
|
|
68
|
+
- Updated dependencies [3bf2dd9]
|
|
69
|
+
- Updated dependencies [e9541a1]
|
|
70
|
+
- Updated dependencies [c53ef7b9]
|
|
71
|
+
- Updated dependencies [9d94f7e]
|
|
72
|
+
- Updated dependencies [2e6104d]
|
|
73
|
+
- Updated dependencies [64699d3]
|
|
74
|
+
- Updated dependencies [0d3a913e]
|
|
75
|
+
- Updated dependencies [1448a96e]
|
|
76
|
+
- Updated dependencies [1ec2e9d]
|
|
77
|
+
- Updated dependencies [d6edb1d]
|
|
78
|
+
- Updated dependencies [d3474c64]
|
|
79
|
+
- Updated dependencies [75080fd6]
|
|
80
|
+
- Updated dependencies [17f8752]
|
|
81
|
+
- Updated dependencies [c45b62c]
|
|
82
|
+
- Updated dependencies [91265bba]
|
|
83
|
+
- Updated dependencies [bbe18b9f]
|
|
84
|
+
- Updated dependencies [d4099960]
|
|
85
|
+
- Updated dependencies [4920742]
|
|
86
|
+
- Updated dependencies [12a873e]
|
|
87
|
+
- Updated dependencies [69ca080]
|
|
88
|
+
- Updated dependencies [7e56d6b]
|
|
89
|
+
- Updated dependencies [94b6928]
|
|
90
|
+
- Updated dependencies [98bb8dcd]
|
|
91
|
+
- Updated dependencies [46b7aad7]
|
|
92
|
+
- Updated dependencies [dcc8a150]
|
|
93
|
+
- Updated dependencies [8f47cca]
|
|
94
|
+
- Updated dependencies [fad27689]
|
|
95
|
+
- Updated dependencies [dff0d595]
|
|
96
|
+
- Updated dependencies [fdd0b41]
|
|
97
|
+
- Updated dependencies [eecb282]
|
|
98
|
+
- Updated dependencies [f2c325c]
|
|
99
|
+
- Updated dependencies [9e25a64]
|
|
100
|
+
- Updated dependencies [beb499e6]
|
|
101
|
+
- Updated dependencies [146ea391]
|
|
102
|
+
- Updated dependencies [f2c92d5]
|
|
103
|
+
- Updated dependencies [7bd3d99]
|
|
104
|
+
- Updated dependencies [c47be30d]
|
|
105
|
+
- Updated dependencies [e9a46acb]
|
|
106
|
+
- Updated dependencies [f046f8e0]
|
|
107
|
+
- Updated dependencies [b9273fd]
|
|
108
|
+
- Updated dependencies [86d25315]
|
|
109
|
+
- Updated dependencies [c670bd4]
|
|
110
|
+
- Updated dependencies [3f9b8d7]
|
|
111
|
+
- @akinon/next@1.50.0-rc.0
|
|
112
|
+
- @akinon/pz-checkout-gift-pack@1.50.0-rc.0
|
|
113
|
+
- @akinon/pz-one-click-checkout@1.50.0-rc.0
|
|
114
|
+
- @akinon/pz-basket-gift-pack@1.50.0-rc.0
|
|
115
|
+
- @akinon/pz-click-collect@1.50.0-rc.0
|
|
116
|
+
- @akinon/pz-masterpass@1.50.0-rc.0
|
|
117
|
+
- @akinon/pz-akifast@1.50.0-rc.0
|
|
118
|
+
- @akinon/pz-gpay@1.50.0-rc.0
|
|
119
|
+
- @akinon/pz-b2b@1.50.0-rc.0
|
|
120
|
+
- @akinon/pz-bkm@1.50.0-rc.0
|
|
121
|
+
- @akinon/pz-otp@1.50.0-rc.0
|
|
122
|
+
- @akinon/pz-pay-on-delivery@1.50.0-rc.0
|
|
123
|
+
- @akinon/pz-credit-payment@1.50.0-rc.0
|
|
124
|
+
|
|
125
|
+
## 1.49.0
|
|
126
|
+
|
|
127
|
+
### Patch Changes
|
|
128
|
+
|
|
129
|
+
- Updated dependencies [26b809f]
|
|
130
|
+
- Updated dependencies [20da358]
|
|
131
|
+
- Updated dependencies [04115e5]
|
|
132
|
+
- Updated dependencies [fa88889]
|
|
133
|
+
- @akinon/next@1.49.0
|
|
134
|
+
- @akinon/pz-akifast@1.49.0
|
|
135
|
+
- @akinon/pz-b2b@1.49.0
|
|
136
|
+
- @akinon/pz-basket-gift-pack@1.49.0
|
|
137
|
+
- @akinon/pz-bkm@1.49.0
|
|
138
|
+
- @akinon/pz-checkout-gift-pack@1.49.0
|
|
139
|
+
- @akinon/pz-click-collect@1.49.0
|
|
140
|
+
- @akinon/pz-credit-payment@1.49.0
|
|
141
|
+
- @akinon/pz-gpay@1.49.0
|
|
142
|
+
- @akinon/pz-masterpass@1.49.0
|
|
143
|
+
- @akinon/pz-one-click-checkout@1.49.0
|
|
144
|
+
- @akinon/pz-otp@1.49.0
|
|
145
|
+
- @akinon/pz-pay-on-delivery@1.49.0
|
|
146
|
+
|
|
3
147
|
## 1.48.0
|
|
4
148
|
|
|
5
149
|
### Minor Changes
|
|
6
150
|
|
|
151
|
+
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
152
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
153
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
154
|
+
- 97b8bdc9: ZERO-2724: Remove onClick event in shipping options component
|
|
155
|
+
- 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
|
|
156
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
157
|
+
- 8217463: ZERO-2887: Add LoaderSpinner to Filters component
|
|
158
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
159
|
+
- 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
160
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
161
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
162
|
+
- 52c13732: ZERO-2619: Added fix flag for the staged linter
|
|
163
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
164
|
+
- 03c4c3eb: ZERO-2731: Update Project Zero CLI command
|
|
165
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
166
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
167
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
168
|
+
- 778a9a0b: ZERO-2740: Upgrade next to 14.2.4
|
|
169
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
170
|
+
- 06650cab: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
171
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
172
|
+
- 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
|
|
173
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
174
|
+
- d2f0f15c: ZERO-2723: Update sentry version and dependencies
|
|
175
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
176
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
177
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
178
|
+
- 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
|
|
179
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
180
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
181
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
182
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
183
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
184
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
185
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
186
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
187
|
+
- fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
188
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
189
|
+
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
190
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
191
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
192
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
193
|
+
|
|
194
|
+
### Patch Changes
|
|
195
|
+
|
|
196
|
+
- Updated dependencies [90282b53]
|
|
197
|
+
- Updated dependencies [50b9069]
|
|
198
|
+
- Updated dependencies [572d2e84]
|
|
199
|
+
- Updated dependencies [5dfeea0]
|
|
200
|
+
- Updated dependencies [a4c8d6a9]
|
|
201
|
+
- Updated dependencies [fda5b927]
|
|
202
|
+
- Updated dependencies [2d9b2b2]
|
|
203
|
+
- Updated dependencies [c53ea3e6]
|
|
204
|
+
- Updated dependencies [d93a507]
|
|
205
|
+
- Updated dependencies [8d9ac9a]
|
|
206
|
+
- Updated dependencies [18e8197]
|
|
207
|
+
- Updated dependencies [714e0b46]
|
|
208
|
+
- Updated dependencies [70279e7]
|
|
209
|
+
- Updated dependencies [6c25f66]
|
|
210
|
+
- Updated dependencies [bc2b411]
|
|
211
|
+
- Updated dependencies [3bf2dd9]
|
|
212
|
+
- Updated dependencies [e9541a1]
|
|
213
|
+
- Updated dependencies [c53ef7b9]
|
|
214
|
+
- Updated dependencies [9d94f7e]
|
|
215
|
+
- Updated dependencies [2e6104d]
|
|
216
|
+
- Updated dependencies [64699d3]
|
|
217
|
+
- Updated dependencies [0d3a913e]
|
|
218
|
+
- Updated dependencies [1448a96e]
|
|
219
|
+
- Updated dependencies [26b809f]
|
|
220
|
+
- Updated dependencies [1ec2e9d]
|
|
221
|
+
- Updated dependencies [d6edb1d]
|
|
222
|
+
- Updated dependencies [d3474c64]
|
|
223
|
+
- Updated dependencies [75080fd6]
|
|
224
|
+
- Updated dependencies [17f8752]
|
|
225
|
+
- Updated dependencies [c45b62c]
|
|
226
|
+
- Updated dependencies [91265bba]
|
|
227
|
+
- Updated dependencies [20da358]
|
|
228
|
+
- Updated dependencies [bbe18b9f]
|
|
229
|
+
- Updated dependencies [d409996]
|
|
230
|
+
- Updated dependencies [4920742]
|
|
231
|
+
- Updated dependencies [12a873e]
|
|
232
|
+
- Updated dependencies [69ca080]
|
|
233
|
+
- Updated dependencies [7e56d6b]
|
|
234
|
+
- Updated dependencies [94b6928]
|
|
235
|
+
- Updated dependencies [98bb8dcd]
|
|
236
|
+
- Updated dependencies [46b7aad7]
|
|
237
|
+
- Updated dependencies [dcc8a150]
|
|
238
|
+
- Updated dependencies [8f47cca]
|
|
239
|
+
- Updated dependencies [fad27689]
|
|
240
|
+
- Updated dependencies [dff0d595]
|
|
241
|
+
- Updated dependencies [fdd0b41]
|
|
242
|
+
- Updated dependencies [eecb282]
|
|
243
|
+
- Updated dependencies [f2c325c]
|
|
244
|
+
- Updated dependencies [9e25a64]
|
|
245
|
+
- Updated dependencies [beb499e6]
|
|
246
|
+
- Updated dependencies [146ea391]
|
|
247
|
+
- Updated dependencies [f2c92d5]
|
|
248
|
+
- Updated dependencies [7bd3d99]
|
|
249
|
+
- Updated dependencies [c47be30d]
|
|
250
|
+
- Updated dependencies [e9a46acb]
|
|
251
|
+
- Updated dependencies [f046f8e0]
|
|
252
|
+
- Updated dependencies [04115e5]
|
|
253
|
+
- Updated dependencies [b9273fd]
|
|
254
|
+
- Updated dependencies [fa88889]
|
|
255
|
+
- Updated dependencies [86d25315]
|
|
256
|
+
- Updated dependencies [c670bd4]
|
|
257
|
+
- Updated dependencies [3f9b8d7]
|
|
258
|
+
- @akinon/next@1.48.0-rc.8
|
|
259
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.8
|
|
260
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.8
|
|
261
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.8
|
|
262
|
+
- @akinon/pz-click-collect@1.48.0-rc.8
|
|
263
|
+
- @akinon/pz-masterpass@1.48.0-rc.8
|
|
264
|
+
- @akinon/pz-akifast@1.48.0-rc.8
|
|
265
|
+
- @akinon/pz-gpay@1.48.0-rc.8
|
|
266
|
+
- @akinon/pz-b2b@1.48.0-rc.8
|
|
267
|
+
- @akinon/pz-bkm@1.48.0-rc.8
|
|
268
|
+
- @akinon/pz-otp@1.48.0-rc.8
|
|
269
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.8
|
|
270
|
+
- @akinon/pz-credit-payment@1.48.0-rc.8
|
|
271
|
+
|
|
272
|
+
## 1.48.0-rc.7
|
|
273
|
+
|
|
274
|
+
### Patch Changes
|
|
275
|
+
|
|
276
|
+
- Updated dependencies [26b809f]
|
|
277
|
+
- @akinon/next@1.48.0-rc.7
|
|
278
|
+
- @akinon/pz-akifast@1.48.0-rc.7
|
|
279
|
+
- @akinon/pz-b2b@1.48.0-rc.7
|
|
280
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.7
|
|
281
|
+
- @akinon/pz-bkm@1.48.0-rc.7
|
|
282
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.7
|
|
283
|
+
- @akinon/pz-click-collect@1.48.0-rc.7
|
|
284
|
+
- @akinon/pz-credit-payment@1.48.0-rc.7
|
|
285
|
+
- @akinon/pz-gpay@1.48.0-rc.7
|
|
286
|
+
- @akinon/pz-masterpass@1.48.0-rc.7
|
|
287
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.7
|
|
288
|
+
- @akinon/pz-otp@1.48.0-rc.7
|
|
289
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.7
|
|
290
|
+
|
|
291
|
+
## 1.48.0-rc.6
|
|
292
|
+
|
|
293
|
+
### Patch Changes
|
|
294
|
+
|
|
295
|
+
- Updated dependencies [04115e5]
|
|
296
|
+
- @akinon/next@1.48.0-rc.6
|
|
297
|
+
- @akinon/pz-akifast@1.48.0-rc.6
|
|
298
|
+
- @akinon/pz-b2b@1.48.0-rc.6
|
|
299
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.6
|
|
300
|
+
- @akinon/pz-bkm@1.48.0-rc.6
|
|
301
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.6
|
|
302
|
+
- @akinon/pz-click-collect@1.48.0-rc.6
|
|
303
|
+
- @akinon/pz-credit-payment@1.48.0-rc.6
|
|
304
|
+
- @akinon/pz-gpay@1.48.0-rc.6
|
|
305
|
+
- @akinon/pz-masterpass@1.48.0-rc.6
|
|
306
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.6
|
|
307
|
+
- @akinon/pz-otp@1.48.0-rc.6
|
|
308
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.6
|
|
309
|
+
|
|
310
|
+
## 1.48.0-rc.5
|
|
311
|
+
|
|
312
|
+
### Patch Changes
|
|
313
|
+
|
|
314
|
+
- Updated dependencies [20da358]
|
|
315
|
+
- @akinon/next@1.48.0-rc.5
|
|
316
|
+
- @akinon/pz-akifast@1.48.0-rc.5
|
|
317
|
+
- @akinon/pz-b2b@1.48.0-rc.5
|
|
318
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.5
|
|
319
|
+
- @akinon/pz-bkm@1.48.0-rc.5
|
|
320
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.5
|
|
321
|
+
- @akinon/pz-click-collect@1.48.0-rc.5
|
|
322
|
+
- @akinon/pz-credit-payment@1.48.0-rc.5
|
|
323
|
+
- @akinon/pz-gpay@1.48.0-rc.5
|
|
324
|
+
- @akinon/pz-masterpass@1.48.0-rc.5
|
|
325
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.5
|
|
326
|
+
- @akinon/pz-otp@1.48.0-rc.5
|
|
327
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.5
|
|
328
|
+
|
|
329
|
+
## 1.48.0-rc.4
|
|
330
|
+
|
|
331
|
+
### Patch Changes
|
|
332
|
+
|
|
333
|
+
- Updated dependencies [5dfeea0]
|
|
334
|
+
- @akinon/next@1.48.0-rc.4
|
|
335
|
+
- @akinon/pz-akifast@1.48.0-rc.4
|
|
336
|
+
- @akinon/pz-b2b@1.48.0-rc.4
|
|
337
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.4
|
|
338
|
+
- @akinon/pz-bkm@1.48.0-rc.4
|
|
339
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.4
|
|
340
|
+
- @akinon/pz-click-collect@1.48.0-rc.4
|
|
341
|
+
- @akinon/pz-credit-payment@1.48.0-rc.4
|
|
342
|
+
- @akinon/pz-gpay@1.48.0-rc.4
|
|
343
|
+
- @akinon/pz-masterpass@1.48.0-rc.4
|
|
344
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.4
|
|
345
|
+
- @akinon/pz-otp@1.48.0-rc.4
|
|
346
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.4
|
|
347
|
+
|
|
348
|
+
## 1.48.0-rc.3
|
|
349
|
+
|
|
350
|
+
### Minor Changes
|
|
351
|
+
|
|
352
|
+
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
353
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
354
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
355
|
+
- 97b8bdc9: ZERO-2724: Remove onClick event in shipping options component
|
|
356
|
+
- 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
|
|
357
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
358
|
+
- 8217463: ZERO-2887: Add LoaderSpinner to Filters component
|
|
359
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
360
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
361
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
362
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
363
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
364
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
365
|
+
- 03c4c3eb: ZERO-2731: Update Project Zero CLI command
|
|
366
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
367
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
368
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
369
|
+
- 778a9a0b: ZERO-2740: Upgrade next to 14.2.4
|
|
370
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
371
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
372
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
373
|
+
- 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
|
|
374
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
375
|
+
- d2f0f15c: ZERO-2723: Update sentry version and dependencies
|
|
376
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
377
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
378
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
379
|
+
- 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
|
|
380
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
381
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
382
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
383
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
384
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
385
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
386
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
387
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
7
388
|
- f45aa87: ZERO-2904: Upgrade version for tailwindcss
|
|
389
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
390
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
391
|
+
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
392
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
393
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
394
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
395
|
+
|
|
396
|
+
### Patch Changes
|
|
397
|
+
|
|
398
|
+
- Updated dependencies [90282b53]
|
|
399
|
+
- Updated dependencies [50b9069]
|
|
400
|
+
- Updated dependencies [572d2e84]
|
|
401
|
+
- Updated dependencies [a4c8d6a9]
|
|
402
|
+
- Updated dependencies [fda5b92]
|
|
403
|
+
- Updated dependencies [2d9b2b2]
|
|
404
|
+
- Updated dependencies [c53ea3e6]
|
|
405
|
+
- Updated dependencies [d93a507]
|
|
406
|
+
- Updated dependencies [8d9ac9a]
|
|
407
|
+
- Updated dependencies [18e8197]
|
|
408
|
+
- Updated dependencies [714e0b46]
|
|
409
|
+
- Updated dependencies [70279e7]
|
|
410
|
+
- Updated dependencies [6c25f66]
|
|
411
|
+
- Updated dependencies [bc2b411]
|
|
412
|
+
- Updated dependencies [3bf2dd9]
|
|
413
|
+
- Updated dependencies [e9541a1]
|
|
414
|
+
- Updated dependencies [c53ef7b9]
|
|
415
|
+
- Updated dependencies [9d94f7e]
|
|
416
|
+
- Updated dependencies [2e6104d]
|
|
417
|
+
- Updated dependencies [64699d3]
|
|
418
|
+
- Updated dependencies [0d3a913e]
|
|
419
|
+
- Updated dependencies [1448a96e]
|
|
420
|
+
- Updated dependencies [1ec2e9d]
|
|
421
|
+
- Updated dependencies [d6edb1d]
|
|
422
|
+
- Updated dependencies [d3474c64]
|
|
423
|
+
- Updated dependencies [75080fd6]
|
|
424
|
+
- Updated dependencies [17f8752]
|
|
425
|
+
- Updated dependencies [c45b62c]
|
|
426
|
+
- Updated dependencies [91265bba]
|
|
427
|
+
- Updated dependencies [bbe18b9f]
|
|
428
|
+
- Updated dependencies [d409996]
|
|
429
|
+
- Updated dependencies [4920742]
|
|
430
|
+
- Updated dependencies [12a873e]
|
|
431
|
+
- Updated dependencies [69ca080]
|
|
432
|
+
- Updated dependencies [7e56d6b]
|
|
433
|
+
- Updated dependencies [94b6928]
|
|
434
|
+
- Updated dependencies [98bb8dcd]
|
|
435
|
+
- Updated dependencies [46b7aad]
|
|
436
|
+
- Updated dependencies [dcc8a150]
|
|
437
|
+
- Updated dependencies [8f47cca]
|
|
438
|
+
- Updated dependencies [fad27689]
|
|
439
|
+
- Updated dependencies [dff0d595]
|
|
440
|
+
- Updated dependencies [fdd0b41]
|
|
441
|
+
- Updated dependencies [eecb282]
|
|
442
|
+
- Updated dependencies [f2c325c]
|
|
443
|
+
- Updated dependencies [9e25a64]
|
|
444
|
+
- Updated dependencies [beb499e6]
|
|
445
|
+
- Updated dependencies [146ea39]
|
|
446
|
+
- Updated dependencies [f2c92d5]
|
|
447
|
+
- Updated dependencies [7bd3d99]
|
|
448
|
+
- Updated dependencies [c47be30d]
|
|
449
|
+
- Updated dependencies [e9a46acb]
|
|
450
|
+
- Updated dependencies [f046f8e0]
|
|
451
|
+
- Updated dependencies [b9273fd]
|
|
452
|
+
- Updated dependencies [86d25315]
|
|
453
|
+
- Updated dependencies [c670bd4]
|
|
454
|
+
- Updated dependencies [3f9b8d7]
|
|
455
|
+
- @akinon/next@1.48.0-rc.3
|
|
456
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.3
|
|
457
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.3
|
|
458
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.3
|
|
459
|
+
- @akinon/pz-click-collect@1.48.0-rc.3
|
|
460
|
+
- @akinon/pz-masterpass@1.48.0-rc.3
|
|
461
|
+
- @akinon/pz-akifast@1.48.0-rc.3
|
|
462
|
+
- @akinon/pz-gpay@1.48.0-rc.3
|
|
463
|
+
- @akinon/pz-b2b@1.48.0-rc.3
|
|
464
|
+
- @akinon/pz-bkm@1.48.0-rc.3
|
|
465
|
+
- @akinon/pz-otp@1.48.0-rc.3
|
|
466
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.3
|
|
467
|
+
- @akinon/pz-credit-payment@1.48.0-rc.3
|
|
468
|
+
|
|
469
|
+
## 1.48.0-rc.2
|
|
470
|
+
|
|
471
|
+
### Minor Changes
|
|
472
|
+
|
|
473
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
474
|
+
|
|
475
|
+
### Patch Changes
|
|
476
|
+
|
|
477
|
+
- Updated dependencies [2e6104d]
|
|
478
|
+
- @akinon/next@1.48.0-rc.2
|
|
479
|
+
- @akinon/pz-akifast@1.48.0-rc.2
|
|
480
|
+
- @akinon/pz-b2b@1.48.0-rc.2
|
|
481
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.2
|
|
482
|
+
- @akinon/pz-bkm@1.48.0-rc.2
|
|
483
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.2
|
|
484
|
+
- @akinon/pz-click-collect@1.48.0-rc.2
|
|
485
|
+
- @akinon/pz-credit-payment@1.48.0-rc.2
|
|
486
|
+
- @akinon/pz-gpay@1.48.0-rc.2
|
|
487
|
+
- @akinon/pz-masterpass@1.48.0-rc.2
|
|
488
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.2
|
|
489
|
+
- @akinon/pz-otp@1.48.0-rc.2
|
|
490
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.2
|
|
491
|
+
|
|
492
|
+
## 1.48.0-rc.1
|
|
8
493
|
|
|
9
494
|
### Patch Changes
|
|
10
495
|
|
|
11
|
-
-
|
|
12
|
-
- @akinon/
|
|
13
|
-
- @akinon/pz-
|
|
14
|
-
- @akinon/pz-
|
|
15
|
-
- @akinon/pz-
|
|
16
|
-
- @akinon/pz-
|
|
17
|
-
- @akinon/pz-
|
|
18
|
-
- @akinon/pz-
|
|
19
|
-
- @akinon/pz-
|
|
20
|
-
- @akinon/pz-
|
|
21
|
-
- @akinon/pz-
|
|
22
|
-
- @akinon/pz-
|
|
23
|
-
- @akinon/pz-
|
|
496
|
+
- Updated dependencies [fdd0b41]
|
|
497
|
+
- @akinon/next@1.48.0-rc.1
|
|
498
|
+
- @akinon/pz-akifast@1.48.0-rc.1
|
|
499
|
+
- @akinon/pz-b2b@1.48.0-rc.1
|
|
500
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.1
|
|
501
|
+
- @akinon/pz-bkm@1.48.0-rc.1
|
|
502
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.1
|
|
503
|
+
- @akinon/pz-click-collect@1.48.0-rc.1
|
|
504
|
+
- @akinon/pz-credit-payment@1.48.0-rc.1
|
|
505
|
+
- @akinon/pz-gpay@1.48.0-rc.1
|
|
506
|
+
- @akinon/pz-masterpass@1.48.0-rc.1
|
|
507
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.1
|
|
508
|
+
- @akinon/pz-otp@1.48.0-rc.1
|
|
509
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.1
|
|
510
|
+
|
|
511
|
+
## 1.48.0-rc.0
|
|
512
|
+
|
|
513
|
+
### Minor Changes
|
|
514
|
+
|
|
515
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
516
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
517
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
518
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
519
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
520
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
521
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
522
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
523
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
524
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
525
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
526
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
527
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
528
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
529
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
530
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
531
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
532
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
533
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
534
|
+
- 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
|
|
535
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
536
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
537
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
538
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
539
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
540
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
541
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
542
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
543
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
544
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
545
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
546
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
547
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
548
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
549
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
550
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
551
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
552
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
553
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
554
|
+
|
|
555
|
+
### Patch Changes
|
|
556
|
+
|
|
557
|
+
- Updated dependencies [90282b5]
|
|
558
|
+
- Updated dependencies [50b9069]
|
|
559
|
+
- Updated dependencies [572d2e8]
|
|
560
|
+
- Updated dependencies [a4c8d6a9]
|
|
561
|
+
- Updated dependencies [fda5b92]
|
|
562
|
+
- Updated dependencies [2d9b2b2]
|
|
563
|
+
- Updated dependencies [c53ea3e6]
|
|
564
|
+
- Updated dependencies [d93a507]
|
|
565
|
+
- Updated dependencies [8d9ac9a]
|
|
566
|
+
- Updated dependencies [18e8197]
|
|
567
|
+
- Updated dependencies [714e0b4]
|
|
568
|
+
- Updated dependencies [70279e7]
|
|
569
|
+
- Updated dependencies [6c25f66]
|
|
570
|
+
- Updated dependencies [bc2b411]
|
|
571
|
+
- Updated dependencies [3bf2dd9]
|
|
572
|
+
- Updated dependencies [e9541a1]
|
|
573
|
+
- Updated dependencies [c53ef7b9]
|
|
574
|
+
- Updated dependencies [9d94f7e]
|
|
575
|
+
- Updated dependencies [64699d3]
|
|
576
|
+
- Updated dependencies [0d3a913]
|
|
577
|
+
- Updated dependencies [1448a96e]
|
|
578
|
+
- Updated dependencies [1ec2e9d]
|
|
579
|
+
- Updated dependencies [d6edb1d]
|
|
580
|
+
- Updated dependencies [d3474c6]
|
|
581
|
+
- Updated dependencies [75080fd6]
|
|
582
|
+
- Updated dependencies [17f8752]
|
|
583
|
+
- Updated dependencies [c45b62c]
|
|
584
|
+
- Updated dependencies [91265bba]
|
|
585
|
+
- Updated dependencies [bbe18b9f]
|
|
586
|
+
- Updated dependencies [d409996]
|
|
587
|
+
- Updated dependencies [4920742]
|
|
588
|
+
- Updated dependencies [12a873e]
|
|
589
|
+
- Updated dependencies [69ca080]
|
|
590
|
+
- Updated dependencies [7e56d6b]
|
|
591
|
+
- Updated dependencies [94b6928]
|
|
592
|
+
- Updated dependencies [98bb8dc]
|
|
593
|
+
- Updated dependencies [46b7aad]
|
|
594
|
+
- Updated dependencies [dcc8a15]
|
|
595
|
+
- Updated dependencies [8f47cca]
|
|
596
|
+
- Updated dependencies [fad2768]
|
|
597
|
+
- Updated dependencies [dff0d595]
|
|
598
|
+
- Updated dependencies [eecb282]
|
|
599
|
+
- Updated dependencies [f2c325c]
|
|
600
|
+
- Updated dependencies [9e25a64]
|
|
601
|
+
- Updated dependencies [beb499e6]
|
|
602
|
+
- Updated dependencies [146ea39]
|
|
603
|
+
- Updated dependencies [f2c92d5]
|
|
604
|
+
- Updated dependencies [7bd3d99]
|
|
605
|
+
- Updated dependencies [c47be30]
|
|
606
|
+
- Updated dependencies [e9a46ac]
|
|
607
|
+
- Updated dependencies [f046f8e0]
|
|
608
|
+
- Updated dependencies [b9273fd]
|
|
609
|
+
- Updated dependencies [86d2531]
|
|
610
|
+
- Updated dependencies [c670bd4]
|
|
611
|
+
- Updated dependencies [3f9b8d7]
|
|
612
|
+
- @akinon/next@1.48.0-rc.0
|
|
613
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.0
|
|
614
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.0
|
|
615
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.0
|
|
616
|
+
- @akinon/pz-click-collect@1.48.0-rc.0
|
|
617
|
+
- @akinon/pz-masterpass@1.48.0-rc.0
|
|
618
|
+
- @akinon/pz-akifast@1.48.0-rc.0
|
|
619
|
+
- @akinon/pz-gpay@1.48.0-rc.0
|
|
620
|
+
- @akinon/pz-b2b@1.48.0-rc.0
|
|
621
|
+
- @akinon/pz-bkm@1.48.0-rc.0
|
|
622
|
+
- @akinon/pz-otp@1.48.0-rc.0
|
|
623
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.0
|
|
624
|
+
- @akinon/pz-credit-payment@1.48.0-rc.0
|
|
24
625
|
|
|
25
626
|
## 1.47.0
|
|
26
627
|
|
|
@@ -68,20 +669,255 @@
|
|
|
68
669
|
|
|
69
670
|
### Patch Changes
|
|
70
671
|
|
|
672
|
+
- Updated dependencies [90282b5]
|
|
673
|
+
- Updated dependencies [50b9069]
|
|
674
|
+
- Updated dependencies [572d2e8]
|
|
675
|
+
- Updated dependencies [a4c8d6a9]
|
|
676
|
+
- Updated dependencies [fda5b92]
|
|
677
|
+
- Updated dependencies [2d9b2b2]
|
|
678
|
+
- Updated dependencies [c53ea3e]
|
|
679
|
+
- Updated dependencies [8d9ac9a]
|
|
680
|
+
- Updated dependencies [18e8197]
|
|
681
|
+
- Updated dependencies [714e0b4]
|
|
682
|
+
- Updated dependencies [70279e7]
|
|
683
|
+
- Updated dependencies [6c25f66]
|
|
684
|
+
- Updated dependencies [bc2b411]
|
|
685
|
+
- Updated dependencies [3bf2dd9]
|
|
686
|
+
- Updated dependencies [e9541a1]
|
|
687
|
+
- Updated dependencies [c53ef7b9]
|
|
688
|
+
- Updated dependencies [9d94f7e]
|
|
689
|
+
- Updated dependencies [64699d3]
|
|
690
|
+
- Updated dependencies [0d3a913]
|
|
691
|
+
- Updated dependencies [1448a96e]
|
|
692
|
+
- Updated dependencies [d6edb1d]
|
|
693
|
+
- Updated dependencies [d3474c6]
|
|
694
|
+
- Updated dependencies [75080fd6]
|
|
695
|
+
- Updated dependencies [17f8752]
|
|
696
|
+
- Updated dependencies [c45b62c]
|
|
697
|
+
- Updated dependencies [91265bba]
|
|
698
|
+
- Updated dependencies [bbe18b9f]
|
|
699
|
+
- Updated dependencies [d409996]
|
|
700
|
+
- Updated dependencies [4920742]
|
|
701
|
+
- Updated dependencies [69ca080]
|
|
702
|
+
- Updated dependencies [7e56d6b]
|
|
703
|
+
- Updated dependencies [94b6928]
|
|
704
|
+
- Updated dependencies [98bb8dc]
|
|
705
|
+
- Updated dependencies [46b7aad]
|
|
706
|
+
- Updated dependencies [dcc8a15]
|
|
707
|
+
- Updated dependencies [8f47cca]
|
|
708
|
+
- Updated dependencies [fad2768]
|
|
709
|
+
- Updated dependencies [dff0d595]
|
|
710
|
+
- Updated dependencies [eecb282]
|
|
711
|
+
- Updated dependencies [f2c325c]
|
|
712
|
+
- Updated dependencies [9e25a64]
|
|
713
|
+
- Updated dependencies [beb499e6]
|
|
714
|
+
- Updated dependencies [948eb42]
|
|
715
|
+
- Updated dependencies [146ea39]
|
|
716
|
+
- Updated dependencies [f2c92d5]
|
|
717
|
+
- Updated dependencies [7bd3d99]
|
|
718
|
+
- Updated dependencies [c47be30]
|
|
719
|
+
- Updated dependencies [e9a46ac]
|
|
720
|
+
- Updated dependencies [f046f8e0]
|
|
721
|
+
- Updated dependencies [86d2531]
|
|
722
|
+
- Updated dependencies [3f9b8d7]
|
|
723
|
+
- @akinon/next@1.45.0-rc.5
|
|
724
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.5
|
|
725
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.5
|
|
726
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.5
|
|
727
|
+
- @akinon/pz-click-collect@1.45.0-rc.5
|
|
728
|
+
- @akinon/pz-masterpass@1.45.0-rc.5
|
|
729
|
+
- @akinon/pz-akifast@1.45.0-rc.5
|
|
730
|
+
- @akinon/pz-gpay@1.45.0-rc.5
|
|
731
|
+
- @akinon/pz-b2b@1.45.0-rc.5
|
|
732
|
+
- @akinon/pz-bkm@1.45.0-rc.5
|
|
733
|
+
- @akinon/pz-otp@1.45.0-rc.5
|
|
734
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.5
|
|
735
|
+
- @akinon/pz-credit-payment@1.45.0-rc.5
|
|
736
|
+
|
|
737
|
+
## 1.45.0-rc.4
|
|
738
|
+
|
|
739
|
+
### Patch Changes
|
|
740
|
+
|
|
741
|
+
- Updated dependencies [8f47cca]
|
|
742
|
+
- @akinon/next@1.45.0-rc.4
|
|
743
|
+
- @akinon/pz-akifast@1.45.0-rc.4
|
|
744
|
+
- @akinon/pz-b2b@1.45.0-rc.4
|
|
745
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.4
|
|
746
|
+
- @akinon/pz-bkm@1.45.0-rc.4
|
|
747
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.4
|
|
748
|
+
- @akinon/pz-click-collect@1.45.0-rc.4
|
|
749
|
+
- @akinon/pz-credit-payment@1.45.0-rc.4
|
|
750
|
+
- @akinon/pz-gpay@1.45.0-rc.4
|
|
751
|
+
- @akinon/pz-masterpass@1.45.0-rc.4
|
|
752
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.4
|
|
753
|
+
- @akinon/pz-otp@1.45.0-rc.4
|
|
754
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.4
|
|
755
|
+
|
|
756
|
+
## 1.45.0-rc.3
|
|
757
|
+
|
|
758
|
+
### Patch Changes
|
|
759
|
+
|
|
760
|
+
- Updated dependencies [948eb42]
|
|
761
|
+
- @akinon/next@1.45.0-rc.3
|
|
762
|
+
- @akinon/pz-akifast@1.45.0-rc.3
|
|
763
|
+
- @akinon/pz-b2b@1.45.0-rc.3
|
|
764
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.3
|
|
765
|
+
- @akinon/pz-bkm@1.45.0-rc.3
|
|
766
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.3
|
|
767
|
+
- @akinon/pz-click-collect@1.45.0-rc.3
|
|
768
|
+
- @akinon/pz-credit-payment@1.45.0-rc.3
|
|
769
|
+
- @akinon/pz-gpay@1.45.0-rc.3
|
|
770
|
+
- @akinon/pz-masterpass@1.45.0-rc.3
|
|
771
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.3
|
|
772
|
+
- @akinon/pz-otp@1.45.0-rc.3
|
|
773
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.3
|
|
774
|
+
|
|
775
|
+
## 1.45.0-rc.2
|
|
776
|
+
|
|
777
|
+
### Minor Changes
|
|
778
|
+
|
|
779
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
780
|
+
|
|
781
|
+
### Patch Changes
|
|
782
|
+
|
|
783
|
+
- Updated dependencies [c45b62c]
|
|
784
|
+
- Updated dependencies [f2c325c]
|
|
785
|
+
- @akinon/next@1.45.0-rc.2
|
|
786
|
+
- @akinon/pz-b2b@1.45.0-rc.2
|
|
787
|
+
- @akinon/pz-akifast@1.45.0-rc.2
|
|
788
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.2
|
|
789
|
+
- @akinon/pz-bkm@1.45.0-rc.2
|
|
790
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.2
|
|
791
|
+
- @akinon/pz-click-collect@1.45.0-rc.2
|
|
792
|
+
- @akinon/pz-credit-payment@1.45.0-rc.2
|
|
793
|
+
- @akinon/pz-gpay@1.45.0-rc.2
|
|
794
|
+
- @akinon/pz-masterpass@1.45.0-rc.2
|
|
795
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.2
|
|
796
|
+
- @akinon/pz-otp@1.45.0-rc.2
|
|
797
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.2
|
|
798
|
+
|
|
799
|
+
## 1.45.0-rc.1
|
|
800
|
+
|
|
801
|
+
### Patch Changes
|
|
802
|
+
|
|
803
|
+
- Updated dependencies [7e56d6b]
|
|
804
|
+
- @akinon/next@1.45.0-rc.1
|
|
805
|
+
- @akinon/pz-akifast@1.45.0-rc.1
|
|
806
|
+
- @akinon/pz-b2b@1.45.0-rc.1
|
|
807
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.1
|
|
808
|
+
- @akinon/pz-bkm@1.45.0-rc.1
|
|
809
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.1
|
|
810
|
+
- @akinon/pz-click-collect@1.45.0-rc.1
|
|
811
|
+
- @akinon/pz-credit-payment@1.45.0-rc.1
|
|
812
|
+
- @akinon/pz-gpay@1.45.0-rc.1
|
|
813
|
+
- @akinon/pz-masterpass@1.45.0-rc.1
|
|
814
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.1
|
|
815
|
+
- @akinon/pz-otp@1.45.0-rc.1
|
|
816
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.1
|
|
817
|
+
|
|
818
|
+
## 1.45.0-rc.0
|
|
819
|
+
|
|
820
|
+
### Minor Changes
|
|
821
|
+
|
|
822
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
823
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
824
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
825
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
826
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
827
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
828
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
829
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
830
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
831
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
832
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
833
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
834
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
835
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
836
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
837
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
838
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
839
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
840
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
841
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
842
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
843
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
844
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
845
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
846
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
847
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
848
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
849
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
850
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
851
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
852
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
853
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
854
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
855
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
856
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
857
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
858
|
+
|
|
859
|
+
### Patch Changes
|
|
860
|
+
|
|
861
|
+
- Updated dependencies [90282b5]
|
|
862
|
+
- Updated dependencies [50b9069]
|
|
863
|
+
- Updated dependencies [572d2e8]
|
|
864
|
+
- Updated dependencies [a4c8d6a9]
|
|
865
|
+
- Updated dependencies [fda5b92]
|
|
866
|
+
- Updated dependencies [2d9b2b2]
|
|
867
|
+
- Updated dependencies [c53ea3e]
|
|
868
|
+
- Updated dependencies [8d9ac9a]
|
|
869
|
+
- Updated dependencies [18e8197]
|
|
870
|
+
- Updated dependencies [714e0b4]
|
|
871
|
+
- Updated dependencies [70279e7]
|
|
872
|
+
- Updated dependencies [6c25f66]
|
|
873
|
+
- Updated dependencies [bc2b411]
|
|
874
|
+
- Updated dependencies [3bf2dd9]
|
|
875
|
+
- Updated dependencies [e9541a1]
|
|
876
|
+
- Updated dependencies [c53ef7b9]
|
|
877
|
+
- Updated dependencies [9d94f7e]
|
|
878
|
+
- Updated dependencies [64699d3]
|
|
879
|
+
- Updated dependencies [0d3a913]
|
|
880
|
+
- Updated dependencies [1448a96]
|
|
71
881
|
- Updated dependencies [2ab6e08]
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
882
|
+
- Updated dependencies [d6edb1d]
|
|
883
|
+
- Updated dependencies [d3474c6]
|
|
884
|
+
- Updated dependencies [75080fd]
|
|
885
|
+
- Updated dependencies [17f8752]
|
|
886
|
+
- Updated dependencies [91265bb]
|
|
887
|
+
- Updated dependencies [bbe18b9]
|
|
888
|
+
- Updated dependencies [d409996]
|
|
889
|
+
- Updated dependencies [4920742]
|
|
890
|
+
- Updated dependencies [69ca080]
|
|
891
|
+
- Updated dependencies [94b6928]
|
|
892
|
+
- Updated dependencies [98bb8dc]
|
|
893
|
+
- Updated dependencies [46b7aad]
|
|
894
|
+
- Updated dependencies [dcc8a15]
|
|
895
|
+
- Updated dependencies [fad2768]
|
|
896
|
+
- Updated dependencies [dff0d59]
|
|
897
|
+
- Updated dependencies [eecb282]
|
|
898
|
+
- Updated dependencies [9e25a64]
|
|
899
|
+
- Updated dependencies [beb499e]
|
|
900
|
+
- Updated dependencies [146ea39]
|
|
901
|
+
- Updated dependencies [f2c92d5]
|
|
902
|
+
- Updated dependencies [7bd3d99]
|
|
903
|
+
- Updated dependencies [c47be30]
|
|
904
|
+
- Updated dependencies [e9a46ac]
|
|
905
|
+
- Updated dependencies [f046f8e0]
|
|
906
|
+
- Updated dependencies [86d2531]
|
|
907
|
+
- Updated dependencies [3f9b8d7]
|
|
908
|
+
- @akinon/next@1.45.0-rc.0
|
|
909
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.0
|
|
910
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.0
|
|
911
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.0
|
|
912
|
+
- @akinon/pz-click-collect@1.45.0-rc.0
|
|
913
|
+
- @akinon/pz-masterpass@1.45.0-rc.0
|
|
914
|
+
- @akinon/pz-akifast@1.45.0-rc.0
|
|
915
|
+
- @akinon/pz-gpay@1.45.0-rc.0
|
|
916
|
+
- @akinon/pz-b2b@1.45.0-rc.0
|
|
917
|
+
- @akinon/pz-bkm@1.45.0-rc.0
|
|
918
|
+
- @akinon/pz-otp@1.45.0-rc.0
|
|
919
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.0
|
|
920
|
+
- @akinon/pz-credit-payment@1.45.0-rc.0
|
|
85
921
|
|
|
86
922
|
## 1.44.0
|
|
87
923
|
|
|
@@ -105,24 +941,565 @@
|
|
|
105
941
|
|
|
106
942
|
### Minor Changes
|
|
107
943
|
|
|
944
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
945
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
946
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
947
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
948
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
949
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
950
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
951
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
952
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
953
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
954
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
955
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
956
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
957
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
958
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
959
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
960
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
961
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
962
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
963
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
964
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
965
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
966
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
967
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
968
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
969
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
970
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
971
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
972
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
973
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
974
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
975
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
976
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
977
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
978
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
979
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
980
|
+
|
|
981
|
+
### Patch Changes
|
|
982
|
+
|
|
983
|
+
- Updated dependencies [90282b5]
|
|
984
|
+
- Updated dependencies [50b9069]
|
|
985
|
+
- Updated dependencies [572d2e8]
|
|
986
|
+
- Updated dependencies [a4c8d6a9]
|
|
987
|
+
- Updated dependencies [fda5b92]
|
|
988
|
+
- Updated dependencies [2d9b2b2]
|
|
989
|
+
- Updated dependencies [c53ea3e]
|
|
990
|
+
- Updated dependencies [8d9ac9a]
|
|
991
|
+
- Updated dependencies [18e8197]
|
|
992
|
+
- Updated dependencies [714e0b4]
|
|
993
|
+
- Updated dependencies [70279e7]
|
|
994
|
+
- Updated dependencies [6c25f66]
|
|
995
|
+
- Updated dependencies [bc2b411]
|
|
996
|
+
- Updated dependencies [3bf2dd9]
|
|
997
|
+
- Updated dependencies [e9541a1]
|
|
998
|
+
- Updated dependencies [c53ef7b9]
|
|
999
|
+
- Updated dependencies [9d94f7e]
|
|
1000
|
+
- Updated dependencies [64699d3]
|
|
1001
|
+
- Updated dependencies [0d3a913]
|
|
1002
|
+
- Updated dependencies [1448a96]
|
|
1003
|
+
- Updated dependencies [d6edb1d]
|
|
1004
|
+
- Updated dependencies [d3474c6]
|
|
1005
|
+
- Updated dependencies [75080fd]
|
|
1006
|
+
- Updated dependencies [17f8752]
|
|
1007
|
+
- Updated dependencies [91265bb]
|
|
1008
|
+
- Updated dependencies [bbe18b9]
|
|
1009
|
+
- Updated dependencies [d409996]
|
|
1010
|
+
- Updated dependencies [4920742]
|
|
1011
|
+
- Updated dependencies [69ca080]
|
|
1012
|
+
- Updated dependencies [94b6928]
|
|
1013
|
+
- Updated dependencies [98bb8dc]
|
|
1014
|
+
- Updated dependencies [46b7aad]
|
|
1015
|
+
- Updated dependencies [dcc8a15]
|
|
1016
|
+
- Updated dependencies [fad2768]
|
|
1017
|
+
- Updated dependencies [dff0d59]
|
|
1018
|
+
- Updated dependencies [eecb282]
|
|
1019
|
+
- Updated dependencies [9e25a64]
|
|
1020
|
+
- Updated dependencies [beb499e]
|
|
1021
|
+
- Updated dependencies [146ea39]
|
|
1022
|
+
- Updated dependencies [f2c92d5]
|
|
1023
|
+
- Updated dependencies [7bd3d99]
|
|
1024
|
+
- Updated dependencies [c47be30]
|
|
1025
|
+
- Updated dependencies [e9a46ac]
|
|
1026
|
+
- Updated dependencies [f046f8e0]
|
|
1027
|
+
- Updated dependencies [86d2531]
|
|
1028
|
+
- Updated dependencies [3f9b8d7]
|
|
1029
|
+
- @akinon/next@1.43.0-rc.16
|
|
1030
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.16
|
|
1031
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.16
|
|
1032
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.16
|
|
1033
|
+
- @akinon/pz-click-collect@1.43.0-rc.16
|
|
1034
|
+
- @akinon/pz-masterpass@1.43.0-rc.16
|
|
1035
|
+
- @akinon/pz-akifast@1.43.0-rc.16
|
|
1036
|
+
- @akinon/pz-gpay@1.43.0-rc.16
|
|
1037
|
+
- @akinon/pz-b2b@1.43.0-rc.16
|
|
1038
|
+
- @akinon/pz-bkm@1.43.0-rc.16
|
|
1039
|
+
- @akinon/pz-otp@1.43.0-rc.16
|
|
1040
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.16
|
|
1041
|
+
- @akinon/pz-credit-payment@1.43.0-rc.16
|
|
1042
|
+
|
|
1043
|
+
## 1.43.0-rc.15
|
|
1044
|
+
|
|
1045
|
+
### Patch Changes
|
|
1046
|
+
|
|
1047
|
+
- @akinon/next@1.43.0-rc.15
|
|
1048
|
+
- @akinon/pz-akifast@1.43.0-rc.15
|
|
1049
|
+
- @akinon/pz-b2b@1.43.0-rc.15
|
|
1050
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.15
|
|
1051
|
+
- @akinon/pz-bkm@1.43.0-rc.15
|
|
1052
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.15
|
|
1053
|
+
- @akinon/pz-click-collect@1.43.0-rc.15
|
|
1054
|
+
- @akinon/pz-credit-payment@1.43.0-rc.15
|
|
1055
|
+
- @akinon/pz-gpay@1.43.0-rc.15
|
|
1056
|
+
- @akinon/pz-masterpass@1.43.0-rc.15
|
|
1057
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.15
|
|
1058
|
+
- @akinon/pz-otp@1.43.0-rc.15
|
|
1059
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.15
|
|
1060
|
+
|
|
1061
|
+
## 1.43.0-rc.14
|
|
1062
|
+
|
|
1063
|
+
### Patch Changes
|
|
1064
|
+
|
|
1065
|
+
- Updated dependencies [3bf2dd9]
|
|
1066
|
+
- @akinon/next@1.43.0-rc.14
|
|
1067
|
+
- @akinon/pz-akifast@1.43.0-rc.14
|
|
1068
|
+
- @akinon/pz-b2b@1.43.0-rc.14
|
|
1069
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.14
|
|
1070
|
+
- @akinon/pz-bkm@1.43.0-rc.14
|
|
1071
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.14
|
|
1072
|
+
- @akinon/pz-click-collect@1.43.0-rc.14
|
|
1073
|
+
- @akinon/pz-credit-payment@1.43.0-rc.14
|
|
1074
|
+
- @akinon/pz-gpay@1.43.0-rc.14
|
|
1075
|
+
- @akinon/pz-masterpass@1.43.0-rc.14
|
|
1076
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.14
|
|
1077
|
+
- @akinon/pz-otp@1.43.0-rc.14
|
|
1078
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.14
|
|
1079
|
+
|
|
1080
|
+
## 1.43.0-rc.13
|
|
1081
|
+
|
|
1082
|
+
### Minor Changes
|
|
1083
|
+
|
|
1084
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1085
|
+
|
|
1086
|
+
### Patch Changes
|
|
1087
|
+
|
|
1088
|
+
- Updated dependencies [9e25a64]
|
|
1089
|
+
- @akinon/next@1.43.0-rc.13
|
|
1090
|
+
- @akinon/pz-akifast@1.43.0-rc.13
|
|
1091
|
+
- @akinon/pz-b2b@1.43.0-rc.13
|
|
1092
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.13
|
|
1093
|
+
- @akinon/pz-bkm@1.43.0-rc.13
|
|
1094
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.13
|
|
1095
|
+
- @akinon/pz-click-collect@1.43.0-rc.13
|
|
1096
|
+
- @akinon/pz-credit-payment@1.43.0-rc.13
|
|
1097
|
+
- @akinon/pz-gpay@1.43.0-rc.13
|
|
1098
|
+
- @akinon/pz-masterpass@1.43.0-rc.13
|
|
1099
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.13
|
|
1100
|
+
- @akinon/pz-otp@1.43.0-rc.13
|
|
1101
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.13
|
|
1102
|
+
|
|
1103
|
+
## 1.43.0-rc.12
|
|
1104
|
+
|
|
1105
|
+
### Patch Changes
|
|
1106
|
+
|
|
1107
|
+
- Updated dependencies [4920742]
|
|
1108
|
+
- @akinon/next@1.43.0-rc.12
|
|
1109
|
+
- @akinon/pz-akifast@1.43.0-rc.12
|
|
1110
|
+
- @akinon/pz-b2b@1.43.0-rc.12
|
|
1111
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.12
|
|
1112
|
+
- @akinon/pz-bkm@1.43.0-rc.12
|
|
1113
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.12
|
|
1114
|
+
- @akinon/pz-click-collect@1.43.0-rc.12
|
|
1115
|
+
- @akinon/pz-credit-payment@1.43.0-rc.12
|
|
1116
|
+
- @akinon/pz-gpay@1.43.0-rc.12
|
|
1117
|
+
- @akinon/pz-masterpass@1.43.0-rc.12
|
|
1118
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.12
|
|
1119
|
+
- @akinon/pz-otp@1.43.0-rc.12
|
|
1120
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.12
|
|
1121
|
+
|
|
1122
|
+
## 1.43.0-rc.11
|
|
1123
|
+
|
|
1124
|
+
### Patch Changes
|
|
1125
|
+
|
|
1126
|
+
- Updated dependencies [6c25f66]
|
|
1127
|
+
- @akinon/next@1.43.0-rc.11
|
|
1128
|
+
- @akinon/pz-akifast@1.43.0-rc.11
|
|
1129
|
+
- @akinon/pz-b2b@1.43.0-rc.11
|
|
1130
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.11
|
|
1131
|
+
- @akinon/pz-bkm@1.43.0-rc.11
|
|
1132
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.11
|
|
1133
|
+
- @akinon/pz-click-collect@1.43.0-rc.11
|
|
1134
|
+
- @akinon/pz-credit-payment@1.43.0-rc.11
|
|
1135
|
+
- @akinon/pz-gpay@1.43.0-rc.11
|
|
1136
|
+
- @akinon/pz-masterpass@1.43.0-rc.11
|
|
1137
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.11
|
|
1138
|
+
- @akinon/pz-otp@1.43.0-rc.11
|
|
1139
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.11
|
|
1140
|
+
|
|
1141
|
+
## 1.43.0-rc.10
|
|
1142
|
+
|
|
1143
|
+
### Patch Changes
|
|
1144
|
+
|
|
1145
|
+
- Updated dependencies [d6edb1d]
|
|
1146
|
+
- @akinon/next@1.43.0-rc.10
|
|
1147
|
+
- @akinon/pz-akifast@1.43.0-rc.10
|
|
1148
|
+
- @akinon/pz-b2b@1.43.0-rc.10
|
|
1149
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.10
|
|
1150
|
+
- @akinon/pz-bkm@1.43.0-rc.10
|
|
1151
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.10
|
|
1152
|
+
- @akinon/pz-click-collect@1.43.0-rc.10
|
|
1153
|
+
- @akinon/pz-credit-payment@1.43.0-rc.10
|
|
1154
|
+
- @akinon/pz-gpay@1.43.0-rc.10
|
|
1155
|
+
- @akinon/pz-masterpass@1.43.0-rc.10
|
|
1156
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.10
|
|
1157
|
+
- @akinon/pz-otp@1.43.0-rc.10
|
|
1158
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.10
|
|
1159
|
+
|
|
1160
|
+
## 1.43.0-rc.9
|
|
1161
|
+
|
|
1162
|
+
### Minor Changes
|
|
1163
|
+
|
|
1164
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1165
|
+
|
|
1166
|
+
### Patch Changes
|
|
1167
|
+
|
|
1168
|
+
- Updated dependencies [bc2b411]
|
|
1169
|
+
- @akinon/next@1.43.0-rc.9
|
|
1170
|
+
- @akinon/pz-akifast@1.43.0-rc.9
|
|
1171
|
+
- @akinon/pz-b2b@1.43.0-rc.9
|
|
1172
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.9
|
|
1173
|
+
- @akinon/pz-bkm@1.43.0-rc.9
|
|
1174
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.9
|
|
1175
|
+
- @akinon/pz-click-collect@1.43.0-rc.9
|
|
1176
|
+
- @akinon/pz-credit-payment@1.43.0-rc.9
|
|
1177
|
+
- @akinon/pz-gpay@1.43.0-rc.9
|
|
1178
|
+
- @akinon/pz-masterpass@1.43.0-rc.9
|
|
1179
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.9
|
|
1180
|
+
- @akinon/pz-otp@1.43.0-rc.9
|
|
1181
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.9
|
|
1182
|
+
|
|
1183
|
+
## 1.43.0-rc.8
|
|
1184
|
+
|
|
1185
|
+
### Patch Changes
|
|
1186
|
+
|
|
1187
|
+
- Updated dependencies [70279e7]
|
|
1188
|
+
- Updated dependencies [9d94f7e]
|
|
1189
|
+
- @akinon/next@1.43.0-rc.8
|
|
1190
|
+
- @akinon/pz-akifast@1.43.0-rc.8
|
|
1191
|
+
- @akinon/pz-b2b@1.43.0-rc.8
|
|
1192
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.8
|
|
1193
|
+
- @akinon/pz-bkm@1.43.0-rc.8
|
|
1194
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.8
|
|
1195
|
+
- @akinon/pz-click-collect@1.43.0-rc.8
|
|
1196
|
+
- @akinon/pz-credit-payment@1.43.0-rc.8
|
|
1197
|
+
- @akinon/pz-gpay@1.43.0-rc.8
|
|
1198
|
+
- @akinon/pz-masterpass@1.43.0-rc.8
|
|
1199
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.8
|
|
1200
|
+
- @akinon/pz-otp@1.43.0-rc.8
|
|
1201
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.8
|
|
1202
|
+
|
|
1203
|
+
## 1.43.0-rc.7
|
|
1204
|
+
|
|
1205
|
+
### Patch Changes
|
|
1206
|
+
|
|
1207
|
+
- Updated dependencies [7bd3d99]
|
|
1208
|
+
- @akinon/next@1.43.0-rc.7
|
|
1209
|
+
- @akinon/pz-akifast@1.43.0-rc.7
|
|
1210
|
+
- @akinon/pz-b2b@1.43.0-rc.7
|
|
1211
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.7
|
|
1212
|
+
- @akinon/pz-bkm@1.43.0-rc.7
|
|
1213
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.7
|
|
1214
|
+
- @akinon/pz-click-collect@1.43.0-rc.7
|
|
1215
|
+
- @akinon/pz-credit-payment@1.43.0-rc.7
|
|
1216
|
+
- @akinon/pz-gpay@1.43.0-rc.7
|
|
1217
|
+
- @akinon/pz-masterpass@1.43.0-rc.7
|
|
1218
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.7
|
|
1219
|
+
- @akinon/pz-otp@1.43.0-rc.7
|
|
1220
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.7
|
|
1221
|
+
|
|
1222
|
+
## 1.43.0-rc.6
|
|
1223
|
+
|
|
1224
|
+
### Minor Changes
|
|
1225
|
+
|
|
1226
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1227
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1228
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1229
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
1230
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
1231
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
1232
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
1233
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
1234
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
1235
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
1236
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
1237
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
1238
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1239
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1240
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
1241
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
1242
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
1243
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
1244
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1245
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
1246
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1247
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
1248
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1249
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
1250
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
1251
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
1252
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1253
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
108
1254
|
- 4a163f2: ZERO-2761: Add condition for basket summary
|
|
1255
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1256
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
1257
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
1258
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1259
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
1260
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1261
|
+
|
|
1262
|
+
### Patch Changes
|
|
1263
|
+
|
|
1264
|
+
- Updated dependencies [90282b5]
|
|
1265
|
+
- Updated dependencies [50b9069]
|
|
1266
|
+
- Updated dependencies [572d2e8]
|
|
1267
|
+
- Updated dependencies [a4c8d6a]
|
|
1268
|
+
- Updated dependencies [fda5b92]
|
|
1269
|
+
- Updated dependencies [2d9b2b2]
|
|
1270
|
+
- Updated dependencies [c53ea3e]
|
|
1271
|
+
- Updated dependencies [8d9ac9a]
|
|
1272
|
+
- Updated dependencies [18e8197]
|
|
1273
|
+
- Updated dependencies [714e0b4]
|
|
1274
|
+
- Updated dependencies [e9541a1]
|
|
1275
|
+
- Updated dependencies [c53ef7b]
|
|
1276
|
+
- Updated dependencies [64699d3]
|
|
1277
|
+
- Updated dependencies [0d3a913]
|
|
1278
|
+
- Updated dependencies [1448a96]
|
|
1279
|
+
- Updated dependencies [d3474c6]
|
|
1280
|
+
- Updated dependencies [75080fd]
|
|
1281
|
+
- Updated dependencies [17f8752]
|
|
1282
|
+
- Updated dependencies [91265bb]
|
|
1283
|
+
- Updated dependencies [bbe18b9]
|
|
1284
|
+
- Updated dependencies [d409996]
|
|
1285
|
+
- Updated dependencies [69ca080]
|
|
1286
|
+
- Updated dependencies [94b6928]
|
|
1287
|
+
- Updated dependencies [98bb8dc]
|
|
1288
|
+
- Updated dependencies [46b7aad]
|
|
1289
|
+
- Updated dependencies [dcc8a15]
|
|
1290
|
+
- Updated dependencies [fad2768]
|
|
1291
|
+
- Updated dependencies [dff0d59]
|
|
1292
|
+
- Updated dependencies [eecb282]
|
|
1293
|
+
- Updated dependencies [4a163f2]
|
|
1294
|
+
- Updated dependencies [beb499e]
|
|
1295
|
+
- Updated dependencies [146ea39]
|
|
1296
|
+
- Updated dependencies [f2c92d5]
|
|
1297
|
+
- Updated dependencies [c47be30]
|
|
1298
|
+
- Updated dependencies [e9a46ac]
|
|
1299
|
+
- Updated dependencies [f046f8e]
|
|
1300
|
+
- Updated dependencies [86d2531]
|
|
1301
|
+
- Updated dependencies [3f9b8d7]
|
|
1302
|
+
- @akinon/next@1.43.0-rc.6
|
|
1303
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.6
|
|
1304
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.6
|
|
1305
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.6
|
|
1306
|
+
- @akinon/pz-click-collect@1.43.0-rc.6
|
|
1307
|
+
- @akinon/pz-masterpass@1.43.0-rc.6
|
|
1308
|
+
- @akinon/pz-akifast@1.43.0-rc.6
|
|
1309
|
+
- @akinon/pz-gpay@1.43.0-rc.6
|
|
1310
|
+
- @akinon/pz-b2b@1.43.0-rc.6
|
|
1311
|
+
- @akinon/pz-bkm@1.43.0-rc.6
|
|
1312
|
+
- @akinon/pz-otp@1.43.0-rc.6
|
|
1313
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.6
|
|
1314
|
+
- @akinon/pz-credit-payment@1.43.0-rc.6
|
|
1315
|
+
|
|
1316
|
+
## 1.43.0-rc.5
|
|
1317
|
+
|
|
1318
|
+
### Patch Changes
|
|
1319
|
+
|
|
1320
|
+
- Updated dependencies [17f8752]
|
|
1321
|
+
- @akinon/next@1.43.0-rc.5
|
|
1322
|
+
- @akinon/pz-akifast@1.43.0-rc.5
|
|
1323
|
+
- @akinon/pz-b2b@1.43.0-rc.5
|
|
1324
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.5
|
|
1325
|
+
- @akinon/pz-bkm@1.43.0-rc.5
|
|
1326
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.5
|
|
1327
|
+
- @akinon/pz-click-collect@1.43.0-rc.5
|
|
1328
|
+
- @akinon/pz-credit-payment@1.43.0-rc.5
|
|
1329
|
+
- @akinon/pz-gpay@1.43.0-rc.5
|
|
1330
|
+
- @akinon/pz-masterpass@1.43.0-rc.5
|
|
1331
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.5
|
|
1332
|
+
- @akinon/pz-otp@1.43.0-rc.5
|
|
1333
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.5
|
|
1334
|
+
|
|
1335
|
+
## 1.43.0-rc.4
|
|
1336
|
+
|
|
1337
|
+
### Patch Changes
|
|
1338
|
+
|
|
1339
|
+
- Updated dependencies [3f9b8d7]
|
|
1340
|
+
- @akinon/next@1.43.0-rc.4
|
|
1341
|
+
- @akinon/pz-akifast@1.43.0-rc.4
|
|
1342
|
+
- @akinon/pz-b2b@1.43.0-rc.4
|
|
1343
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.4
|
|
1344
|
+
- @akinon/pz-bkm@1.43.0-rc.4
|
|
1345
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.4
|
|
1346
|
+
- @akinon/pz-click-collect@1.43.0-rc.4
|
|
1347
|
+
- @akinon/pz-credit-payment@1.43.0-rc.4
|
|
1348
|
+
- @akinon/pz-gpay@1.43.0-rc.4
|
|
1349
|
+
- @akinon/pz-masterpass@1.43.0-rc.4
|
|
1350
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.4
|
|
1351
|
+
- @akinon/pz-otp@1.43.0-rc.4
|
|
1352
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.4
|
|
1353
|
+
|
|
1354
|
+
## 1.43.0-rc.3
|
|
1355
|
+
|
|
1356
|
+
### Minor Changes
|
|
1357
|
+
|
|
1358
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
109
1359
|
|
|
110
1360
|
### Patch Changes
|
|
111
1361
|
|
|
112
|
-
- Updated dependencies [
|
|
113
|
-
- @akinon/
|
|
114
|
-
- @akinon/pz-
|
|
115
|
-
- @akinon/pz-
|
|
116
|
-
- @akinon/pz-
|
|
117
|
-
- @akinon/pz-
|
|
118
|
-
- @akinon/pz-
|
|
119
|
-
- @akinon/pz-
|
|
120
|
-
- @akinon/
|
|
121
|
-
- @akinon/pz-
|
|
122
|
-
- @akinon/pz-
|
|
123
|
-
- @akinon/pz-
|
|
124
|
-
- @akinon/pz-
|
|
125
|
-
- @akinon/pz-
|
|
1362
|
+
- Updated dependencies [64699d3]
|
|
1363
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.3
|
|
1364
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.3
|
|
1365
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.3
|
|
1366
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.3
|
|
1367
|
+
- @akinon/pz-credit-payment@1.43.0-rc.3
|
|
1368
|
+
- @akinon/pz-click-collect@1.43.0-rc.3
|
|
1369
|
+
- @akinon/pz-masterpass@1.43.0-rc.3
|
|
1370
|
+
- @akinon/next@1.43.0-rc.3
|
|
1371
|
+
- @akinon/pz-akifast@1.43.0-rc.3
|
|
1372
|
+
- @akinon/pz-gpay@1.43.0-rc.3
|
|
1373
|
+
- @akinon/pz-b2b@1.43.0-rc.3
|
|
1374
|
+
- @akinon/pz-bkm@1.43.0-rc.3
|
|
1375
|
+
- @akinon/pz-otp@1.43.0-rc.3
|
|
1376
|
+
|
|
1377
|
+
## 1.43.0-rc.2
|
|
1378
|
+
|
|
1379
|
+
### Patch Changes
|
|
1380
|
+
|
|
1381
|
+
- Updated dependencies [f2c92d5]
|
|
1382
|
+
- @akinon/next@1.43.0-rc.2
|
|
1383
|
+
- @akinon/pz-akifast@1.43.0-rc.2
|
|
1384
|
+
- @akinon/pz-b2b@1.43.0-rc.2
|
|
1385
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.2
|
|
1386
|
+
- @akinon/pz-bkm@1.43.0-rc.2
|
|
1387
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.2
|
|
1388
|
+
- @akinon/pz-click-collect@1.43.0-rc.2
|
|
1389
|
+
- @akinon/pz-credit-payment@1.43.0-rc.2
|
|
1390
|
+
- @akinon/pz-gpay@1.43.0-rc.2
|
|
1391
|
+
- @akinon/pz-masterpass@1.43.0-rc.2
|
|
1392
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.2
|
|
1393
|
+
- @akinon/pz-otp@1.43.0-rc.2
|
|
1394
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.2
|
|
1395
|
+
|
|
1396
|
+
## 1.43.0-rc.1
|
|
1397
|
+
|
|
1398
|
+
### Minor Changes
|
|
1399
|
+
|
|
1400
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1401
|
+
|
|
1402
|
+
### Patch Changes
|
|
1403
|
+
|
|
1404
|
+
- Updated dependencies [eecb282]
|
|
1405
|
+
- @akinon/next@1.43.0-rc.1
|
|
1406
|
+
- @akinon/pz-akifast@1.43.0-rc.1
|
|
1407
|
+
- @akinon/pz-b2b@1.43.0-rc.1
|
|
1408
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.1
|
|
1409
|
+
- @akinon/pz-bkm@1.43.0-rc.1
|
|
1410
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.1
|
|
1411
|
+
- @akinon/pz-click-collect@1.43.0-rc.1
|
|
1412
|
+
- @akinon/pz-credit-payment@1.43.0-rc.1
|
|
1413
|
+
- @akinon/pz-gpay@1.43.0-rc.1
|
|
1414
|
+
- @akinon/pz-masterpass@1.43.0-rc.1
|
|
1415
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.1
|
|
1416
|
+
- @akinon/pz-otp@1.43.0-rc.1
|
|
1417
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.1
|
|
1418
|
+
|
|
1419
|
+
## 1.43.0-rc.0
|
|
1420
|
+
|
|
1421
|
+
### Minor Changes
|
|
1422
|
+
|
|
1423
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1424
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1425
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1426
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
1427
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
1428
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
1429
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
1430
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
1431
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
1432
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
1433
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
1434
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
1435
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1436
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
1437
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
1438
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
1439
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
1440
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1441
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
1442
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1443
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
1444
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1445
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
1446
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
1447
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
1448
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1449
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1450
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
1451
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
1452
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1453
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
1454
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1455
|
+
|
|
1456
|
+
### Patch Changes
|
|
1457
|
+
|
|
1458
|
+
- Updated dependencies [90282b5]
|
|
1459
|
+
- Updated dependencies [50b9069]
|
|
1460
|
+
- Updated dependencies [572d2e8]
|
|
1461
|
+
- Updated dependencies [a4c8d6a]
|
|
1462
|
+
- Updated dependencies [fda5b92]
|
|
1463
|
+
- Updated dependencies [2d9b2b2]
|
|
1464
|
+
- Updated dependencies [c53ea3e]
|
|
1465
|
+
- Updated dependencies [8d9ac9a]
|
|
1466
|
+
- Updated dependencies [18e8197]
|
|
1467
|
+
- Updated dependencies [714e0b4]
|
|
1468
|
+
- Updated dependencies [e9541a1]
|
|
1469
|
+
- Updated dependencies [c53ef7b]
|
|
1470
|
+
- Updated dependencies [0d3a913]
|
|
1471
|
+
- Updated dependencies [1448a96]
|
|
1472
|
+
- Updated dependencies [d3474c6]
|
|
1473
|
+
- Updated dependencies [75080fd]
|
|
1474
|
+
- Updated dependencies [91265bb]
|
|
1475
|
+
- Updated dependencies [bbe18b9]
|
|
1476
|
+
- Updated dependencies [d409996]
|
|
1477
|
+
- Updated dependencies [69ca080]
|
|
1478
|
+
- Updated dependencies [94b6928]
|
|
1479
|
+
- Updated dependencies [98bb8dc]
|
|
1480
|
+
- Updated dependencies [46b7aad]
|
|
1481
|
+
- Updated dependencies [dcc8a15]
|
|
1482
|
+
- Updated dependencies [fad2768]
|
|
1483
|
+
- Updated dependencies [dff0d59]
|
|
1484
|
+
- Updated dependencies [beb499e]
|
|
1485
|
+
- Updated dependencies [146ea39]
|
|
1486
|
+
- Updated dependencies [c47be30]
|
|
1487
|
+
- Updated dependencies [e9a46ac]
|
|
1488
|
+
- Updated dependencies [f046f8e]
|
|
1489
|
+
- Updated dependencies [86d2531]
|
|
1490
|
+
- @akinon/next@1.43.0-rc.0
|
|
1491
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.0
|
|
1492
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.0
|
|
1493
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.0
|
|
1494
|
+
- @akinon/pz-click-collect@1.43.0-rc.0
|
|
1495
|
+
- @akinon/pz-masterpass@1.43.0-rc.0
|
|
1496
|
+
- @akinon/pz-akifast@1.43.0-rc.0
|
|
1497
|
+
- @akinon/pz-gpay@1.43.0-rc.0
|
|
1498
|
+
- @akinon/pz-b2b@1.43.0-rc.0
|
|
1499
|
+
- @akinon/pz-bkm@1.43.0-rc.0
|
|
1500
|
+
- @akinon/pz-otp@1.43.0-rc.0
|
|
1501
|
+
- @akinon/pz-credit-payment@1.43.0-rc.0
|
|
1502
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.0
|
|
126
1503
|
|
|
127
1504
|
## 1.42.0
|
|
128
1505
|
|
|
@@ -291,13 +1668,301 @@
|
|
|
291
1668
|
|
|
292
1669
|
### Patch Changes
|
|
293
1670
|
|
|
294
|
-
-
|
|
295
|
-
-
|
|
296
|
-
-
|
|
297
|
-
-
|
|
298
|
-
-
|
|
299
|
-
-
|
|
300
|
-
-
|
|
1671
|
+
- Updated dependencies [a4c8d6a]
|
|
1672
|
+
- Updated dependencies [d09b677]
|
|
1673
|
+
- Updated dependencies [6d4aadb]
|
|
1674
|
+
- Updated dependencies [8e6e8cf]
|
|
1675
|
+
- Updated dependencies [c53ef7b]
|
|
1676
|
+
- Updated dependencies [ebb63ce]
|
|
1677
|
+
- Updated dependencies [7cebe87]
|
|
1678
|
+
- Updated dependencies [616690d]
|
|
1679
|
+
- Updated dependencies [f3b595e]
|
|
1680
|
+
- Updated dependencies [91265bb]
|
|
1681
|
+
- Updated dependencies [59fb7c3]
|
|
1682
|
+
- Updated dependencies [bbe18b9]
|
|
1683
|
+
- Updated dependencies [f0c23bc]
|
|
1684
|
+
- Updated dependencies [3420416]
|
|
1685
|
+
- Updated dependencies [495d155]
|
|
1686
|
+
- Updated dependencies [beb499e]
|
|
1687
|
+
- Updated dependencies [6c18543]
|
|
1688
|
+
- Updated dependencies [40ad73e]
|
|
1689
|
+
- Updated dependencies [495d155]
|
|
1690
|
+
- Updated dependencies [f046f8e]
|
|
1691
|
+
- Updated dependencies [6b2972b]
|
|
1692
|
+
- Updated dependencies [3e68768]
|
|
1693
|
+
- @akinon/next@1.34.0-rc.20
|
|
1694
|
+
- @akinon/pz-masterpass@1.34.0-rc.20
|
|
1695
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.20
|
|
1696
|
+
- @akinon/pz-b2b@1.34.0-rc.20
|
|
1697
|
+
- @akinon/pz-gpay@1.34.0-rc.20
|
|
1698
|
+
- @akinon/pz-otp@1.34.0-rc.20
|
|
1699
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.20
|
|
1700
|
+
|
|
1701
|
+
## 1.34.0-rc.19
|
|
1702
|
+
|
|
1703
|
+
### Patch Changes
|
|
1704
|
+
|
|
1705
|
+
- Updated dependencies [c53ef7b]
|
|
1706
|
+
- @akinon/next@1.34.0-rc.19
|
|
1707
|
+
- @akinon/pz-b2b@1.34.0-rc.19
|
|
1708
|
+
- @akinon/pz-gpay@1.34.0-rc.19
|
|
1709
|
+
- @akinon/pz-masterpass@1.34.0-rc.19
|
|
1710
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.19
|
|
1711
|
+
- @akinon/pz-otp@1.34.0-rc.19
|
|
1712
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.19
|
|
1713
|
+
|
|
1714
|
+
## 1.34.0-rc.18
|
|
1715
|
+
|
|
1716
|
+
### Minor Changes
|
|
1717
|
+
|
|
1718
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
1719
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
1720
|
+
|
|
1721
|
+
### Patch Changes
|
|
1722
|
+
|
|
1723
|
+
- Updated dependencies [a4c8d6a]
|
|
1724
|
+
- @akinon/next@1.34.0-rc.18
|
|
1725
|
+
- @akinon/pz-b2b@1.34.0-rc.18
|
|
1726
|
+
- @akinon/pz-gpay@1.34.0-rc.18
|
|
1727
|
+
- @akinon/pz-masterpass@1.34.0-rc.18
|
|
1728
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.18
|
|
1729
|
+
- @akinon/pz-otp@1.34.0-rc.18
|
|
1730
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.18
|
|
1731
|
+
|
|
1732
|
+
## 1.34.0-rc.17
|
|
1733
|
+
|
|
1734
|
+
### Minor Changes
|
|
1735
|
+
|
|
1736
|
+
- 567e4c1: ZERO-2580:Add checked attribute from props to checkbox
|
|
1737
|
+
- d09b677: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
|
|
1738
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
1739
|
+
- ebb63ce: ZERO-2525: Fix category facet removal bug and add close icon to active filters
|
|
1740
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
1741
|
+
- 0d0f36c: ZERO-2598: Fix eslint warnings and update dependencies
|
|
1742
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1743
|
+
- f0c23bc: ZERO-2135: add custom not found page
|
|
1744
|
+
- 3420416: ZERO-2533: extend eslint config from @akinon/next
|
|
1745
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1746
|
+
- 6c18543: ZERO-2542:Refactor and show error in OneClickCheckoutButtons
|
|
1747
|
+
- 202f84e: ZERO-2569: Fix static keys
|
|
1748
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
1749
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
1750
|
+
- 12c10a4: ZERO-2570: Category filters routes to absolute url
|
|
1751
|
+
|
|
1752
|
+
### Patch Changes
|
|
1753
|
+
|
|
1754
|
+
- Updated dependencies [d09b677]
|
|
1755
|
+
- Updated dependencies [6d4aadb]
|
|
1756
|
+
- Updated dependencies [8e6e8cf]
|
|
1757
|
+
- Updated dependencies [ebb63ce]
|
|
1758
|
+
- Updated dependencies [7cebe87]
|
|
1759
|
+
- Updated dependencies [616690d]
|
|
1760
|
+
- Updated dependencies [f3b595e]
|
|
1761
|
+
- Updated dependencies [91265bb]
|
|
1762
|
+
- Updated dependencies [59fb7c3]
|
|
1763
|
+
- Updated dependencies [bbe18b9]
|
|
1764
|
+
- Updated dependencies [f0c23bc]
|
|
1765
|
+
- Updated dependencies [3420416]
|
|
1766
|
+
- Updated dependencies [495d155]
|
|
1767
|
+
- Updated dependencies [beb499e]
|
|
1768
|
+
- Updated dependencies [6c18543]
|
|
1769
|
+
- Updated dependencies [40ad73e]
|
|
1770
|
+
- Updated dependencies [495d155]
|
|
1771
|
+
- Updated dependencies [f046f8e]
|
|
1772
|
+
- Updated dependencies [6b2972b]
|
|
1773
|
+
- Updated dependencies [3e68768]
|
|
1774
|
+
- @akinon/next@1.34.0-rc.17
|
|
1775
|
+
- @akinon/pz-masterpass@1.34.0-rc.17
|
|
1776
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.17
|
|
1777
|
+
- @akinon/pz-b2b@1.34.0-rc.17
|
|
1778
|
+
- @akinon/pz-gpay@1.34.0-rc.17
|
|
1779
|
+
- @akinon/pz-otp@1.34.0-rc.17
|
|
1780
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.17
|
|
1781
|
+
|
|
1782
|
+
## 1.34.0-rc.16
|
|
1783
|
+
|
|
1784
|
+
### Patch Changes
|
|
1785
|
+
|
|
1786
|
+
- @akinon/next@1.34.0-rc.16
|
|
1787
|
+
- @akinon/pz-b2b@1.34.0-rc.16
|
|
1788
|
+
- @akinon/pz-gpay@1.34.0-rc.16
|
|
1789
|
+
- @akinon/pz-masterpass@1.34.0-rc.16
|
|
1790
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.16
|
|
1791
|
+
- @akinon/pz-otp@1.34.0-rc.16
|
|
1792
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.16
|
|
1793
|
+
|
|
1794
|
+
## 1.34.0-rc.15
|
|
1795
|
+
|
|
1796
|
+
### Patch Changes
|
|
1797
|
+
|
|
1798
|
+
- @akinon/next@1.34.0-rc.15
|
|
1799
|
+
- @akinon/pz-b2b@1.34.0-rc.15
|
|
1800
|
+
- @akinon/pz-gpay@1.34.0-rc.15
|
|
1801
|
+
- @akinon/pz-masterpass@1.34.0-rc.15
|
|
1802
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.15
|
|
1803
|
+
- @akinon/pz-otp@1.34.0-rc.15
|
|
1804
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.15
|
|
1805
|
+
|
|
1806
|
+
## 1.34.0-rc.14
|
|
1807
|
+
|
|
1808
|
+
### Minor Changes
|
|
1809
|
+
|
|
1810
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
1811
|
+
|
|
1812
|
+
### Patch Changes
|
|
1813
|
+
|
|
1814
|
+
- @akinon/next@1.34.0-rc.14
|
|
1815
|
+
- @akinon/pz-b2b@1.34.0-rc.14
|
|
1816
|
+
- @akinon/pz-gpay@1.34.0-rc.14
|
|
1817
|
+
- @akinon/pz-masterpass@1.34.0-rc.14
|
|
1818
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.14
|
|
1819
|
+
- @akinon/pz-otp@1.34.0-rc.14
|
|
1820
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.14
|
|
1821
|
+
|
|
1822
|
+
## 1.34.0-rc.13
|
|
1823
|
+
|
|
1824
|
+
### Minor Changes
|
|
1825
|
+
|
|
1826
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
1827
|
+
|
|
1828
|
+
### Patch Changes
|
|
1829
|
+
|
|
1830
|
+
- @akinon/next@1.34.0-rc.13
|
|
1831
|
+
- @akinon/pz-b2b@1.34.0-rc.13
|
|
1832
|
+
- @akinon/pz-gpay@1.34.0-rc.13
|
|
1833
|
+
- @akinon/pz-masterpass@1.34.0-rc.13
|
|
1834
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.13
|
|
1835
|
+
- @akinon/pz-otp@1.34.0-rc.13
|
|
1836
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.13
|
|
1837
|
+
|
|
1838
|
+
## 1.34.0-rc.12
|
|
1839
|
+
|
|
1840
|
+
### Patch Changes
|
|
1841
|
+
|
|
1842
|
+
- Updated dependencies [616690d]
|
|
1843
|
+
- @akinon/next@1.34.0-rc.12
|
|
1844
|
+
- @akinon/pz-b2b@1.34.0-rc.12
|
|
1845
|
+
- @akinon/pz-gpay@1.34.0-rc.12
|
|
1846
|
+
- @akinon/pz-masterpass@1.34.0-rc.12
|
|
1847
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.12
|
|
1848
|
+
- @akinon/pz-otp@1.34.0-rc.12
|
|
1849
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.12
|
|
1850
|
+
|
|
1851
|
+
## 1.34.0-rc.11
|
|
1852
|
+
|
|
1853
|
+
### Patch Changes
|
|
1854
|
+
|
|
1855
|
+
- Updated dependencies [8e6e8cf]
|
|
1856
|
+
- @akinon/next@1.34.0-rc.11
|
|
1857
|
+
- @akinon/pz-b2b@1.34.0-rc.11
|
|
1858
|
+
- @akinon/pz-gpay@1.34.0-rc.11
|
|
1859
|
+
- @akinon/pz-masterpass@1.34.0-rc.11
|
|
1860
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.11
|
|
1861
|
+
- @akinon/pz-otp@1.34.0-rc.11
|
|
1862
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.11
|
|
1863
|
+
|
|
1864
|
+
## 1.34.0-rc.10
|
|
1865
|
+
|
|
1866
|
+
### Patch Changes
|
|
1867
|
+
|
|
1868
|
+
- Updated dependencies [bbe18b9]
|
|
1869
|
+
- @akinon/next@1.34.0-rc.10
|
|
1870
|
+
- @akinon/pz-b2b@1.34.0-rc.10
|
|
1871
|
+
- @akinon/pz-gpay@1.34.0-rc.10
|
|
1872
|
+
- @akinon/pz-masterpass@1.34.0-rc.10
|
|
1873
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.10
|
|
1874
|
+
- @akinon/pz-otp@1.34.0-rc.10
|
|
1875
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.10
|
|
1876
|
+
|
|
1877
|
+
## 1.34.0-rc.9
|
|
1878
|
+
|
|
1879
|
+
### Minor Changes
|
|
1880
|
+
|
|
1881
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1882
|
+
|
|
1883
|
+
### Patch Changes
|
|
1884
|
+
|
|
1885
|
+
- Updated dependencies [beb499e]
|
|
1886
|
+
- @akinon/next@1.34.0-rc.9
|
|
1887
|
+
- @akinon/pz-b2b@1.34.0-rc.9
|
|
1888
|
+
- @akinon/pz-gpay@1.34.0-rc.9
|
|
1889
|
+
- @akinon/pz-masterpass@1.34.0-rc.9
|
|
1890
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.9
|
|
1891
|
+
- @akinon/pz-otp@1.34.0-rc.9
|
|
1892
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.9
|
|
1893
|
+
|
|
1894
|
+
## 1.34.0-rc.8
|
|
1895
|
+
|
|
1896
|
+
### Minor Changes
|
|
1897
|
+
|
|
1898
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1899
|
+
|
|
1900
|
+
### Patch Changes
|
|
1901
|
+
|
|
1902
|
+
- Updated dependencies [91265bb]
|
|
1903
|
+
- @akinon/next@1.34.0-rc.8
|
|
1904
|
+
- @akinon/pz-b2b@1.34.0-rc.8
|
|
1905
|
+
- @akinon/pz-gpay@1.34.0-rc.8
|
|
1906
|
+
- @akinon/pz-masterpass@1.34.0-rc.8
|
|
1907
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.8
|
|
1908
|
+
- @akinon/pz-otp@1.34.0-rc.8
|
|
1909
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.8
|
|
1910
|
+
|
|
1911
|
+
## 1.34.0-rc.7
|
|
1912
|
+
|
|
1913
|
+
### Minor Changes
|
|
1914
|
+
|
|
1915
|
+
- 0d0f36c: ZERO-2598: Fix eslint warnings and update dependencies
|
|
1916
|
+
|
|
1917
|
+
### Patch Changes
|
|
1918
|
+
|
|
1919
|
+
- @akinon/next@1.34.0-rc.7
|
|
1920
|
+
- @akinon/pz-b2b@1.34.0-rc.7
|
|
1921
|
+
- @akinon/pz-gpay@1.34.0-rc.7
|
|
1922
|
+
- @akinon/pz-masterpass@1.34.0-rc.7
|
|
1923
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.7
|
|
1924
|
+
- @akinon/pz-otp@1.34.0-rc.7
|
|
1925
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.7
|
|
1926
|
+
|
|
1927
|
+
## 1.34.0-rc.6
|
|
1928
|
+
|
|
1929
|
+
### Minor Changes
|
|
1930
|
+
|
|
1931
|
+
- 567e4c1: ZERO-2580:Add checked attribute from props to checkbox
|
|
1932
|
+
- d09b677: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
|
|
1933
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
1934
|
+
- ebb63ce: ZERO-2525: Fix category facet removal bug and add close icon to active filters
|
|
1935
|
+
- f0c23bc: ZERO-2135: add custom not found page
|
|
1936
|
+
- 3420416: ZERO-2533: extend eslint config from @akinon/next
|
|
1937
|
+
- 6c18543: ZERO-2542:Refactor and show error in OneClickCheckoutButtons
|
|
1938
|
+
- 202f84e: ZERO-2569: Fix static keys
|
|
1939
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
1940
|
+
- 12c10a4: ZERO-2570: Category filters routes to absolute url
|
|
1941
|
+
|
|
1942
|
+
### Patch Changes
|
|
1943
|
+
|
|
1944
|
+
- Updated dependencies [d09b677]
|
|
1945
|
+
- Updated dependencies [6d4aadb]
|
|
1946
|
+
- Updated dependencies [ebb63ce]
|
|
1947
|
+
- Updated dependencies [7cebe87]
|
|
1948
|
+
- Updated dependencies [f3b595e]
|
|
1949
|
+
- Updated dependencies [59fb7c3]
|
|
1950
|
+
- Updated dependencies [f0c23bc]
|
|
1951
|
+
- Updated dependencies [3420416]
|
|
1952
|
+
- Updated dependencies [495d155]
|
|
1953
|
+
- Updated dependencies [6c18543]
|
|
1954
|
+
- Updated dependencies [40ad73e]
|
|
1955
|
+
- Updated dependencies [495d155]
|
|
1956
|
+
- Updated dependencies [f046f8e]
|
|
1957
|
+
- Updated dependencies [6b2972b]
|
|
1958
|
+
- Updated dependencies [3e68768]
|
|
1959
|
+
- @akinon/next@1.34.0-rc.6
|
|
1960
|
+
- @akinon/pz-masterpass@1.34.0-rc.6
|
|
1961
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.6
|
|
1962
|
+
- @akinon/pz-b2b@1.34.0-rc.6
|
|
1963
|
+
- @akinon/pz-gpay@1.34.0-rc.6
|
|
1964
|
+
- @akinon/pz-otp@1.34.0-rc.6
|
|
1965
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.6
|
|
301
1966
|
|
|
302
1967
|
## 1.33.2
|
|
303
1968
|
|