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