@akinon/projectzero 1.43.0 → 1.45.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 (45) hide show
  1. package/CHANGELOG.md +47 -0
  2. package/README.md +3 -2
  3. package/app-template/.lintstagedrc.js +5 -4
  4. package/app-template/CHANGELOG.md +971 -20
  5. package/app-template/build.sh +0 -0
  6. package/app-template/docs/basic-setup.md +1 -1
  7. package/app-template/docs/plugins.md +7 -7
  8. package/app-template/package-lock.json +29303 -0
  9. package/app-template/package.json +23 -21
  10. package/app-template/public/locales/en/account.json +4 -4
  11. package/app-template/public/locales/tr/account.json +1 -1
  12. package/app-template/src/app/[commerce]/[locale]/[currency]/[...prettyurl]/page.tsx +8 -0
  13. package/app-template/src/app/[commerce]/[locale]/[currency]/account/address/page.tsx +1 -1
  14. package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +4 -4
  15. package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +1 -0
  16. package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +5 -2
  17. package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +12 -8
  18. package/app-template/src/components/checkbox.tsx +2 -2
  19. package/app-template/src/components/input.tsx +19 -7
  20. package/app-template/src/components/price.tsx +9 -4
  21. package/app-template/src/redux/reducers/category.ts +7 -1
  22. package/app-template/src/settings.js +6 -1
  23. package/app-template/src/views/account/address-card.tsx +2 -2
  24. package/app-template/src/views/account/address-form.tsx +22 -7
  25. package/app-template/src/views/account/contact-form.tsx +23 -6
  26. package/app-template/src/views/account/favorite-item.tsx +2 -2
  27. package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +5 -1
  28. package/app-template/src/views/breadcrumb.tsx +4 -1
  29. package/app-template/src/views/category/category-info.tsx +31 -17
  30. package/app-template/src/views/category/filters/filter-item.tsx +131 -0
  31. package/app-template/src/views/category/filters/index.tsx +5 -105
  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/find-in-store/index.tsx +2 -3
  40. package/app-template/src/views/header/mobile-menu.tsx +25 -8
  41. package/app-template/tsconfig.json +14 -4
  42. package/app-template/yarn.lock +1824 -1953
  43. package/commands/create.ts +31 -5
  44. package/dist/commands/create.js +26 -2
  45. package/package.json +2 -2
File without changes
@@ -24,7 +24,7 @@ The setup process for a Headless Akinon Commerce Cloud Storefront will be guided
24
24
  2. Next, the storefront needs to be installed by using the `projectzero` CLI.
25
25
 
26
26
  ```bash
27
- npx @akinon/projectzero --create
27
+ npx @akinon/projectzero@latest --create
28
28
  ```
29
29
 
30
30
  3. Provide the following information:
@@ -7,9 +7,9 @@ custom_edit_url: null
7
7
 
8
8
  To access and manage plugins for your Project Zero CLI, run the following command:
9
9
 
10
- ```css
11
- npx projectzero --plugins
12
- ```
10
+ ```bash
11
+ npx @akinon/projectzero@latest --plugins
12
+ ```
13
13
 
14
14
  The plugins selected from this list will be added to the project and ready for use. The plugins can be removed from the project by unchecking it from the same list.
15
15
 
@@ -27,9 +27,9 @@ The plugins selected from this list will be added to the project and ready for u
27
27
 
28
28
  1. To install plugins, run the following command in the console:
29
29
 
30
- ```css
31
- npx projectzero --plugins
32
- ```
30
+ ```bash
31
+ npx @akinon/projectzero@latest --plugins
32
+ ```
33
33
 
34
34
  2. Select the plugins desire to install from the list provided.
35
35
 
@@ -73,4 +73,4 @@ Used to enable any payment option with a redirection type on the payment page.
73
73
 
74
74
  This plugin enables the "Click & Collect" in-store pickup option.
75
75
 
76
- [Click here for details](https://bitbucket.org/akinonteam/pz-click-collect/src/main/)
76
+ [Click here for details](https://bitbucket.org/akinonteam/pz-click-collect/src/main/)