@akinon/pz-akifast 1.82.0-rc.2 → 1.82.0-rc.21
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 +52 -0
- package/README.md +12 -11
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
# @akinon/pz-akifast
|
|
2
2
|
|
|
3
|
+
## 1.82.0-rc.21
|
|
4
|
+
|
|
5
|
+
## 1.82.0-rc.20
|
|
6
|
+
|
|
7
|
+
## 1.82.0-rc.19
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- 33377cf: ZERO-3267: Refactor import statement for ROUTES in error-page component
|
|
12
|
+
|
|
13
|
+
## 1.82.0-rc.18
|
|
14
|
+
|
|
15
|
+
## 1.82.0-rc.17
|
|
16
|
+
|
|
17
|
+
## 1.82.0-rc.16
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
22
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
23
|
+
- 624a4eb: ZERO-3276: Update installation instructions across multiple README files to standardize format and improve clarity
|
|
24
|
+
|
|
25
|
+
## 1.82.0-rc.15
|
|
26
|
+
|
|
27
|
+
## 1.82.0-rc.14
|
|
28
|
+
|
|
29
|
+
## 1.82.0-rc.13
|
|
30
|
+
|
|
31
|
+
## 1.82.0-rc.12
|
|
32
|
+
|
|
33
|
+
## 1.82.0-rc.11
|
|
34
|
+
|
|
35
|
+
## 1.82.0-rc.10
|
|
36
|
+
|
|
37
|
+
### Minor Changes
|
|
38
|
+
|
|
39
|
+
- 624a4eb6: ZERO-3276: Update installation instructions across multiple README files to standardize format and improve clarity
|
|
40
|
+
|
|
41
|
+
## 1.82.0-rc.9
|
|
42
|
+
|
|
43
|
+
## 1.82.0-rc.8
|
|
44
|
+
|
|
45
|
+
## 1.82.0-rc.7
|
|
46
|
+
|
|
47
|
+
## 1.82.0-rc.6
|
|
48
|
+
|
|
49
|
+
## 1.82.0-rc.5
|
|
50
|
+
|
|
51
|
+
## 1.82.0-rc.4
|
|
52
|
+
|
|
53
|
+
## 1.82.0-rc.3
|
|
54
|
+
|
|
3
55
|
## 1.82.0-rc.2
|
|
4
56
|
|
|
5
57
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
# @akinon/pz-akifast
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## Installation
|
|
4
|
+
|
|
5
|
+
You can use the following command to install the extension with the latest plugins:
|
|
4
6
|
|
|
5
7
|
```bash
|
|
6
|
-
# For latest version
|
|
7
|
-
yarn add @akinon/pz-akifast
|
|
8
8
|
|
|
9
|
-
# Preferred installation method
|
|
10
9
|
npx @akinon/projectzero@latest --plugins
|
|
10
|
+
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
### Setting the Visibility of Buttons
|
|
14
|
+
|
|
14
15
|
(all buttons are visible by default)
|
|
15
16
|
|
|
16
17
|
```javascript
|
|
@@ -23,9 +24,9 @@ module.exports = {
|
|
|
23
24
|
'pz-akifast': {
|
|
24
25
|
quickLogin: false,
|
|
25
26
|
pdp: false,
|
|
26
|
-
basket: false
|
|
27
|
-
}
|
|
28
|
-
}
|
|
27
|
+
basket: false
|
|
28
|
+
}
|
|
29
|
+
}
|
|
29
30
|
};
|
|
30
31
|
```
|
|
31
32
|
|
|
@@ -42,7 +43,7 @@ import PluginModule, { Component } from '@akinon/next/components/plugin-module';
|
|
|
42
43
|
...checkoutProviderProps, // same with one click checkout props
|
|
43
44
|
isPdp: true
|
|
44
45
|
}}
|
|
45
|
-
|
|
46
|
+
/>;
|
|
46
47
|
```
|
|
47
48
|
|
|
48
49
|
## Quick Login Button
|
|
@@ -56,7 +57,7 @@ import PluginModule, { Component } from '@akinon/next/components/plugin-module';
|
|
|
56
57
|
isCaptchaVisible,
|
|
57
58
|
captchaValidated
|
|
58
59
|
}}
|
|
59
|
-
|
|
60
|
+
/>;
|
|
60
61
|
```
|
|
61
62
|
|
|
62
63
|
## Checkout Button Props
|
|
@@ -64,13 +65,13 @@ import PluginModule, { Component } from '@akinon/next/components/plugin-module';
|
|
|
64
65
|
You can see other props for the button in the `pz-one-click-checkout` package.
|
|
65
66
|
|
|
66
67
|
| Property | Type | Description |
|
|
67
|
-
|
|
68
|
+
| -------- | --------- | -------------------------------------- |
|
|
68
69
|
| isPdp | `boolean` | Indicates if it's a product info page. |
|
|
69
70
|
|
|
70
71
|
## Quick Login Props
|
|
71
72
|
|
|
72
73
|
| Property | Type | Description |
|
|
73
|
-
|
|
74
|
+
| ---------------- | --------- | ---------------------------------- |
|
|
74
75
|
| buttonText | `string` | Text displayed on the button. |
|
|
75
76
|
| isCaptchaVisible | `boolean` | Indicates if captcha is visible. |
|
|
76
77
|
| captchaValidated | `boolean` | Indicates if captcha is validated. |
|