@akinon/projectzero 1.44.0 → 1.45.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.
- package/CHANGELOG.md +43 -0
- package/README.md +3 -2
- package/app-template/.lintstagedrc.js +5 -4
- package/app-template/CHANGELOG.md +972 -20
- package/app-template/docs/basic-setup.md +1 -1
- package/app-template/docs/plugins.md +7 -7
- package/app-template/package-lock.json +29303 -0
- package/app-template/package.json +23 -21
- package/app-template/public/locales/en/account.json +4 -4
- package/app-template/public/locales/tr/account.json +1 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/[...prettyurl]/page.tsx +8 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/address/page.tsx +1 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +4 -4
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +1 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +5 -2
- package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +12 -8
- package/app-template/src/components/checkbox.tsx +2 -2
- package/app-template/src/components/input.tsx +19 -7
- package/app-template/src/components/price.tsx +9 -4
- package/app-template/src/redux/reducers/category.ts +7 -1
- package/app-template/src/settings.js +6 -1
- package/app-template/src/views/account/address-card.tsx +2 -2
- package/app-template/src/views/account/address-form.tsx +22 -7
- package/app-template/src/views/account/contact-form.tsx +23 -6
- package/app-template/src/views/account/favorite-item.tsx +2 -2
- package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +5 -1
- package/app-template/src/views/breadcrumb.tsx +4 -1
- package/app-template/src/views/category/category-info.tsx +31 -17
- package/app-template/src/views/category/filters/filter-item.tsx +131 -0
- package/app-template/src/views/category/filters/index.tsx +5 -105
- package/app-template/src/views/category/layout.tsx +5 -3
- package/app-template/src/views/checkout/steps/payment/options/credit-card/index.tsx +33 -4
- package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +43 -37
- package/app-template/src/views/checkout/steps/payment/payment-option-buttons.tsx +19 -3
- package/app-template/src/views/checkout/steps/shipping/address-box.tsx +2 -2
- package/app-template/src/views/checkout/steps/shipping/addresses.tsx +1 -1
- package/app-template/src/views/checkout/steps/shipping/shipping-options.tsx +230 -37
- package/app-template/src/views/find-in-store/index.tsx +2 -3
- package/app-template/src/views/header/mobile-menu.tsx +25 -8
- package/app-template/tsconfig.json +14 -4
- package/app-template/yarn.lock +1824 -1953
- package/commands/create.ts +29 -5
- package/dist/commands/create.js +25 -2
- package/package.json +2 -2
|
@@ -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
|
-
```
|
|
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
|
-
|
|
31
|
-
|
|
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/)
|