@aws-amplify/ui-angular 2.3.14 → 2.4.1
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/aws-amplify-ui-angular.metadata.json +1 -1
- package/bundles/aws-amplify-ui-angular.umd.js +54 -8
- package/bundles/aws-amplify-ui-angular.umd.js.map +1 -1
- package/bundles/aws-amplify-ui-angular.umd.min.js +1 -1
- package/bundles/aws-amplify-ui-angular.umd.min.js.map +1 -1
- package/esm2015/lib/components/authenticator/components/authenticator/authenticator.component.js +39 -5
- package/esm2015/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.js +11 -4
- package/esm2015/lib/components/authenticator/components/setup-totp/setup-totp.component.js +2 -2
- package/esm2015/lib/services/authenticator.service.js +6 -5
- package/fesm2015/aws-amplify-ui-angular.js +52 -10
- package/fesm2015/aws-amplify-ui-angular.js.map +1 -1
- package/lib/components/authenticator/components/authenticator/authenticator.component.d.ts +7 -2
- package/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.d.ts +8 -1
- package/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.d.ts +2 -0
- package/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.d.ts +2 -0
- package/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.d.ts +2 -0
- package/lib/components/authenticator/components/force-new-password/force-new-password.component.d.ts +2 -0
- package/lib/components/authenticator/components/reset-password/reset-password.component.d.ts +2 -0
- package/lib/components/authenticator/components/setup-totp/setup-totp.component.d.ts +2 -0
- package/lib/components/authenticator/components/sign-in/sign-in.component.d.ts +2 -0
- package/lib/components/authenticator/components/sign-up/sign-up.component.d.ts +2 -0
- package/lib/components/authenticator/components/verify-user/verify-user.component.d.ts +2 -0
- package/lib/services/authenticator.service.d.ts +3 -1
- package/package.json +2 -2
|
@@ -24,6 +24,7 @@ export declare class SignInComponent {
|
|
|
24
24
|
hasValidationErrors: boolean;
|
|
25
25
|
isPending: boolean;
|
|
26
26
|
route: string;
|
|
27
|
+
authStatus: string;
|
|
27
28
|
user: import("@aws-amplify/ui").CognitoUserAmplify;
|
|
28
29
|
validationErrors: {
|
|
29
30
|
[x: string]: string | string[];
|
|
@@ -44,6 +45,7 @@ export declare class SignInComponent {
|
|
|
44
45
|
hasValidationErrors: boolean;
|
|
45
46
|
isPending: boolean;
|
|
46
47
|
route: string;
|
|
48
|
+
authStatus: string;
|
|
47
49
|
user: import("@aws-amplify/ui").CognitoUserAmplify;
|
|
48
50
|
validationErrors: {
|
|
49
51
|
[x: string]: string | string[];
|
|
@@ -21,6 +21,7 @@ export declare class SignUpComponent {
|
|
|
21
21
|
hasValidationErrors: boolean;
|
|
22
22
|
isPending: boolean;
|
|
23
23
|
route: string;
|
|
24
|
+
authStatus: string;
|
|
24
25
|
user: import("@aws-amplify/ui").CognitoUserAmplify;
|
|
25
26
|
validationErrors: {
|
|
26
27
|
[x: string]: string | string[];
|
|
@@ -41,6 +42,7 @@ export declare class SignUpComponent {
|
|
|
41
42
|
hasValidationErrors: boolean;
|
|
42
43
|
isPending: boolean;
|
|
43
44
|
route: string;
|
|
45
|
+
authStatus: string;
|
|
44
46
|
user: import("@aws-amplify/ui").CognitoUserAmplify;
|
|
45
47
|
validationErrors: {
|
|
46
48
|
[x: string]: string | string[];
|
|
@@ -27,6 +27,7 @@ export declare class VerifyUserComponent implements OnInit {
|
|
|
27
27
|
hasValidationErrors: boolean;
|
|
28
28
|
isPending: boolean;
|
|
29
29
|
route: string;
|
|
30
|
+
authStatus: string;
|
|
30
31
|
user: import("@aws-amplify/ui").CognitoUserAmplify;
|
|
31
32
|
validationErrors: {
|
|
32
33
|
[x: string]: string | string[];
|
|
@@ -47,6 +48,7 @@ export declare class VerifyUserComponent implements OnInit {
|
|
|
47
48
|
hasValidationErrors: boolean;
|
|
48
49
|
isPending: boolean;
|
|
49
50
|
route: string;
|
|
51
|
+
authStatus: string;
|
|
50
52
|
user: import("@aws-amplify/ui").CognitoUserAmplify;
|
|
51
53
|
validationErrors: {
|
|
52
54
|
[x: string]: string | string[];
|
|
@@ -11,7 +11,6 @@ export declare class AuthenticatorService implements OnDestroy {
|
|
|
11
11
|
private _authService;
|
|
12
12
|
private _sendEventAliases;
|
|
13
13
|
private _machineSubscription;
|
|
14
|
-
private _hubSubscription;
|
|
15
14
|
private _facade;
|
|
16
15
|
constructor();
|
|
17
16
|
ngOnDestroy(): void;
|
|
@@ -22,6 +21,7 @@ export declare class AuthenticatorService implements OnDestroy {
|
|
|
22
21
|
get hasValidationErrors(): boolean;
|
|
23
22
|
get isPending(): boolean;
|
|
24
23
|
get route(): string;
|
|
24
|
+
get authStatus(): string;
|
|
25
25
|
get user(): import("@aws-amplify/ui").CognitoUserAmplify;
|
|
26
26
|
get validationErrors(): {
|
|
27
27
|
[x: string]: string | string[];
|
|
@@ -69,6 +69,7 @@ export declare class AuthenticatorService implements OnDestroy {
|
|
|
69
69
|
hasValidationErrors: boolean;
|
|
70
70
|
isPending: boolean;
|
|
71
71
|
route: string;
|
|
72
|
+
authStatus: string;
|
|
72
73
|
user: import("@aws-amplify/ui").CognitoUserAmplify;
|
|
73
74
|
validationErrors: {
|
|
74
75
|
[x: string]: string | string[];
|
|
@@ -89,6 +90,7 @@ export declare class AuthenticatorService implements OnDestroy {
|
|
|
89
90
|
hasValidationErrors: boolean;
|
|
90
91
|
isPending: boolean;
|
|
91
92
|
route: string;
|
|
93
|
+
authStatus: string;
|
|
92
94
|
user: import("@aws-amplify/ui").CognitoUserAmplify;
|
|
93
95
|
validationErrors: {
|
|
94
96
|
[x: string]: string | string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/ui-angular",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@aws-amplify/ui-components": "^1.7.0",
|
|
15
|
-
"@aws-amplify/ui": "3.
|
|
15
|
+
"@aws-amplify/ui": "3.8.0",
|
|
16
16
|
"@stencil/core": "2.8.0",
|
|
17
17
|
"nanoid": "3.1.31",
|
|
18
18
|
"qrcode": "1.5.0",
|