@aws-amplify/ui-angular 2.4.22 → 2.4.24
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 +20 -16
- 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 +9 -12
- package/esm2015/lib/components/authenticator/components/setup-totp/setup-totp.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/verify-user/verify-user.component.js +4 -4
- package/esm2015/lib/services/authenticator.service.js +4 -1
- package/fesm2015/aws-amplify-ui-angular.js +16 -16
- package/fesm2015/aws-amplify-ui-angular.js.map +1 -1
- package/lib/components/authenticator/components/authenticator/authenticator.component.d.ts +9 -3
- package/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.d.ts +8 -2
- package/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.d.ts +8 -2
- package/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.d.ts +8 -2
- package/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.d.ts +8 -2
- package/lib/components/authenticator/components/force-new-password/force-new-password.component.d.ts +8 -2
- package/lib/components/authenticator/components/reset-password/reset-password.component.d.ts +8 -2
- package/lib/components/authenticator/components/setup-totp/setup-totp.component.d.ts +8 -2
- package/lib/components/authenticator/components/sign-in/sign-in.component.d.ts +8 -2
- package/lib/components/authenticator/components/sign-up/sign-up.component.d.ts +8 -2
- package/lib/components/authenticator/components/verify-user/verify-user.component.d.ts +9 -3
- package/lib/services/authenticator.service.d.ts +10 -3
- package/package.json +2 -2
package/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export declare class ConfirmSignUpComponent {
|
|
|
15
15
|
get context(): {
|
|
16
16
|
$implicit: {
|
|
17
17
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
18
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
18
19
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
19
20
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
20
21
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -29,11 +30,14 @@ export declare class ConfirmSignUpComponent {
|
|
|
29
30
|
error: string;
|
|
30
31
|
hasValidationErrors: boolean;
|
|
31
32
|
isPending: boolean;
|
|
32
|
-
route: "
|
|
33
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
34
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
35
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
33
36
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
34
37
|
validationErrors: Record<string, string | string[]>;
|
|
35
38
|
};
|
|
36
39
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
40
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
37
41
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
38
42
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
39
43
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -48,7 +52,9 @@ export declare class ConfirmSignUpComponent {
|
|
|
48
52
|
error: string;
|
|
49
53
|
hasValidationErrors: boolean;
|
|
50
54
|
isPending: boolean;
|
|
51
|
-
route: "
|
|
55
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
56
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
57
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
52
58
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
53
59
|
validationErrors: Record<string, string | string[]>;
|
|
54
60
|
};
|
|
@@ -11,6 +11,7 @@ export declare class ConfirmVerifyUserComponent {
|
|
|
11
11
|
get context(): {
|
|
12
12
|
$implicit: {
|
|
13
13
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
14
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
14
15
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
15
16
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
16
17
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -25,11 +26,14 @@ export declare class ConfirmVerifyUserComponent {
|
|
|
25
26
|
error: string;
|
|
26
27
|
hasValidationErrors: boolean;
|
|
27
28
|
isPending: boolean;
|
|
28
|
-
route: "
|
|
29
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
30
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
31
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
29
32
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
30
33
|
validationErrors: Record<string, string | string[]>;
|
|
31
34
|
};
|
|
32
35
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
36
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
33
37
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
34
38
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
35
39
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -44,7 +48,9 @@ export declare class ConfirmVerifyUserComponent {
|
|
|
44
48
|
error: string;
|
|
45
49
|
hasValidationErrors: boolean;
|
|
46
50
|
isPending: boolean;
|
|
47
|
-
route: "
|
|
51
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
52
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
53
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
48
54
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
49
55
|
validationErrors: Record<string, string | string[]>;
|
|
50
56
|
};
|
package/lib/components/authenticator/components/force-new-password/force-new-password.component.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export declare class ForceNewPasswordComponent {
|
|
|
9
9
|
get context(): {
|
|
10
10
|
$implicit: {
|
|
11
11
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
12
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
12
13
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
13
14
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
14
15
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -23,11 +24,14 @@ export declare class ForceNewPasswordComponent {
|
|
|
23
24
|
error: string;
|
|
24
25
|
hasValidationErrors: boolean;
|
|
25
26
|
isPending: boolean;
|
|
26
|
-
route: "
|
|
27
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
28
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
29
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
27
30
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
28
31
|
validationErrors: Record<string, string | string[]>;
|
|
29
32
|
};
|
|
30
33
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
34
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
31
35
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
32
36
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
33
37
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -42,7 +46,9 @@ export declare class ForceNewPasswordComponent {
|
|
|
42
46
|
error: string;
|
|
43
47
|
hasValidationErrors: boolean;
|
|
44
48
|
isPending: boolean;
|
|
45
|
-
route: "
|
|
49
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
50
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
51
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
46
52
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
47
53
|
validationErrors: Record<string, string | string[]>;
|
|
48
54
|
};
|
package/lib/components/authenticator/components/reset-password/reset-password.component.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export declare class ResetPasswordComponent {
|
|
|
11
11
|
get context(): {
|
|
12
12
|
$implicit: {
|
|
13
13
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
14
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
14
15
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
15
16
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
16
17
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -25,11 +26,14 @@ export declare class ResetPasswordComponent {
|
|
|
25
26
|
error: string;
|
|
26
27
|
hasValidationErrors: boolean;
|
|
27
28
|
isPending: boolean;
|
|
28
|
-
route: "
|
|
29
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
30
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
31
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
29
32
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
30
33
|
validationErrors: Record<string, string | string[]>;
|
|
31
34
|
};
|
|
32
35
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
36
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
33
37
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
34
38
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
35
39
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -44,7 +48,9 @@ export declare class ResetPasswordComponent {
|
|
|
44
48
|
error: string;
|
|
45
49
|
hasValidationErrors: boolean;
|
|
46
50
|
isPending: boolean;
|
|
47
|
-
route: "
|
|
51
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
52
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
53
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
48
54
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
49
55
|
validationErrors: Record<string, string | string[]>;
|
|
50
56
|
};
|
|
@@ -16,6 +16,7 @@ export declare class SetupTotpComponent implements OnInit {
|
|
|
16
16
|
get context(): {
|
|
17
17
|
$implicit: {
|
|
18
18
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
19
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
19
20
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
20
21
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
21
22
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -30,11 +31,14 @@ export declare class SetupTotpComponent implements OnInit {
|
|
|
30
31
|
error: string;
|
|
31
32
|
hasValidationErrors: boolean;
|
|
32
33
|
isPending: boolean;
|
|
33
|
-
route: "
|
|
34
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
35
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
36
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
34
37
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
35
38
|
validationErrors: Record<string, string | string[]>;
|
|
36
39
|
};
|
|
37
40
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
41
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
38
42
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
39
43
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
40
44
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -49,7 +53,9 @@ export declare class SetupTotpComponent implements OnInit {
|
|
|
49
53
|
error: string;
|
|
50
54
|
hasValidationErrors: boolean;
|
|
51
55
|
isPending: boolean;
|
|
52
|
-
route: "
|
|
56
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
57
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
58
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
53
59
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
54
60
|
validationErrors: Record<string, string | string[]>;
|
|
55
61
|
};
|
|
@@ -10,6 +10,7 @@ export declare class SignInComponent {
|
|
|
10
10
|
get context(): {
|
|
11
11
|
$implicit: {
|
|
12
12
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
13
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
13
14
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
14
15
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
15
16
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -24,11 +25,14 @@ export declare class SignInComponent {
|
|
|
24
25
|
error: string;
|
|
25
26
|
hasValidationErrors: boolean;
|
|
26
27
|
isPending: boolean;
|
|
27
|
-
route: "
|
|
28
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
29
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
30
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
28
31
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
29
32
|
validationErrors: Record<string, string | string[]>;
|
|
30
33
|
};
|
|
31
34
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
35
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
32
36
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
33
37
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
34
38
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -43,7 +47,9 @@ export declare class SignInComponent {
|
|
|
43
47
|
error: string;
|
|
44
48
|
hasValidationErrors: boolean;
|
|
45
49
|
isPending: boolean;
|
|
46
|
-
route: "
|
|
50
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
51
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
52
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
47
53
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
48
54
|
validationErrors: Record<string, string | string[]>;
|
|
49
55
|
};
|
|
@@ -7,6 +7,7 @@ export declare class SignUpComponent {
|
|
|
7
7
|
get context(): {
|
|
8
8
|
$implicit: {
|
|
9
9
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
10
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
10
11
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
11
12
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
12
13
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -21,11 +22,14 @@ export declare class SignUpComponent {
|
|
|
21
22
|
error: string;
|
|
22
23
|
hasValidationErrors: boolean;
|
|
23
24
|
isPending: boolean;
|
|
24
|
-
route: "
|
|
25
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
26
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
27
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
25
28
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
26
29
|
validationErrors: Record<string, string | string[]>;
|
|
27
30
|
};
|
|
28
31
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
32
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
29
33
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
30
34
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
31
35
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -40,7 +44,9 @@ export declare class SignUpComponent {
|
|
|
40
44
|
error: string;
|
|
41
45
|
hasValidationErrors: boolean;
|
|
42
46
|
isPending: boolean;
|
|
43
|
-
route: "
|
|
47
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
48
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
49
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
44
50
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
45
51
|
validationErrors: Record<string, string | string[]>;
|
|
46
52
|
};
|
|
@@ -4,7 +4,7 @@ export declare class VerifyUserComponent implements OnInit {
|
|
|
4
4
|
authenticator: AuthenticatorService;
|
|
5
5
|
dataAttr: string;
|
|
6
6
|
headerText: string;
|
|
7
|
-
|
|
7
|
+
unverifiedContactMethods: {};
|
|
8
8
|
labelId: string;
|
|
9
9
|
skipText: string;
|
|
10
10
|
verifyText: string;
|
|
@@ -13,6 +13,7 @@ export declare class VerifyUserComponent implements OnInit {
|
|
|
13
13
|
get context(): {
|
|
14
14
|
$implicit: {
|
|
15
15
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
16
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
16
17
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
17
18
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
18
19
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -27,11 +28,14 @@ export declare class VerifyUserComponent implements OnInit {
|
|
|
27
28
|
error: string;
|
|
28
29
|
hasValidationErrors: boolean;
|
|
29
30
|
isPending: boolean;
|
|
30
|
-
route: "
|
|
31
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
32
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
33
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
31
34
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
32
35
|
validationErrors: Record<string, string | string[]>;
|
|
33
36
|
};
|
|
34
37
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
38
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
35
39
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
36
40
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
37
41
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -46,7 +50,9 @@ export declare class VerifyUserComponent implements OnInit {
|
|
|
46
50
|
error: string;
|
|
47
51
|
hasValidationErrors: boolean;
|
|
48
52
|
isPending: boolean;
|
|
49
|
-
route: "
|
|
53
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
54
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
55
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
50
56
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
51
57
|
validationErrors: Record<string, string | string[]>;
|
|
52
58
|
};
|
|
@@ -19,7 +19,7 @@ export declare class AuthenticatorService implements OnDestroy {
|
|
|
19
19
|
get error(): string;
|
|
20
20
|
get hasValidationErrors(): boolean;
|
|
21
21
|
get isPending(): boolean;
|
|
22
|
-
get route(): "
|
|
22
|
+
get route(): import("@aws-amplify/ui").AuthenticatorRoute;
|
|
23
23
|
get authStatus(): "authenticated" | "configuring" | "unauthenticated";
|
|
24
24
|
get user(): import("@aws-amplify/ui").AmplifyUser;
|
|
25
25
|
get validationErrors(): Record<string, string | string[]>;
|
|
@@ -27,6 +27,7 @@ export declare class AuthenticatorService implements OnDestroy {
|
|
|
27
27
|
/**
|
|
28
28
|
* Service facades
|
|
29
29
|
*/
|
|
30
|
+
get initializeMachine(): (data?: Record<string | number | symbol, any>) => void;
|
|
30
31
|
get updateForm(): (data?: Record<string | number | symbol, any>) => void;
|
|
31
32
|
get updateBlur(): (data?: Record<string | number | symbol, any>) => void;
|
|
32
33
|
get resendCode(): (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -53,6 +54,7 @@ export declare class AuthenticatorService implements OnDestroy {
|
|
|
53
54
|
get slotContext(): {
|
|
54
55
|
$implicit: {
|
|
55
56
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
57
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
56
58
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
57
59
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
58
60
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -67,11 +69,14 @@ export declare class AuthenticatorService implements OnDestroy {
|
|
|
67
69
|
error: string;
|
|
68
70
|
hasValidationErrors: boolean;
|
|
69
71
|
isPending: boolean;
|
|
70
|
-
route: "
|
|
72
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
73
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
74
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
71
75
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
72
76
|
validationErrors: Record<string, string | string[]>;
|
|
73
77
|
};
|
|
74
78
|
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
79
|
+
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
75
80
|
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
76
81
|
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
77
82
|
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
@@ -86,7 +91,9 @@ export declare class AuthenticatorService implements OnDestroy {
|
|
|
86
91
|
error: string;
|
|
87
92
|
hasValidationErrors: boolean;
|
|
88
93
|
isPending: boolean;
|
|
89
|
-
route: "
|
|
94
|
+
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
95
|
+
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
96
|
+
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
90
97
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
91
98
|
validationErrors: Record<string, string | string[]>;
|
|
92
99
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/ui-angular",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.24",
|
|
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": "
|
|
15
|
+
"@aws-amplify/ui": "4.0.0",
|
|
16
16
|
"@stencil/core": "2.8.0",
|
|
17
17
|
"nanoid": "3.1.31",
|
|
18
18
|
"qrcode": "1.5.0",
|