@akinon/projectzero 1.52.0 → 1.53.0-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/README.md +3 -2
  3. package/app-template/.gitignore +2 -0
  4. package/app-template/CHANGELOG.md +1886 -59
  5. package/app-template/docs/basic-setup.md +1 -1
  6. package/app-template/docs/plugins.md +7 -7
  7. package/app-template/package.json +18 -19
  8. package/app-template/public/locales/en/account.json +4 -4
  9. package/app-template/public/locales/tr/account.json +1 -1
  10. package/app-template/src/app/[commerce]/[locale]/[currency]/[...prettyurl]/page.tsx +8 -0
  11. package/app-template/src/app/[commerce]/[locale]/[currency]/account/address/page.tsx +1 -1
  12. package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +4 -4
  13. package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +1 -0
  14. package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +5 -2
  15. package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +12 -8
  16. package/app-template/src/components/checkbox.tsx +2 -2
  17. package/app-template/src/components/input.tsx +19 -7
  18. package/app-template/src/components/pagination.tsx +13 -18
  19. package/app-template/src/components/price.tsx +9 -4
  20. package/app-template/src/redux/reducers/category.ts +7 -1
  21. package/app-template/src/settings.js +6 -1
  22. package/app-template/src/views/account/address-card.tsx +2 -2
  23. package/app-template/src/views/account/address-form.tsx +22 -7
  24. package/app-template/src/views/account/contact-form.tsx +23 -6
  25. package/app-template/src/views/account/favorite-item.tsx +1 -1
  26. package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +5 -1
  27. package/app-template/src/views/breadcrumb.tsx +4 -1
  28. package/app-template/src/views/category/category-active-filters.tsx +16 -6
  29. package/app-template/src/views/category/category-info.tsx +31 -17
  30. package/app-template/src/views/category/filters/filter-item.tsx +163 -0
  31. package/app-template/src/views/category/filters/index.tsx +16 -108
  32. package/app-template/src/views/category/layout.tsx +5 -3
  33. package/app-template/src/views/checkout/steps/payment/options/credit-card/index.tsx +33 -4
  34. package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +43 -37
  35. package/app-template/src/views/checkout/steps/payment/payment-option-buttons.tsx +19 -3
  36. package/app-template/src/views/checkout/steps/shipping/address-box.tsx +2 -2
  37. package/app-template/src/views/checkout/steps/shipping/addresses.tsx +1 -1
  38. package/app-template/src/views/checkout/steps/shipping/shipping-options.tsx +230 -37
  39. package/app-template/src/views/header/mobile-menu.tsx +25 -8
  40. package/app-template/tsconfig.json +14 -4
  41. package/commands/create.ts +29 -5
  42. package/dist/commands/create.js +25 -2
  43. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @akinon/projectzero
2
2
 
3
+ ## 1.53.0-rc.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 03c4c3eb: ZERO-2731: Update Project Zero CLI command
8
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
9
+ - 9b6bf91e: ZERO-2660: Change campaings to campaigns
10
+ - 00ffde2f: ZERO-2637: enhance create command with improved messaging
11
+ - d2f0f15c: ZERO-2723: Update sentry version and dependencies
12
+
3
13
  ## 1.52.0
4
14
 
5
15
  ### Minor Changes
@@ -59,6 +69,36 @@
59
69
  - cd78ddc: ZERO-2661: rename .npmignore to .gitignore during project creation
60
70
  - 735f4f0: ZERO-2661: create .npmignore in app-template
61
71
 
72
+ ## 1.34.0-rc.16
73
+
74
+ ### Minor Changes
75
+
76
+ - cd78ddc: ZERO-2661: rename .npmignore to .gitignore during project creation
77
+
78
+ ## 1.34.0-rc.15
79
+
80
+ ### Minor Changes
81
+
82
+ - 735f4f0: ZERO-2661: create .npmignore in app-template
83
+
84
+ ## 1.34.0-rc.14
85
+
86
+ ## 1.34.0-rc.13
87
+
88
+ ## 1.34.0-rc.12
89
+
90
+ ## 1.34.0-rc.11
91
+
92
+ ## 1.34.0-rc.10
93
+
94
+ ## 1.34.0-rc.9
95
+
96
+ ## 1.34.0-rc.8
97
+
98
+ ## 1.34.0-rc.7
99
+
100
+ ## 1.34.0-rc.6
101
+
62
102
  ## 1.33.2
63
103
 
64
104
  ### Patch Changes
package/README.md CHANGED
@@ -11,8 +11,9 @@ npm install -g @akinon/projectzero
11
11
  ## Available Commands
12
12
 
13
13
  ### `create`
14
+
14
15
  It creates a new project.
15
16
 
16
17
  ```bash
17
- npx @akinon/projectzero --create
18
- ```
18
+ npx @akinon/projectzero@latest --create
19
+ ```
@@ -62,3 +62,5 @@ public/worker-*.js.map
62
62
  .sentryclirc
63
63
  next.config.original.js
64
64
  next.config.wizardcopy.js
65
+
66
+ public/locales/*/index.json