@akinon/projectzero 1.80.0 → 1.81.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/app-template/.gitignore +2 -0
  3. package/app-template/CHANGELOG.md +2950 -153
  4. package/app-template/package.json +19 -19
  5. package/app-template/public/locales/en/common.json +4 -0
  6. package/app-template/public/locales/tr/common.json +4 -0
  7. package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/cancellation/page.tsx +94 -5
  8. package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +9 -82
  9. package/app-template/src/app/[commerce]/[locale]/[currency]/orders/checkout/page.tsx +7 -4
  10. package/app-template/src/components/button.tsx +50 -35
  11. package/app-template/src/components/file-input.tsx +44 -2
  12. package/app-template/src/components/types/index.ts +4 -1
  13. package/app-template/src/components/widget/widget-placeholder.tsx +12 -0
  14. package/app-template/src/middleware.ts +1 -0
  15. package/app-template/src/settings.js +6 -1
  16. package/app-template/src/views/account/address-form.tsx +2 -2
  17. package/app-template/src/views/account/contact-form.tsx +3 -8
  18. package/app-template/src/views/account/orders/order-cancellation-item.tsx +23 -3
  19. package/app-template/src/views/basket/basket-content.tsx +106 -0
  20. package/app-template/src/views/basket/basket-item.tsx +16 -13
  21. package/app-template/src/views/basket/summary.tsx +10 -7
  22. package/app-template/src/views/category/category-header.tsx +11 -5
  23. package/app-template/src/views/header/search/index.tsx +13 -1
  24. package/app-template/src/views/login/index.tsx +28 -4
  25. package/app-template/src/views/register/index.tsx +30 -5
  26. package/commands/plugins.ts +4 -0
  27. package/dist/commands/plugins.js +4 -0
  28. package/package.json +1 -1
  29. package/app-template/sentry.edge.config.ts +0 -3
  30. package/app-template/sentry.server.config.ts +0 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @akinon/projectzero
2
2
 
3
+ ## 1.81.0-rc.1
4
+
5
+ ### Minor Changes
6
+
7
+ - 6c1dba75: ZERO-3174: update hash structure
8
+
9
+ ## 1.81.0-rc.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
14
+ - 7a1e1f73: ZERO-3138: Close the search input with the esc key
15
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
16
+ - c82875bc: ZERO-3140: Fix style layout size
17
+
3
18
  ## 1.80.0
4
19
 
5
20
  ## 1.79.0
@@ -65,3 +65,5 @@ next.config.wizardcopy.js
65
65
 
66
66
  certificates
67
67
  public/locales/*/index.json
68
+
69
+ certificates