@akinon/projectzero 1.100.0 → 1.101.0-rc.74

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/CHANGELOG.md +235 -4
  2. package/app-template/.env.example +1 -0
  3. package/app-template/.github/instructions/routing.instructions.md +603 -0
  4. package/app-template/CHANGELOG.md +4998 -310
  5. package/app-template/README.md +25 -1
  6. package/app-template/package.json +21 -19
  7. package/app-template/public/locales/en/checkout.json +6 -0
  8. package/app-template/public/locales/en/common.json +48 -1
  9. package/app-template/public/locales/tr/checkout.json +6 -0
  10. package/app-template/public/locales/tr/common.json +48 -1
  11. package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +9 -82
  12. package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +17 -4
  13. package/app-template/src/app/[commerce]/[locale]/[currency]/flat-page/[pk]/page.tsx +12 -1
  14. package/app-template/src/app/[commerce]/[locale]/[currency]/group-product/[pk]/page.tsx +29 -11
  15. package/app-template/src/app/[commerce]/[locale]/[currency]/landing-page/[pk]/page.tsx +12 -1
  16. package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/loading.tsx +67 -0
  17. package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/page.tsx +28 -10
  18. package/app-template/src/app/[commerce]/[locale]/[currency]/special-page/[pk]/page.tsx +12 -1
  19. package/app-template/src/app/api/form/[...id]/route.ts +1 -7
  20. package/app-template/src/app/api/image-proxy/route.ts +1 -0
  21. package/app-template/src/app/api/similar-product-list/route.ts +1 -0
  22. package/app-template/src/app/api/similar-products/route.ts +1 -0
  23. package/app-template/src/assets/fonts/pz-icon.css +3 -0
  24. package/app-template/src/components/__tests__/link.test.tsx +2 -0
  25. package/app-template/src/components/accordion.tsx +22 -19
  26. package/app-template/src/components/currency-select.tsx +1 -0
  27. package/app-template/src/components/file-input.tsx +27 -7
  28. package/app-template/src/components/generate-form-fields.tsx +43 -4
  29. package/app-template/src/components/input.tsx +9 -2
  30. package/app-template/src/components/modal.tsx +32 -16
  31. package/app-template/src/components/pagination.tsx +1 -0
  32. package/app-template/src/components/price.tsx +1 -1
  33. package/app-template/src/components/select.tsx +38 -26
  34. package/app-template/src/components/types/index.ts +25 -1
  35. package/app-template/src/hooks/index.ts +2 -0
  36. package/app-template/src/hooks/use-product-cart.ts +77 -0
  37. package/app-template/src/hooks/use-stock-alert.ts +74 -0
  38. package/app-template/src/plugins.js +3 -1
  39. package/app-template/src/settings.js +8 -2
  40. package/app-template/src/types/index.ts +17 -0
  41. package/app-template/src/utils/variant-validation.ts +41 -0
  42. package/app-template/src/views/account/address-form.tsx +8 -4
  43. package/app-template/src/views/account/contact-form.tsx +1 -1
  44. package/app-template/src/views/account/content-header.tsx +2 -2
  45. package/app-template/src/views/account/faq/faq-tabs.tsx +8 -2
  46. package/app-template/src/views/basket/basket-content.tsx +106 -0
  47. package/app-template/src/views/basket/basket-item.tsx +22 -14
  48. package/app-template/src/views/basket/summary.tsx +10 -7
  49. package/app-template/src/views/breadcrumb.tsx +2 -2
  50. package/app-template/src/views/category/category-info.tsx +1 -0
  51. package/app-template/src/views/category/filters/index.tsx +1 -1
  52. package/app-template/src/views/checkout/steps/payment/options/store-credit.tsx +121 -0
  53. package/app-template/src/views/checkout/summary.tsx +10 -0
  54. package/app-template/src/views/guest-login/index.tsx +6 -1
  55. package/app-template/src/views/header/action-menu.tsx +1 -1
  56. package/app-template/src/views/header/search/index.tsx +17 -5
  57. package/app-template/src/views/product/product-actions.tsx +165 -0
  58. package/app-template/src/views/product/product-info.tsx +62 -263
  59. package/app-template/src/views/product/product-share.tsx +56 -0
  60. package/app-template/src/views/product/product-variants.tsx +26 -0
  61. package/app-template/src/views/product/slider.tsx +86 -73
  62. package/app-template/src/widgets/footer-menu.tsx +6 -2
  63. package/commands/plugins.ts +63 -16
  64. package/dist/commands/plugins.js +57 -16
  65. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @akinon/projectzero
