@akinon/pz-akifast 1.71.0 → 1.72.0-rc.14

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,46 @@
1
1
  # @akinon/pz-akifast
2
2
 
3
- ## 1.71.0
3
+ ## 1.72.0-rc.14
4
+
5
+ ## 1.72.0-rc.13
6
+
7
+ ## 1.71.0-rc.12
8
+
9
+ ## 1.71.0-rc.11
10
+
11
+ ## 1.71.0-rc.10
12
+
13
+ ### Minor Changes
14
+
15
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
16
+
17
+ ## 1.71.0-rc.9
18
+
19
+ ## 1.71.0-rc.8
20
+
21
+ ### Minor Changes
22
+
23
+ - 0ab91e5: ZERO-2996: add rest props to QuickLoginButton component
24
+
25
+ ## 1.71.0-rc.7
26
+
27
+ ## 1.71.0-rc.6
28
+
29
+ ## 1.71.0-rc.5
30
+
31
+ ### Minor Changes
32
+
33
+ - 0ab91e5: ZERO-2996: add rest props to QuickLoginButton component
34
+
35
+ ## 1.71.0-rc.4
36
+
37
+ ## 1.71.0-rc.3
38
+
39
+ ## 1.71.0-rc.2
40
+
41
+ ## 1.71.0-rc.1
42
+
43
+ ## 1.71.0-rc.0
4
44
 
5
45
  ## 1.70.0
6
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akinon/pz-akifast",
3
- "version": "1.71.0",
3
+ "version": "1.72.0-rc.14",
4
4
  "main": "./src/index.ts",
5
5
  "module": "./src/index.ts",
6
6
  "license": "MIT",
@@ -12,8 +12,9 @@ export const QuickLoginButton = ({
12
12
  buttonText = 'Quick Login',
13
13
  isCaptchaVisible,
14
14
  captchaValidated,
15
- settings
16
- }: QuickLoginButtonProps) => {
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>