@akinon/pz-bkm 1.82.0-rc.2 → 1.82.0-rc.20
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 +50 -0
- package/package.json +1 -1
- package/readme.md +10 -8
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,55 @@
|
|
1
1
|
# @akinon/pz-bkm
|
2
2
|
|
3
|
+
## 1.82.0-rc.20
|
4
|
+
|
5
|
+
## 1.82.0-rc.19
|
6
|
+
|
7
|
+
### Minor Changes
|
8
|
+
|
9
|
+
- 33377cf: ZERO-3267: Refactor import statement for ROUTES in error-page component
|
10
|
+
|
11
|
+
## 1.82.0-rc.18
|
12
|
+
|
13
|
+
## 1.82.0-rc.17
|
14
|
+
|
15
|
+
## 1.82.0-rc.16
|
16
|
+
|
17
|
+
### Minor Changes
|
18
|
+
|
19
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
20
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
21
|
+
- 624a4eb: ZERO-3276: Update installation instructions across multiple README files to standardize format and improve clarity
|
22
|
+
|
23
|
+
## 1.82.0-rc.15
|
24
|
+
|
25
|
+
## 1.82.0-rc.14
|
26
|
+
|
27
|
+
## 1.82.0-rc.13
|
28
|
+
|
29
|
+
## 1.82.0-rc.12
|
30
|
+
|
31
|
+
## 1.82.0-rc.11
|
32
|
+
|
33
|
+
## 1.82.0-rc.10
|
34
|
+
|
35
|
+
### Minor Changes
|
36
|
+
|
37
|
+
- 624a4eb6: ZERO-3276: Update installation instructions across multiple README files to standardize format and improve clarity
|
38
|
+
|
39
|
+
## 1.82.0-rc.9
|
40
|
+
|
41
|
+
## 1.82.0-rc.8
|
42
|
+
|
43
|
+
## 1.82.0-rc.7
|
44
|
+
|
45
|
+
## 1.82.0-rc.6
|
46
|
+
|
47
|
+
## 1.82.0-rc.5
|
48
|
+
|
49
|
+
## 1.82.0-rc.4
|
50
|
+
|
51
|
+
## 1.82.0-rc.3
|
52
|
+
|
3
53
|
## 1.82.0-rc.2
|
4
54
|
|
5
55
|
### Minor Changes
|
package/package.json
CHANGED
package/readme.md
CHANGED
@@ -1,16 +1,17 @@
|
|
1
1
|
# @akinon/pz-bkm
|
2
2
|
|
3
|
-
|
3
|
+
## Installation method
|
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-bkm
|
8
8
|
|
9
|
-
# Preferred installation method
|
10
9
|
npx @akinon/projectzero@latest --plugins
|
10
|
+
|
11
11
|
```
|
12
12
|
|
13
13
|
### Example Usage
|
14
|
+
|
14
15
|
##### File Path: src/views/checkout/steps/payment/options/bkm.tsx
|
15
16
|
|
16
17
|
```javascript
|
@@ -33,7 +34,8 @@ export default Bkm;
|
|
33
34
|
```
|
34
35
|
|
35
36
|
### Props
|
36
|
-
|
37
|
-
|
38
|
-
|
|
39
|
-
| `
|
37
|
+
|
38
|
+
| Property | Type | Description |
|
39
|
+
| -------------- | -------- | ----------------------------------------- |
|
40
|
+
| `translations` | `object` | Object containing translation strings. |
|
41
|
+
| `classes` | `object` | Object containing custom CSS class names. |
|