2
2
 
3
+ ## 1.101.0-rc.74
4
+
5
+ ## 1.101.0-rc.73
6
+
7
+ ### Minor Changes
8
+
9
+ - d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
10
+ - c67942a4: ZERO-3423: Updated version control and debug messages for the package
11
+ - 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
12
+ - 16aff543: ZERO-3431: Add test script for redirect utility in package.json
13
+ - 64699d3ff: ZERO-2761: Fix invalid import for plugin module
14
+ - e974d8e8: ZERO-3406: Fix rc build
15
+ - 7eb51ca9: ZERO-3424 :Update package versions
16
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
17
+ - 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
18
+ - 34578efc: ZERO-3419 :Add new payment plugins and update existing ones in the plugin list
19
+ - d99a6a7d: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
20
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
21
+
3
22
  ## 1.100.0
4
23
 
5
24
  ## 1.99.0
@@ -35,7 +54,161 @@
35
54
 
36
55
  ### Minor Changes
37
56
 
38
- - 942490f: ZERO-3295: move third party tailwind content list to akinon-next
57
+ - d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
58
+ - c67942a4: ZERO-3423: Updated version control and debug messages for the package
59
+ - 5de751aa: ZERO-3428 :Add Hepsipay plugin to the list of available plugins
60
+ - 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
61
+ - 16aff543: ZERO-3431: Add test script for redirect utility in package.json
62
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
63
+ - e974d8e8: ZERO-3406: Fix rc build
64
+ - 7eb51ca9: ZERO-3424 :Update package versions
65
+ - c806fad7: ZERO-3422: Add Flow Payment plugin to the defined plugins list
66
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
67
+ - 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
68
+ - 72ad7bb1: ZERO-3422: Add Flow Payment to the list of available plugins
69
+ - 34578efc: ZERO-3419 :Add new payment plugins and update existing ones in the plugin list
70
+ - d99a6a7d: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
71
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
72
+
73
+ ## 1.92.0-rc.41
74
+
75
+ ## 1.92.0-rc.40
76
+
77
+ ## 1.92.0-rc.39
78
+
79
+ ## 1.92.0-rc.38
80
+
81
+ ## 1.92.0-rc.37
82
+
83
+ ## 1.92.0-rc.36
84
+
85
+ ## 1.92.0-rc.35
86
+
87
+ ## 1.92.0-rc.34
88
+
89
+ ## 1.92.0-rc.33
90
+
91
+ ## 1.92.0-rc.32
92
+
93
+ ## 1.92.0-rc.31
94
+
95
+ ## 1.92.0-rc.30
96
+
97
+ ## 1.92.0-rc.29
98
+
99
+ ## 1.92.0-rc.28
100
+
101
+ ## 1.92.0-rc.27
102
+
103
+ ## 1.92.0-rc.26
104
+
105
+ ### Minor Changes
106
+
107
+ - 16aff54: ZERO-3431: Add test script for redirect utility in package.json
108
+
109
+ ## 1.92.0-rc.25
110
+
111
+ ## 1.92.0-rc.24
112
+
113
+ ## 1.92.0-rc.23
114
+
115
+ ## 1.92.0-rc.22
116
+
117
+ ### Minor Changes
118
+
119
+ - 143be2b: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
120
+
121
+ ## 1.92.0-rc.21
122
+
123
+ ### Minor Changes
124
+
125
+ - d99a6a7: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
126
+
127
+ ## 1.92.0-rc.20
128
+
129
+ ### Minor Changes
130
+
131
+ - 8b1d24e: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
132
+
133
+ ## 1.92.0-rc.19
134
+
135
+ ### Minor Changes
136
+
137
+ - d8be48f: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
138
+
139
+ ## 1.92.0-rc.18
140
+
141
+ ### Minor Changes
142
+
143
+ - c67942a: ZERO-3423: Updated version control and debug messages for the package
144
+
145
+ ## 1.92.0-rc.17
146
+
147
+ ## 1.92.0-rc.16
148
+
149
+ ## 1.92.0-rc.15
150
+
151
+ ### Minor Changes
152
+
153
+ - 5de751aa: ZERO-3428 :Add Hepsipay plugin to the list of available plugins
154
+
155
+ ## 1.92.0-rc.14
156
+
157
+ ## 1.92.0-rc.13
158
+
159
+ ## 1.92.0-rc.12
160
+
161
+ ## 1.92.0-rc.11
162
+
163
+ ## 1.92.0-rc.10
164
+
165
+ ## 1.92.0-rc.9
166
+
167
+ ### Minor Changes
168
+
169
+ - 72ad7bb: ZERO-3422: Add Flow Payment to the list of available plugins
170
+
171
+ ## 1.92.0-rc.8
172
+
173
+ ### Minor Changes
174
+
175
+ - c806fad: ZERO-3422: Add Flow Payment plugin to the defined plugins list
176
+
177
+ ## 1.92.0-rc.7
178
+
179
+ ## 1.91.0-rc.6
180
+
181
+ ## 1.91.0-rc.5
182
+
183
+ ## 1.91.0-rc.4
184
+
185
+ ### Minor Changes
186
+
187
+ - 7eb51ca: ZERO-3424 :Update package versions
188
+ - 34578ef: ZERO-3419 :Add new payment plugins and update existing ones in the plugin list
189
+
190
+ ## 1.91.0-rc.3
191
+
192
+ ### Minor Changes
193
+
194
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
195
+ - e974d8e8: ZERO-3406: Fix rc build
196
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
197
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
198
+ - 942490f2: ZERO-3295: move third party tailwind content list to akinon-next
199
+
200
+ ## 1.91.0-rc.2
201
+
202
+ ## 1.91.0-rc.1
203
+
204
+ ## 1.91.0-rc.0
205
+
206
+ ### Minor Changes
207
+
208
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
209
+ - e974d8e: ZERO-3406: Fix rc build
210
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
211
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
39
212
 
