@akinon/pz-akifast 1.71.0-rc.1 → 1.71.0-rc.10
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +30 -0
- package/package.json +1 -1
- package/src/views/QuickLoginButton.tsx +4 -2
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,35 @@
|
|
1
1
|
# @akinon/pz-akifast
|
2
2
|
|
3
|
+
## 1.71.0-rc.10
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
8
|
+
|
9
|
+
## 1.71.0-rc.9
|
10
|
+
|
11
|
+
## 1.71.0-rc.8
|
12
|
+
|
13
|
+
### Minor Changes
|
14
|
+
|
15
|
+
- 0ab91e5: ZERO-2996: add rest props to QuickLoginButton component
|
16
|
+
|
17
|
+
## 1.71.0-rc.7
|
18
|
+
|
19
|
+
## 1.71.0-rc.6
|
20
|
+
|
21
|
+
## 1.71.0-rc.5
|
22
|
+
|
23
|
+
### Minor Changes
|
24
|
+
|
25
|
+
- 0ab91e5: ZERO-2996: add rest props to QuickLoginButton component
|
26
|
+
|
27
|
+
## 1.71.0-rc.4
|
28
|
+
|
29
|
+
## 1.71.0-rc.3
|
30
|
+
|
31
|
+
## 1.71.0-rc.2
|
32
|
+
|
3
33
|
## 1.71.0-rc.1
|
4
34
|
|
5
35
|
## 1.71.0-rc.0
|
package/package.json
CHANGED
@@ -12,8 +12,9 @@ export const QuickLoginButton = ({
|
|
12
12
|
buttonText = 'Quick Login',
|
13
13
|
isCaptchaVisible,
|
14
14
|
captchaValidated,
|
15
|
-
settings
|
16
|
-
|
15
|
+
settings,
|
16
|
+
...rest
|
17
|
+
}: QuickLoginButtonProps & React.ButtonHTMLAttributes<HTMLButtonElement>) => {
|
17
18
|
if (settings?.quickLogin === false) {
|
18
19
|
return;
|
19
20
|
}
|
@@ -27,6 +28,7 @@ export const QuickLoginButton = ({
|
|
27
28
|
onClick={() => {
|
28
29
|
location.href = `/akifast/login/`;
|
29
30
|
}}
|
31
|
+
{...rest}
|
30
32
|
>
|
31
33
|
{buttonText}
|
32
34
|
</Button>
|