@aws-amplify/ui-angular 2.4.26 → 3.1.0
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/README.md +0 -3
- package/aws-amplify-ui-angular.d.ts +1 -27
- package/bundles/aws-amplify-ui-angular.umd.js +1607 -1517
- package/bundles/aws-amplify-ui-angular.umd.js.map +1 -1
- package/esm2015/aws-amplify-ui-angular.js +1 -28
- package/esm2015/lib/common/types/auth-types.js +1 -1
- package/esm2015/lib/components/authenticator/authenticator.module.js +81 -44
- package/esm2015/lib/components/authenticator/components/authenticator/authenticator.component.js +60 -36
- package/esm2015/lib/components/authenticator/components/base-form-fields/base-form-fields.component.js +20 -39
- package/esm2015/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.js +28 -27
- package/esm2015/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.js +25 -30
- package/esm2015/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.js +29 -36
- package/esm2015/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.js +27 -19
- package/esm2015/lib/components/authenticator/components/federated-sign-in/federated-sign-in.component.js +20 -17
- package/esm2015/lib/components/authenticator/components/federated-sign-in-button/federated-sign-in-button.component.js +17 -15
- package/esm2015/lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component.js +12 -7
- package/esm2015/lib/components/authenticator/components/force-new-password/force-new-password.component.js +27 -19
- package/esm2015/lib/components/authenticator/components/form-field/form-field.component.js +20 -15
- package/esm2015/lib/components/authenticator/components/reset-password/reset-password.component.js +27 -19
- package/esm2015/lib/components/authenticator/components/setup-totp/setup-totp.component.js +27 -21
- package/esm2015/lib/components/authenticator/components/sign-in/sign-in.component.js +27 -23
- package/esm2015/lib/components/authenticator/components/sign-up/sign-up-form-fields/sign-up-form-fields.component.js +12 -7
- package/esm2015/lib/components/authenticator/components/sign-up/sign-up.component.js +24 -16
- package/esm2015/lib/components/authenticator/components/verify-user/verify-user.component.js +27 -20
- package/esm2015/lib/primitives/button/button.component.js +44 -22
- package/esm2015/lib/primitives/checkbox/checkbox.component.js +24 -15
- package/esm2015/lib/primitives/error/error.component.js +13 -7
- package/esm2015/lib/primitives/password-field/password-field.component.js +37 -21
- package/esm2015/lib/primitives/phone-number-field/phone-number-field.component.js +45 -25
- package/esm2015/lib/primitives/select/select.component.js +22 -14
- package/esm2015/lib/primitives/tab-item/tab-item.component.js +25 -15
- package/esm2015/lib/primitives/tabs/tabs.component.js +17 -11
- package/esm2015/lib/primitives/text-field/text-field.component.js +38 -22
- package/esm2015/lib/services/authenticator.service.js +33 -30
- package/esm2015/lib/services/custom-components.service.js +9 -7
- package/esm2015/lib/utilities/amplify-slot/amplify-slot.component.js +20 -16
- package/esm2015/lib/utilities/amplify-slot/amplify-slot.directive.js +13 -13
- package/fesm2015/aws-amplify-ui-angular.js +1066 -957
- package/fesm2015/aws-amplify-ui-angular.js.map +1 -1
- package/lib/common/types/auth-types.d.ts +2 -2
- package/lib/components/authenticator/authenticator.module.d.ts +33 -0
- package/lib/components/authenticator/components/authenticator/authenticator.component.d.ts +16 -35
- package/lib/components/authenticator/components/base-form-fields/base-form-fields.component.d.ts +3 -1
- package/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.d.ts +17 -41
- package/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.d.ts +16 -35
- package/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.d.ts +16 -40
- package/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.d.ts +16 -35
- package/lib/components/authenticator/components/federated-sign-in/federated-sign-in.component.d.ts +3 -0
- package/lib/components/authenticator/components/federated-sign-in-button/federated-sign-in-button.component.d.ts +3 -0
- package/lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component.d.ts +3 -0
- package/lib/components/authenticator/components/force-new-password/force-new-password.component.d.ts +16 -35
- package/lib/components/authenticator/components/form-field/form-field.component.d.ts +3 -0
- package/lib/components/authenticator/components/reset-password/reset-password.component.d.ts +16 -35
- package/lib/components/authenticator/components/setup-totp/setup-totp.component.d.ts +16 -35
- package/lib/components/authenticator/components/sign-in/sign-in.component.d.ts +16 -35
- package/lib/components/authenticator/components/sign-up/sign-up-form-fields/sign-up-form-fields.component.d.ts +3 -0
- package/lib/components/authenticator/components/sign-up/sign-up.component.d.ts +16 -35
- package/lib/components/authenticator/components/verify-user/verify-user.component.d.ts +16 -35
- package/lib/primitives/button/button.component.d.ts +3 -0
- package/lib/primitives/checkbox/checkbox.component.d.ts +3 -0
- package/lib/primitives/error/error.component.d.ts +3 -0
- package/lib/primitives/password-field/password-field.component.d.ts +3 -0
- package/lib/primitives/phone-number-field/phone-number-field.component.d.ts +3 -0
- package/lib/primitives/select/select.component.d.ts +3 -0
- package/lib/primitives/tab-item/tab-item.component.d.ts +3 -0
- package/lib/primitives/tabs/tabs.component.d.ts +3 -0
- package/lib/primitives/text-field/text-field.component.d.ts +3 -0
- package/lib/services/authenticator.service.d.ts +28 -49
- package/lib/services/custom-components.service.d.ts +3 -0
- package/lib/utilities/amplify-slot/amplify-slot.component.d.ts +3 -0
- package/lib/utilities/amplify-slot/amplify-slot.directive.d.ts +3 -0
- package/package.json +3 -6
- package/aws-amplify-ui-angular.metadata.json +0 -1
- package/bundles/aws-amplify-ui-angular-legacy.umd.js +0 -2238
- package/bundles/aws-amplify-ui-angular-legacy.umd.js.map +0 -1
- package/bundles/aws-amplify-ui-angular-legacy.umd.min.js +0 -2
- package/bundles/aws-amplify-ui-angular-legacy.umd.min.js.map +0 -1
- package/bundles/aws-amplify-ui-angular.umd.min.js +0 -2
- package/bundles/aws-amplify-ui-angular.umd.min.js.map +0 -1
- package/esm2015/legacy/aws-amplify-ui-angular-legacy.js +0 -6
- package/esm2015/legacy/index.js +0 -3
- package/esm2015/legacy/legacy-ui-angular.module.js +0 -53
- package/esm2015/legacy/proxies.js +0 -1839
- package/fesm2015/aws-amplify-ui-angular-legacy.js +0 -1846
- package/fesm2015/aws-amplify-ui-angular-legacy.js.map +0 -1
- package/legacy/aws-amplify-ui-angular-legacy.d.ts +0 -5
- package/legacy/aws-amplify-ui-angular-legacy.metadata.json +0 -1
- package/legacy/index.d.ts +0 -2
- package/legacy/legacy-ui-angular.module.d.ts +0 -2
- package/legacy/package.json +0 -11
- package/legacy/proxies.d.ts +0 -395
package/lib/components/authenticator/components/reset-password/reset-password.component.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AuthenticatorService } from '../../../../services/authenticator.service';
|
|
2
2
|
import { FormFieldsArray } from '@aws-amplify/ui';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class ResetPasswordComponent {
|
|
4
5
|
authenticator: AuthenticatorService;
|
|
5
6
|
dataAttr: string;
|
|
@@ -9,40 +10,18 @@ export declare class ResetPasswordComponent {
|
|
|
9
10
|
sortedFormFields: FormFieldsArray;
|
|
10
11
|
constructor(authenticator: AuthenticatorService);
|
|
11
12
|
get context(): {
|
|
12
|
-
$implicit:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
25
|
-
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
26
|
-
error: string;
|
|
27
|
-
hasValidationErrors: boolean;
|
|
28
|
-
isPending: boolean;
|
|
29
|
-
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
30
|
-
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
31
|
-
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
32
|
-
user: import("@aws-amplify/ui").AmplifyUser;
|
|
33
|
-
validationErrors: Record<string, string | string[]>;
|
|
34
|
-
};
|
|
35
|
-
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
36
|
-
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
37
|
-
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
38
|
-
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
39
|
-
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
40
|
-
updateBlur: (data?: Record<string | number | symbol, any>) => void;
|
|
41
|
-
toFederatedSignIn: (data?: Record<string | number | symbol, any>) => void;
|
|
42
|
-
toResetPassword: (data?: Record<string | number | symbol, any>) => void;
|
|
43
|
-
toSignIn: (data?: Record<string | number | symbol, any>) => void;
|
|
44
|
-
toSignUp: (data?: Record<string | number | symbol, any>) => void;
|
|
45
|
-
skipVerification: (data?: Record<string | number | symbol, any>) => void;
|
|
13
|
+
$implicit: import("@aws-amplify/ui").AuthenticatorServiceFacade;
|
|
14
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
15
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
16
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
17
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
18
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
19
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
20
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
21
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
22
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
23
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
24
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
46
25
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
47
26
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
48
27
|
error: string;
|
|
@@ -52,8 +31,10 @@ export declare class ResetPasswordComponent {
|
|
|
52
31
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
53
32
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
54
33
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
55
|
-
validationErrors:
|
|
34
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
56
35
|
};
|
|
57
36
|
onInput(event: Event): void;
|
|
58
37
|
onSubmit(event: Event): void;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResetPasswordComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResetPasswordComponent, "amplify-reset-password", never, { "headerText": "headerText"; }, {}, never, never>;
|
|
59
40
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FormFieldsArray } from '@aws-amplify/ui';
|
|
3
3
|
import { AuthenticatorService } from '../../../../services/authenticator.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class SetupTotpComponent implements OnInit {
|
|
5
6
|
authenticator: AuthenticatorService;
|
|
6
7
|
dataAttr: string;
|
|
@@ -14,40 +15,18 @@ export declare class SetupTotpComponent implements OnInit {
|
|
|
14
15
|
constructor(authenticator: AuthenticatorService);
|
|
15
16
|
ngOnInit(): Promise<void>;
|
|
16
17
|
get context(): {
|
|
17
|
-
$implicit:
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
30
|
-
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
31
|
-
error: string;
|
|
32
|
-
hasValidationErrors: boolean;
|
|
33
|
-
isPending: boolean;
|
|
34
|
-
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
35
|
-
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
36
|
-
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
37
|
-
user: import("@aws-amplify/ui").AmplifyUser;
|
|
38
|
-
validationErrors: Record<string, string | string[]>;
|
|
39
|
-
};
|
|
40
|
-
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
41
|
-
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
42
|
-
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
43
|
-
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
44
|
-
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
45
|
-
updateBlur: (data?: Record<string | number | symbol, any>) => void;
|
|
46
|
-
toFederatedSignIn: (data?: Record<string | number | symbol, any>) => void;
|
|
47
|
-
toResetPassword: (data?: Record<string | number | symbol, any>) => void;
|
|
48
|
-
toSignIn: (data?: Record<string | number | symbol, any>) => void;
|
|
49
|
-
toSignUp: (data?: Record<string | number | symbol, any>) => void;
|
|
50
|
-
skipVerification: (data?: Record<string | number | symbol, any>) => void;
|
|
18
|
+
$implicit: import("@aws-amplify/ui").AuthenticatorServiceFacade;
|
|
19
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
20
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
21
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
22
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
23
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
24
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
25
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
26
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
27
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
28
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
29
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
51
30
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
52
31
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
53
32
|
error: string;
|
|
@@ -57,10 +36,12 @@ export declare class SetupTotpComponent implements OnInit {
|
|
|
57
36
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
58
37
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
59
38
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
60
|
-
validationErrors:
|
|
39
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
61
40
|
};
|
|
62
41
|
generateQRCode(): Promise<void>;
|
|
63
42
|
onInput(event: Event): void;
|
|
64
43
|
onSubmit(event: Event): void;
|
|
65
44
|
copyText(): void;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SetupTotpComponent, never>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SetupTotpComponent, "amplify-setup-totp", never, {}, {}, never, never>;
|
|
66
47
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AuthenticatorService } from '../../../../services/authenticator.service';
|
|
2
2
|
import { FormFieldsArray } from '@aws-amplify/ui';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class SignInComponent {
|
|
4
5
|
authenticator: AuthenticatorService;
|
|
5
6
|
dataAttr: string;
|
|
@@ -8,40 +9,18 @@ export declare class SignInComponent {
|
|
|
8
9
|
sortedFormFields: FormFieldsArray;
|
|
9
10
|
constructor(authenticator: AuthenticatorService);
|
|
10
11
|
get context(): {
|
|
11
|
-
$implicit:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
24
|
-
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
25
|
-
error: string;
|
|
26
|
-
hasValidationErrors: boolean;
|
|
27
|
-
isPending: boolean;
|
|
28
|
-
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
29
|
-
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
30
|
-
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
31
|
-
user: import("@aws-amplify/ui").AmplifyUser;
|
|
32
|
-
validationErrors: Record<string, string | string[]>;
|
|
33
|
-
};
|
|
34
|
-
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
35
|
-
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
36
|
-
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
37
|
-
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
38
|
-
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
39
|
-
updateBlur: (data?: Record<string | number | symbol, any>) => void;
|
|
40
|
-
toFederatedSignIn: (data?: Record<string | number | symbol, any>) => void;
|
|
41
|
-
toResetPassword: (data?: Record<string | number | symbol, any>) => void;
|
|
42
|
-
toSignIn: (data?: Record<string | number | symbol, any>) => void;
|
|
43
|
-
toSignUp: (data?: Record<string | number | symbol, any>) => void;
|
|
44
|
-
skipVerification: (data?: Record<string | number | symbol, any>) => void;
|
|
12
|
+
$implicit: import("@aws-amplify/ui").AuthenticatorServiceFacade;
|
|
13
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
14
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
15
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
16
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
17
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
18
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
19
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
20
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
21
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
22
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
23
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
45
24
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
46
25
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
47
26
|
error: string;
|
|
@@ -51,8 +30,10 @@ export declare class SignInComponent {
|
|
|
51
30
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
52
31
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
53
32
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
54
|
-
validationErrors:
|
|
33
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
55
34
|
};
|
|
56
35
|
onInput(event: Event): void;
|
|
57
36
|
onSubmit(event: Event): void;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SignInComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignInComponent, "amplify-sign-in", never, {}, {}, never, never>;
|
|
58
39
|
}
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class SignUpFormFieldsComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SignUpFormFieldsComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignUpFormFieldsComponent, "amplify-sign-up-form-fields", never, {}, {}, never, never>;
|
|
2
5
|
}
|
|
@@ -1,44 +1,23 @@
|
|
|
1
1
|
import { AuthenticatorService } from '../../../../services/authenticator.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class SignUpComponent {
|
|
3
4
|
authenticator: AuthenticatorService;
|
|
4
5
|
dataAttr: string;
|
|
5
6
|
createAccountText: string;
|
|
6
7
|
constructor(authenticator: AuthenticatorService);
|
|
7
8
|
get context(): {
|
|
8
|
-
$implicit:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
21
|
-
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
22
|
-
error: string;
|
|
23
|
-
hasValidationErrors: boolean;
|
|
24
|
-
isPending: boolean;
|
|
25
|
-
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
26
|
-
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
27
|
-
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
28
|
-
user: import("@aws-amplify/ui").AmplifyUser;
|
|
29
|
-
validationErrors: Record<string, string | string[]>;
|
|
30
|
-
};
|
|
31
|
-
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
32
|
-
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
33
|
-
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
34
|
-
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
35
|
-
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
36
|
-
updateBlur: (data?: Record<string | number | symbol, any>) => void;
|
|
37
|
-
toFederatedSignIn: (data?: Record<string | number | symbol, any>) => void;
|
|
38
|
-
toResetPassword: (data?: Record<string | number | symbol, any>) => void;
|
|
39
|
-
toSignIn: (data?: Record<string | number | symbol, any>) => void;
|
|
40
|
-
toSignUp: (data?: Record<string | number | symbol, any>) => void;
|
|
41
|
-
skipVerification: (data?: Record<string | number | symbol, any>) => void;
|
|
9
|
+
$implicit: import("@aws-amplify/ui").AuthenticatorServiceFacade;
|
|
10
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
11
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
12
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
13
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
14
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
15
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
16
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
17
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
18
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
19
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
20
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
42
21
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
43
22
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
44
23
|
error: string;
|
|
@@ -48,8 +27,10 @@ export declare class SignUpComponent {
|
|
|
48
27
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
49
28
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
50
29
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
51
|
-
validationErrors:
|
|
30
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
52
31
|
};
|
|
53
32
|
onInput(event: Event): void;
|
|
54
33
|
onSubmit(event: Event): void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SignUpComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignUpComponent, "amplify-sign-up", never, {}, {}, never, never>;
|
|
55
36
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { AuthenticatorService } from '../../../../services/authenticator.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class VerifyUserComponent implements OnInit {
|
|
4
5
|
authenticator: AuthenticatorService;
|
|
5
6
|
dataAttr: string;
|
|
@@ -11,40 +12,18 @@ export declare class VerifyUserComponent implements OnInit {
|
|
|
11
12
|
constructor(authenticator: AuthenticatorService);
|
|
12
13
|
ngOnInit(): void;
|
|
13
14
|
get context(): {
|
|
14
|
-
$implicit:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
27
|
-
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
28
|
-
error: string;
|
|
29
|
-
hasValidationErrors: boolean;
|
|
30
|
-
isPending: boolean;
|
|
31
|
-
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
32
|
-
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
33
|
-
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
34
|
-
user: import("@aws-amplify/ui").AmplifyUser;
|
|
35
|
-
validationErrors: Record<string, string | string[]>;
|
|
36
|
-
};
|
|
37
|
-
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
38
|
-
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
39
|
-
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
40
|
-
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
41
|
-
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
42
|
-
updateBlur: (data?: Record<string | number | symbol, any>) => void;
|
|
43
|
-
toFederatedSignIn: (data?: Record<string | number | symbol, any>) => void;
|
|
44
|
-
toResetPassword: (data?: Record<string | number | symbol, any>) => void;
|
|
45
|
-
toSignIn: (data?: Record<string | number | symbol, any>) => void;
|
|
46
|
-
toSignUp: (data?: Record<string | number | symbol, any>) => void;
|
|
47
|
-
skipVerification: (data?: Record<string | number | symbol, any>) => void;
|
|
15
|
+
$implicit: import("@aws-amplify/ui").AuthenticatorServiceFacade;
|
|
16
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
17
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
18
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
19
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
20
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
21
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
22
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
23
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
24
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
25
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
26
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
48
27
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
49
28
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
50
29
|
error: string;
|
|
@@ -54,9 +33,11 @@ export declare class VerifyUserComponent implements OnInit {
|
|
|
54
33
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
55
34
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
56
35
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
57
|
-
validationErrors:
|
|
36
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
58
37
|
};
|
|
59
38
|
getLabelForAttr(authAttr: string): string;
|
|
60
39
|
onInput(event: Event): void;
|
|
61
40
|
onSubmit(event: Event): void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VerifyUserComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VerifyUserComponent, "amplify-verify-user", never, { "headerText": "headerText"; }, {}, never, never>;
|
|
62
43
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ButtonComponent implements OnInit {
|
|
3
4
|
type: 'submit' | 'button';
|
|
4
5
|
fullWidth: boolean | string;
|
|
@@ -14,4 +15,6 @@ export declare class ButtonComponent implements OnInit {
|
|
|
14
15
|
get getDisabled(): string;
|
|
15
16
|
get classNames(): string;
|
|
16
17
|
ngOnInit(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "button[amplify-button]", never, { "type": "type"; "fullWidth": "fullWidth"; "isDisabled": "isDisabled"; "size": "size"; "variation": "variation"; "fontWeight": "fontWeight"; }, {}, never, ["*"]>;
|
|
17
20
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class CheckboxComponent implements OnInit {
|
|
3
4
|
defaultChecked: boolean;
|
|
4
5
|
errorMessage: string;
|
|
@@ -9,4 +10,6 @@ export declare class CheckboxComponent implements OnInit {
|
|
|
9
10
|
isChecked: boolean;
|
|
10
11
|
ngOnInit(): void;
|
|
11
12
|
handleClick(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "amplify-checkbox", never, { "defaultChecked": "defaultChecked"; "errorMessage": "errorMessage"; "hasError": "hasError"; "label": "label"; "name": "name"; "value": "value"; }, {}, never, ["*"]>;
|
|
12
15
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class ErrorComponent {
|
|
2
3
|
isVisible: boolean;
|
|
3
4
|
dismissAriaLabel: string;
|
|
4
5
|
close(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "amplify-error", never, {}, {}, never, ["*"]>;
|
|
5
8
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class PasswordFieldComponent {
|
|
3
4
|
autocomplete: string;
|
|
4
5
|
disabled: boolean;
|
|
@@ -16,4 +17,6 @@ export declare class PasswordFieldComponent {
|
|
|
16
17
|
showPassword: boolean;
|
|
17
18
|
showPasswordButtonlabel: string;
|
|
18
19
|
togglePasswordText(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PasswordFieldComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PasswordFieldComponent, "amplify-password-field", never, { "autocomplete": "autocomplete"; "disabled": "disabled"; "fieldId": "fieldId"; "initialValue": "initialValue"; "label": "label"; "name": "name"; "placeholder": "placeholder"; "required": "required"; "labelHidden": "labelHidden"; "hasError": "hasError"; "describedBy": "describedBy"; }, { "setBlur": "setBlur"; }, never, never>;
|
|
19
22
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class PhoneNumberFieldComponent implements OnInit {
|
|
3
4
|
autocomplete: string;
|
|
4
5
|
disabled: boolean;
|
|
@@ -18,4 +19,6 @@ export declare class PhoneNumberFieldComponent implements OnInit {
|
|
|
18
19
|
display: string;
|
|
19
20
|
countryDialCodesValues: Array<string>;
|
|
20
21
|
ngOnInit(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneNumberFieldComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneNumberFieldComponent, "amplify-phone-number-field", never, { "autocomplete": "autocomplete"; "disabled": "disabled"; "defaultCountryCode": "defaultCountryCode"; "selectFieldId": "selectFieldId"; "textFieldId": "textFieldId"; "initialValue": "initialValue"; "label": "label"; "name": "name"; "placeholder": "placeholder"; "required": "required"; "type": "type"; "labelHidden": "labelHidden"; "dialCodeList": "dialCodeList"; "hasError": "hasError"; "describedBy": "describedBy"; }, {}, never, never>;
|
|
21
24
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class SelectComponent {
|
|
2
3
|
items: string[];
|
|
3
4
|
name: string;
|
|
4
5
|
label: string;
|
|
5
6
|
id: string;
|
|
6
7
|
defaultValue: string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "amplify-form-select", never, { "items": "items"; "name": "name"; "label": "label"; "id": "id"; "defaultValue": "defaultValue"; }, {}, never, never>;
|
|
7
10
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class TabItemComponent {
|
|
2
3
|
title: string;
|
|
3
4
|
active: boolean;
|
|
@@ -5,4 +6,6 @@ export declare class TabItemComponent {
|
|
|
5
6
|
labelledById: string;
|
|
6
7
|
tabIndex: number;
|
|
7
8
|
display: string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabItemComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabItemComponent, "amplify-tab-item", never, { "title": "title"; "active": "active"; "id": "id"; "labelledById": "labelledById"; "tabIndex": "tabIndex"; }, {}, never, ["*"]>;
|
|
8
11
|
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { AfterContentInit, QueryList, EventEmitter } from '@angular/core';
|
|
2
2
|
import { TabItemComponent } from '../tab-item/tab-item.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class TabsComponent implements AfterContentInit {
|
|
4
5
|
tabs: QueryList<TabItemComponent>;
|
|
5
6
|
tabChange: EventEmitter<any>;
|
|
6
7
|
ngAfterContentInit(): void;
|
|
7
8
|
selectTab(tab: TabItemComponent): void;
|
|
8
9
|
handleTabClick(tab: TabItemComponent): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "amplify-tabs", never, {}, { "tabChange": "tabChange"; }, ["tabs"], ["*"]>;
|
|
9
12
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class TextFieldComponent {
|
|
2
3
|
autocomplete: string;
|
|
3
4
|
disabled: boolean;
|
|
@@ -12,4 +13,6 @@ export declare class TextFieldComponent {
|
|
|
12
13
|
hasError: boolean;
|
|
13
14
|
describedBy: string;
|
|
14
15
|
display: string;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextFieldComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextFieldComponent, "amplify-text-field", never, { "autocomplete": "autocomplete"; "disabled": "disabled"; "fieldId": "fieldId"; "initialValue": "initialValue"; "label": "label"; "name": "name"; "placeholder": "placeholder"; "required": "required"; "type": "type"; "labelHidden": "labelHidden"; "hasError": "hasError"; "describedBy": "describedBy"; }, {}, never, never>;
|
|
15
18
|
}
|
|
@@ -2,13 +2,13 @@ import { OnDestroy } from '@angular/core';
|
|
|
2
2
|
import { AuthContext, AuthEvent, AuthInterpreter, AuthMachineState } from '@aws-amplify/ui';
|
|
3
3
|
import { Event, Subscription } from 'xstate';
|
|
4
4
|
import { AuthSubscriptionCallback } from '../common';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* AuthenticatorService provides access to the authenticator state and context.
|
|
7
8
|
*/
|
|
8
9
|
export declare class AuthenticatorService implements OnDestroy {
|
|
9
10
|
private _authState;
|
|
10
11
|
private _authService;
|
|
11
|
-
private _sendEventAliases;
|
|
12
12
|
private _machineSubscription;
|
|
13
13
|
private _facade;
|
|
14
14
|
constructor();
|
|
@@ -22,25 +22,25 @@ export declare class AuthenticatorService implements OnDestroy {
|
|
|
22
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
|
-
get validationErrors():
|
|
25
|
+
get validationErrors(): import("@aws-amplify/ui").ValidationError;
|
|
26
26
|
get codeDeliveryDetails(): import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
27
27
|
/**
|
|
28
28
|
* Service facades
|
|
29
29
|
*/
|
|
30
|
-
get initializeMachine(): (data?:
|
|
31
|
-
get updateForm(): (data?:
|
|
32
|
-
get updateBlur(): (data?:
|
|
33
|
-
get resendCode(): (data?:
|
|
34
|
-
get signOut(): (data?:
|
|
35
|
-
get submitForm(): (data?:
|
|
30
|
+
get initializeMachine(): (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
31
|
+
get updateForm(): (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
32
|
+
get updateBlur(): (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
33
|
+
get resendCode(): (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
34
|
+
get signOut(): (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
35
|
+
get submitForm(): (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
36
36
|
/**
|
|
37
37
|
* Transition facades
|
|
38
38
|
*/
|
|
39
|
-
get toFederatedSignIn(): (data?:
|
|
40
|
-
get toResetPassword(): (data?:
|
|
41
|
-
get toSignIn(): (data?:
|
|
42
|
-
get toSignUp(): (data?:
|
|
43
|
-
get skipVerification(): (data?:
|
|
39
|
+
get toFederatedSignIn(): (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
40
|
+
get toResetPassword(): (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
41
|
+
get toSignIn(): (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
42
|
+
get toSignUp(): (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
43
|
+
get skipVerification(): (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
44
44
|
/**
|
|
45
45
|
* Internal utility functions
|
|
46
46
|
*/
|
|
@@ -52,40 +52,18 @@ export declare class AuthenticatorService implements OnDestroy {
|
|
|
52
52
|
get context(): AuthContext;
|
|
53
53
|
/** @deprecated For internal use only */
|
|
54
54
|
get slotContext(): {
|
|
55
|
-
$implicit:
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
68
|
-
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
69
|
-
error: string;
|
|
70
|
-
hasValidationErrors: boolean;
|
|
71
|
-
isPending: boolean;
|
|
72
|
-
route: import("@aws-amplify/ui").AuthenticatorRoute;
|
|
73
|
-
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
74
|
-
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
75
|
-
user: import("@aws-amplify/ui").AmplifyUser;
|
|
76
|
-
validationErrors: Record<string, string | string[]>;
|
|
77
|
-
};
|
|
78
|
-
signOut: (data?: Record<string | number | symbol, any>) => void;
|
|
79
|
-
initializeMachine: (data?: Record<string | number | symbol, any>) => void;
|
|
80
|
-
resendCode: (data?: Record<string | number | symbol, any>) => void;
|
|
81
|
-
submitForm: (data?: Record<string | number | symbol, any>) => void;
|
|
82
|
-
updateForm: (data?: Record<string | number | symbol, any>) => void;
|
|
83
|
-
updateBlur: (data?: Record<string | number | symbol, any>) => void;
|
|
84
|
-
toFederatedSignIn: (data?: Record<string | number | symbol, any>) => void;
|
|
85
|
-
toResetPassword: (data?: Record<string | number | symbol, any>) => void;
|
|
86
|
-
toSignIn: (data?: Record<string | number | symbol, any>) => void;
|
|
87
|
-
toSignUp: (data?: Record<string | number | symbol, any>) => void;
|
|
88
|
-
skipVerification: (data?: Record<string | number | symbol, any>) => void;
|
|
55
|
+
$implicit: import("@aws-amplify/ui").AuthenticatorServiceFacade;
|
|
56
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
57
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
58
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
59
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
60
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
61
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
62
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
63
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
64
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
65
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
66
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
89
67
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
90
68
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
91
69
|
error: string;
|
|
@@ -95,10 +73,11 @@ export declare class AuthenticatorService implements OnDestroy {
|
|
|
95
73
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
96
74
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
97
75
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
98
|
-
validationErrors:
|
|
76
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
99
77
|
};
|
|
100
|
-
/** @deprecated For internal use only */
|
|
101
78
|
subscribe(callback: AuthSubscriptionCallback): Subscription;
|
|
102
79
|
/** @deprecated For internal use only */
|
|
103
80
|
send(event: Event<AuthEvent>): void;
|
|
81
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticatorService, never>;
|
|
82
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthenticatorService>;
|
|
104
83
|
}
|