@akinon/pz-akifast 1.89.0-rc.21 → 1.89.0-rc.22
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 +10 -0
- package/README.md +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @akinon/pz-akifast
|
|
2
2
|
|
|
3
|
+
## 1.89.0-rc.22
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 2657d0c: ZERO-3376: Add customization options for QuickLoginButton and CheckoutButton components
|
|
8
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
9
|
+
- e974d8e: ZERO-3406: Fix rc build
|
|
10
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
11
|
+
- 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
|
|
12
|
+
|
|
3
13
|
## 1.89.0-rc.21
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -72,7 +72,7 @@ import PluginModule, { Component } from '@akinon/next/components/plugin-module';
|
|
|
72
72
|
props={{
|
|
73
73
|
isCaptchaVisible,
|
|
74
74
|
captchaValidated,
|
|
75
|
-
buttonText: '
|
|
75
|
+
buttonText: 'Quick Login',
|
|
76
76
|
renderer: {
|
|
77
77
|
renderButton: ({ buttonText, disabled, onClick, rest }) => (
|
|
78
78
|
<button
|
|
@@ -113,13 +113,13 @@ import PluginModule, { Component } from '@akinon/next/components/plugin-module';
|
|
|
113
113
|
console.log('Original props:', rest);
|
|
114
114
|
}}
|
|
115
115
|
>
|
|
116
|
-
|
|
116
|
+
Buy Now
|
|
117
117
|
</button>
|
|
118
118
|
</div>
|
|
119
119
|
),
|
|
120
120
|
renderEmptyState: () => (
|
|
121
121
|
<div className="checkout-unavailable">
|
|
122
|
-
Akifast
|
|
122
|
+
Akifast payment option is not available at the moment.
|
|
123
123
|
</div>
|
|
124
124
|
)
|
|
125
125
|
}
|