@akinon/projectzero 1.52.0-rc.0 → 1.53.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 +4 -37
  2. package/README.md +2 -3
  3. package/app-template/.gitignore +0 -2
  4. package/app-template/CHANGELOG.md +108 -1892
  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 +19 -18
  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]/account/address/page.tsx +1 -1
  11. package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +4 -4
  12. package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +0 -1
  13. package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +2 -5
  14. package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +8 -12
  15. package/app-template/src/components/checkbox.tsx +2 -2
  16. package/app-template/src/components/input.tsx +7 -19
  17. package/app-template/src/components/pagination.tsx +18 -13
  18. package/app-template/src/components/price.tsx +4 -9
  19. package/app-template/src/redux/reducers/category.ts +1 -7
  20. package/app-template/src/settings.js +1 -6
  21. package/app-template/src/views/account/address-card.tsx +2 -2
  22. package/app-template/src/views/account/address-form.tsx +7 -22
  23. package/app-template/src/views/account/contact-form.tsx +6 -23
  24. package/app-template/src/views/account/favorite-item.tsx +1 -1
  25. package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +1 -5
  26. package/app-template/src/views/breadcrumb.tsx +1 -4
  27. package/app-template/src/views/category/category-active-filters.tsx +6 -16
  28. package/app-template/src/views/category/category-info.tsx +17 -31
  29. package/app-template/src/views/category/filters/index.tsx +108 -16
  30. package/app-template/src/views/category/layout.tsx +3 -5
  31. package/app-template/src/views/checkout/steps/payment/options/credit-card/index.tsx +4 -33
  32. package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +37 -43
  33. package/app-template/src/views/checkout/steps/payment/payment-option-buttons.tsx +3 -19
  34. package/app-template/src/views/checkout/steps/shipping/address-box.tsx +2 -2
  35. package/app-template/src/views/checkout/steps/shipping/addresses.tsx +1 -1
  36. package/app-template/src/views/checkout/steps/shipping/shipping-options.tsx +37 -230
  37. package/app-template/src/views/header/mobile-menu.tsx +8 -25
  38. package/app-template/tsconfig.json +4 -14
  39. package/commands/create.ts +5 -29
  40. package/dist/commands/create.js +2 -25
  41. package/package.json +2 -2
  42. package/app-template/src/app/[commerce]/[locale]/[currency]/[...prettyurl]/page.tsx +0 -8
  43. package/app-template/src/views/category/filters/filter-item.tsx +0 -163
package/CHANGELOG.md CHANGED
@@ -1,15 +1,12 @@
1
1
  # @akinon/projectzero
2
2
 
3
- ## 1.52.0-rc.0
3
+ ## 1.53.0
4
+
5
+ ## 1.52.0
4
6
 
5
7
  ### Minor Changes
6
8
 
7
- - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
8
- - 03c4c3eb: ZERO-2731: Update Project Zero CLI command
9
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
10
- - 9b6bf91e: ZERO-2660: Change campaings to campaigns
11
- - 00ffde2f: ZERO-2637: enhance create command with improved messaging
12
- - d2f0f15c: ZERO-2723: Update sentry version and dependencies
9
+ - d8dd8dc: ZERO-2729: Audit packages for yarn and npm and also update app-template
13
10
 
14
11
  ## 1.51.0
15
12
 
@@ -64,36 +61,6 @@
64
61
  - cd78ddc: ZERO-2661: rename .npmignore to .gitignore during project creation
65
62
  - 735f4f0: ZERO-2661: create .npmignore in app-template
66
63
 
67
- ## 1.34.0-rc.16
68
-
69
- ### Minor Changes
70
-
71
- - cd78ddc: ZERO-2661: rename .npmignore to .gitignore during project creation
72
-
73
- ## 1.34.0-rc.15
74
-
75
- ### Minor Changes
76
-
77
- - 735f4f0: ZERO-2661: create .npmignore in app-template
78
-
79
- ## 1.34.0-rc.14
80
-
81
- ## 1.34.0-rc.13
82
-
83
- ## 1.34.0-rc.12
84
-
85
- ## 1.34.0-rc.11
86
-
87
- ## 1.34.0-rc.10
88
-
89
- ## 1.34.0-rc.9
90
-
91
- ## 1.34.0-rc.8
92
-
93
- ## 1.34.0-rc.7
94
-
95
- ## 1.34.0-rc.6
96
-
97
64
  ## 1.33.2
98
65
 
99
66
  ### Patch Changes
package/README.md CHANGED
@@ -11,9 +11,8 @@ npm install -g @akinon/projectzero
11
11
  ## Available Commands
12
12
 
13
13
  ### `create`
14
-
15
14
  It creates a new project.
16
15
 
17
16
  ```bash
18
- npx @akinon/projectzero@latest --create
19
- ```
17
+ npx @akinon/projectzero --create
18
+ ```
@@ -62,5 +62,3 @@ 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