40
213
  ## 1.90.0
41
214
 
@@ -65,9 +238,67 @@
65
238
 
66
239
  ### Minor Changes
67
240
 
68
- - 7a1e1f7: ZERO-3138: Close the search input with the esc key
69
- - c82875b: ZERO-3140: Fix style layout size
70
- - 6c1dba7: ZERO-3174: update hash structure
241
+ - 33377cf: ZERO-3267: Refactor import statement for ROUTES in error-page component
242
+
243
+ ## 1.82.0-rc.18
244
+
245
+ ## 1.82.0-rc.17
246
+
247
+ ### Minor Changes
248
+
249
+ - e2583ac2: ZERO-3282: Switch to execSync for synchronous execution, enhance file checks, and add error page replacement script
250
+
251
+ ## 1.82.0-rc.16
252
+
253
+ ### Minor Changes
254
+
255
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
256
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
257
+
258
+ ## 1.82.0-rc.15
259
+
260
+ ## 1.82.0-rc.14
261
+
262
+ ## 1.82.0-rc.13
263
+
264
+ ## 1.82.0-rc.12
265
+
266
+ ## 1.82.0-rc.11
267
+
268
+ ## 1.82.0-rc.10
269
+
270
+ ## 1.82.0-rc.9
271
+
272
+ ## 1.82.0-rc.8
273
+
274
+ ## 1.82.0-rc.7
275
+
276
+ ## 1.82.0-rc.6
277
+
278
+ ## 1.82.0-rc.5
279
+
280
+ ## 1.82.0-rc.4
281
+
282
+ ## 1.82.0-rc.3
283
+
284
+ ## 1.82.0-rc.2
285
+
286
+ ### Minor Changes
287
+
288
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
289
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
290
+
291
+ ## 1.82.0-rc.1
292
+
293
+ ## 1.82.0-rc.0
294
+
295
+ ### Minor Changes
296
+
297
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
298
+ - 7a1e1f73: ZERO-3138: Close the search input with the esc key
299
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
300
+ - c82875bc: ZERO-3140: Fix style layout size
301
+ - 6c1dba75: ZERO-3174: update hash structure
71
302
 
72
303
  ## 1.81.0
73
304
 
@@ -6,6 +6,7 @@ NEXT_PUBLIC_GTM_KEY=GTM_KEY
6
6
  NEXT_PUBLIC_URL=http://localhost:3000
7
7
  SERVICE_BACKEND_URL=https://02fde10fee4440269e695aa10707dfaf.lb.akinoncloud.com
8
8
  SITEMAP_S3_BUCKET_NAME=0fb534
9
+ NEXT_PUBLIC_ENABLE_IMAGE_SEARCH=true
9
10
 
10
11
  # LOG_LEVEL_DEV=debug # For more details, please refer to the Logging documentation.
11
12