@aws-amplify/ui-angular 2.4.25 → 3.0.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 +1560 -1473
- package/bundles/aws-amplify-ui-angular.umd.js.map +1 -1
- package/esm2015/aws-amplify-ui-angular.js +1 -28
- 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 +9 -8
- 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 +1035 -928
- package/fesm2015/aws-amplify-ui-angular.js.map +1 -1
- package/lib/components/authenticator/authenticator.module.d.ts +33 -0
- package/lib/components/authenticator/components/authenticator/authenticator.component.d.ts +27 -24
- 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 +28 -30
- package/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.d.ts +27 -24
- package/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.d.ts +27 -29
- package/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.d.ts +27 -24
- 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 +27 -24
- 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 +27 -24
- package/lib/components/authenticator/components/setup-totp/setup-totp.component.d.ts +27 -24
- package/lib/components/authenticator/components/sign-in/sign-in.component.d.ts +27 -24
- 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 +27 -24
- package/lib/components/authenticator/components/verify-user/verify-user.component.d.ts +27 -24
- 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 +39 -36
- 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
|
@@ -1,2 +1,35 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "../../utilities/amplify-slot/amplify-slot.component";
|
|
3
|
+
import * as i2 from "../../utilities/amplify-slot/amplify-slot.directive";
|
|
4
|
+
import * as i3 from "./components/authenticator/authenticator.component";
|
|
5
|
+
import * as i4 from "./components/base-form-fields/base-form-fields.component";
|
|
6
|
+
import * as i5 from "../../primitives/button/button.component";
|
|
7
|
+
import * as i6 from "../../primitives/checkbox/checkbox.component";
|
|
8
|
+
import * as i7 from "./components/confirm-reset-password/amplify-confirm-reset-password.component";
|
|
9
|
+
import * as i8 from "./components/confirm-sign-in/confirm-sign-in.component";
|
|
10
|
+
import * as i9 from "./components/confirm-sign-up/confirm-sign-up.component";
|
|
11
|
+
import * as i10 from "./components/confirm-verify-user/amplify-confirm-verify-user.component";
|
|
12
|
+
import * as i11 from "../../primitives/error/error.component";
|
|
13
|
+
import * as i12 from "./components/federated-sign-in-button/federated-sign-in-button.component";
|
|
14
|
+
import * as i13 from "./components/federated-sign-in/federated-sign-in.component";
|
|
15
|
+
import * as i14 from "./components/force-new-password/force-new-password.component";
|
|
16
|
+
import * as i15 from "./components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component";
|
|
17
|
+
import * as i16 from "./components/form-field/form-field.component";
|
|
18
|
+
import * as i17 from "../../primitives/password-field/password-field.component";
|
|
19
|
+
import * as i18 from "../../primitives/phone-number-field/phone-number-field.component";
|
|
20
|
+
import * as i19 from "./components/reset-password/reset-password.component";
|
|
21
|
+
import * as i20 from "../../primitives/select/select.component";
|
|
22
|
+
import * as i21 from "./components/setup-totp/setup-totp.component";
|
|
23
|
+
import * as i22 from "./components/sign-in/sign-in.component";
|
|
24
|
+
import * as i23 from "./components/sign-up/sign-up.component";
|
|
25
|
+
import * as i24 from "./components/sign-up/sign-up-form-fields/sign-up-form-fields.component";
|
|
26
|
+
import * as i25 from "../../primitives/tab-item/tab-item.component";
|
|
27
|
+
import * as i26 from "../../primitives/tabs/tabs.component";
|
|
28
|
+
import * as i27 from "../../primitives/text-field/text-field.component";
|
|
29
|
+
import * as i28 from "./components/verify-user/verify-user.component";
|
|
30
|
+
import * as i29 from "@angular/common";
|
|
1
31
|
export declare class AmplifyAuthenticatorModule {
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AmplifyAuthenticatorModule, never>;
|
|
33
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AmplifyAuthenticatorModule, [typeof i1.AmplifySlotComponent, typeof i2.AmplifySlotDirective, typeof i3.AuthenticatorComponent, typeof i4.BaseFormFieldsComponent, typeof i5.ButtonComponent, typeof i6.CheckboxComponent, typeof i7.ConfirmResetPasswordComponent, typeof i8.ConfirmSignInComponent, typeof i9.ConfirmSignUpComponent, typeof i10.ConfirmVerifyUserComponent, typeof i11.ErrorComponent, typeof i12.FederatedSignInButtonComponent, typeof i13.FederatedSignInComponent, typeof i14.ForceNewPasswordComponent, typeof i15.ForceNewPasswordFormFieldsComponent, typeof i16.FormFieldComponent, typeof i17.PasswordFieldComponent, typeof i18.PhoneNumberFieldComponent, typeof i19.ResetPasswordComponent, typeof i20.SelectComponent, typeof i21.SetupTotpComponent, typeof i22.SignInComponent, typeof i23.SignUpComponent, typeof i24.SignUpFormFieldsComponent, typeof i25.TabItemComponent, typeof i26.TabsComponent, typeof i27.TextFieldComponent, typeof i28.VerifyUserComponent], [typeof i29.CommonModule], [typeof i2.AmplifySlotDirective, typeof i3.AuthenticatorComponent, typeof i6.CheckboxComponent, typeof i24.SignUpFormFieldsComponent, typeof i15.ForceNewPasswordFormFieldsComponent, typeof i27.TextFieldComponent]>;
|
|
34
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AmplifyAuthenticatorModule>;
|
|
2
35
|
}
|
|
@@ -2,6 +2,7 @@ import { AfterContentInit, ChangeDetectorRef, OnDestroy, OnInit } from '@angular
|
|
|
2
2
|
import { AuthenticatorMachineOptions, SocialProvider } from '@aws-amplify/ui';
|
|
3
3
|
import { CustomComponentsService } from '../../../../services/custom-components.service';
|
|
4
4
|
import { AuthenticatorService } from '../../../../services/authenticator.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class AuthenticatorComponent implements OnInit, AfterContentInit, OnDestroy {
|
|
6
7
|
private authenticator;
|
|
7
8
|
private contextService;
|
|
@@ -33,17 +34,17 @@ export declare class AuthenticatorComponent implements OnInit, AfterContentInit,
|
|
|
33
34
|
*/
|
|
34
35
|
get context(): {
|
|
35
36
|
$implicit: {
|
|
36
|
-
signOut: (data?:
|
|
37
|
-
initializeMachine: (data?:
|
|
38
|
-
resendCode: (data?:
|
|
39
|
-
submitForm: (data?:
|
|
40
|
-
updateForm: (data?:
|
|
41
|
-
updateBlur: (data?:
|
|
42
|
-
toFederatedSignIn: (data?:
|
|
43
|
-
toResetPassword: (data?:
|
|
44
|
-
toSignIn: (data?:
|
|
45
|
-
toSignUp: (data?:
|
|
46
|
-
skipVerification: (data?:
|
|
37
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
38
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
39
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
40
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
41
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
42
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
43
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
44
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
45
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
46
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
47
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
47
48
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
48
49
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
49
50
|
error: string;
|
|
@@ -53,19 +54,19 @@ export declare class AuthenticatorComponent implements OnInit, AfterContentInit,
|
|
|
53
54
|
socialProviders: SocialProvider[];
|
|
54
55
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
55
56
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
56
|
-
validationErrors:
|
|
57
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
57
58
|
};
|
|
58
|
-
signOut: (data?:
|
|
59
|
-
initializeMachine: (data?:
|
|
60
|
-
resendCode: (data?:
|
|
61
|
-
submitForm: (data?:
|
|
62
|
-
updateForm: (data?:
|
|
63
|
-
updateBlur: (data?:
|
|
64
|
-
toFederatedSignIn: (data?:
|
|
65
|
-
toResetPassword: (data?:
|
|
66
|
-
toSignIn: (data?:
|
|
67
|
-
toSignUp: (data?:
|
|
68
|
-
skipVerification: (data?:
|
|
59
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
60
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
61
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
62
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
63
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
64
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
65
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
66
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
67
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
68
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
69
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
69
70
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
70
71
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
71
72
|
error: string;
|
|
@@ -75,11 +76,13 @@ export declare class AuthenticatorComponent implements OnInit, AfterContentInit,
|
|
|
75
76
|
socialProviders: SocialProvider[];
|
|
76
77
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
77
78
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
78
|
-
validationErrors:
|
|
79
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
79
80
|
};
|
|
80
81
|
get route(): import("@aws-amplify/ui").AuthenticatorRoute;
|
|
81
82
|
onTabChange(): void;
|
|
82
83
|
hasTabs(): boolean;
|
|
83
84
|
hasRouteComponent(): boolean;
|
|
84
85
|
private mapCustomComponents;
|
|
86
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticatorComponent, never>;
|
|
87
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AuthenticatorComponent, "amplify-authenticator", never, { "formFields": "formFields"; "initialState": "initialState"; "loginMechanisms": "loginMechanisms"; "services": "services"; "signUpAttributes": "signUpAttributes"; "socialProviders": "socialProviders"; "variation": "variation"; "hideSignUp": "hideSignUp"; }, {}, ["customComponentQuery"], ["*"]>;
|
|
85
88
|
}
|
package/lib/components/authenticator/components/base-form-fields/base-form-fields.component.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FormFieldComponents, FormFieldsArray } from '@aws-amplify/ui';
|
|
3
3
|
import { AuthenticatorService } from '../../../../services/authenticator.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/**
|
|
5
6
|
* Sorts the given formFields, then renders them in order.
|
|
6
7
|
*/
|
|
@@ -11,5 +12,6 @@ export declare class BaseFormFieldsComponent implements OnInit {
|
|
|
11
12
|
formFields: FormFieldsArray;
|
|
12
13
|
constructor(authenticator: AuthenticatorService);
|
|
13
14
|
ngOnInit(): void;
|
|
14
|
-
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseFormFieldsComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseFormFieldsComponent, "amplify-base-form-fields", never, { "route": "route"; }, {}, never, never>;
|
|
15
17
|
}
|
|
@@ -1,32 +1,28 @@
|
|
|
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 ConfirmResetPasswordComponent {
|
|
4
5
|
authenticator: AuthenticatorService;
|
|
5
6
|
dataAttr: string;
|
|
6
7
|
headerText: string;
|
|
8
|
+
sortedFormFields: FormFieldsArray;
|
|
7
9
|
backToSignInText: string;
|
|
8
10
|
resendCodeText: string;
|
|
9
|
-
sortedFormFields: FormFieldsArray;
|
|
10
|
-
/**
|
|
11
|
-
* Support backwards compatibility for erroneous 'Send Code' text
|
|
12
|
-
* See https://github.com/aws-amplify/amplify-ui/issues/1784
|
|
13
|
-
* TODO: Remove support for 'Send Code' translation in next Major release
|
|
14
|
-
*/
|
|
15
11
|
submitText: string;
|
|
16
12
|
constructor(authenticator: AuthenticatorService);
|
|
17
13
|
get context(): {
|
|
18
14
|
$implicit: {
|
|
19
|
-
signOut: (data?:
|
|
20
|
-
initializeMachine: (data?:
|
|
21
|
-
resendCode: (data?:
|
|
22
|
-
submitForm: (data?:
|
|
23
|
-
updateForm: (data?:
|
|
24
|
-
updateBlur: (data?:
|
|
25
|
-
toFederatedSignIn: (data?:
|
|
26
|
-
toResetPassword: (data?:
|
|
27
|
-
toSignIn: (data?:
|
|
28
|
-
toSignUp: (data?:
|
|
29
|
-
skipVerification: (data?:
|
|
15
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
16
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
17
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
18
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
19
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
20
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
21
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
22
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
23
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
24
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
25
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
30
26
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
31
27
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
32
28
|
error: string;
|
|
@@ -36,19 +32,19 @@ export declare class ConfirmResetPasswordComponent {
|
|
|
36
32
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
37
33
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
38
34
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
39
|
-
validationErrors:
|
|
35
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
40
36
|
};
|
|
41
|
-
signOut: (data?:
|
|
42
|
-
initializeMachine: (data?:
|
|
43
|
-
resendCode: (data?:
|
|
44
|
-
submitForm: (data?:
|
|
45
|
-
updateForm: (data?:
|
|
46
|
-
updateBlur: (data?:
|
|
47
|
-
toFederatedSignIn: (data?:
|
|
48
|
-
toResetPassword: (data?:
|
|
49
|
-
toSignIn: (data?:
|
|
50
|
-
toSignUp: (data?:
|
|
51
|
-
skipVerification: (data?:
|
|
37
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
38
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
39
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
40
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
41
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
42
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
43
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
44
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
45
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
46
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
47
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
52
48
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
53
49
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
54
50
|
error: string;
|
|
@@ -58,8 +54,10 @@ export declare class ConfirmResetPasswordComponent {
|
|
|
58
54
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
59
55
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
60
56
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
61
|
-
validationErrors:
|
|
57
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
62
58
|
};
|
|
63
59
|
onInput(event: Event): void;
|
|
64
60
|
onSubmit(event: Event): void;
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmResetPasswordComponent, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmResetPasswordComponent, "amplify-confirm-reset-password", never, { "headerText": "headerText"; }, {}, never, never>;
|
|
65
63
|
}
|
package/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.d.ts
CHANGED
|
@@ -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 ConfirmSignInComponent implements OnInit {
|
|
5
6
|
authenticator: AuthenticatorService;
|
|
6
7
|
dataAttr: string;
|
|
@@ -12,17 +13,17 @@ export declare class ConfirmSignInComponent implements OnInit {
|
|
|
12
13
|
ngOnInit(): void;
|
|
13
14
|
get context(): {
|
|
14
15
|
$implicit: {
|
|
15
|
-
signOut: (data?:
|
|
16
|
-
initializeMachine: (data?:
|
|
17
|
-
resendCode: (data?:
|
|
18
|
-
submitForm: (data?:
|
|
19
|
-
updateForm: (data?:
|
|
20
|
-
updateBlur: (data?:
|
|
21
|
-
toFederatedSignIn: (data?:
|
|
22
|
-
toResetPassword: (data?:
|
|
23
|
-
toSignIn: (data?:
|
|
24
|
-
toSignUp: (data?:
|
|
25
|
-
skipVerification: (data?:
|
|
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;
|
|
26
27
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
27
28
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
28
29
|
error: string;
|
|
@@ -32,19 +33,19 @@ export declare class ConfirmSignInComponent implements OnInit {
|
|
|
32
33
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
33
34
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
34
35
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
35
|
-
validationErrors:
|
|
36
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
36
37
|
};
|
|
37
|
-
signOut: (data?:
|
|
38
|
-
initializeMachine: (data?:
|
|
39
|
-
resendCode: (data?:
|
|
40
|
-
submitForm: (data?:
|
|
41
|
-
updateForm: (data?:
|
|
42
|
-
updateBlur: (data?:
|
|
43
|
-
toFederatedSignIn: (data?:
|
|
44
|
-
toResetPassword: (data?:
|
|
45
|
-
toSignIn: (data?:
|
|
46
|
-
toSignUp: (data?:
|
|
47
|
-
skipVerification: (data?:
|
|
38
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
39
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
40
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
41
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
42
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
43
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
44
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
45
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
46
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
47
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
48
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
48
49
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
49
50
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
50
51
|
error: string;
|
|
@@ -54,9 +55,11 @@ export declare class ConfirmSignInComponent implements OnInit {
|
|
|
54
55
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
55
56
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
56
57
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
57
|
-
validationErrors:
|
|
58
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
58
59
|
};
|
|
59
60
|
setHeaderText(): void;
|
|
60
61
|
onInput(event: Event): void;
|
|
61
62
|
onSubmit(event: Event): void;
|
|
63
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmSignInComponent, never>;
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmSignInComponent, "amplify-confirm-sign-in", never, {}, {}, never, never>;
|
|
62
65
|
}
|
package/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.d.ts
CHANGED
|
@@ -1,30 +1,26 @@
|
|
|
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 ConfirmSignUpComponent {
|
|
4
5
|
authenticator: AuthenticatorService;
|
|
5
|
-
headerText: string;
|
|
6
6
|
dataAttr: string;
|
|
7
7
|
resendCodeText: string;
|
|
8
8
|
confirmText: string;
|
|
9
|
-
emailMessage: string;
|
|
10
|
-
textedMessage: string;
|
|
11
|
-
defaultMessage: string;
|
|
12
|
-
minutesMessage: string;
|
|
13
9
|
sortedFormFields: FormFieldsArray;
|
|
14
10
|
constructor(authenticator: AuthenticatorService);
|
|
15
11
|
get context(): {
|
|
16
12
|
$implicit: {
|
|
17
|
-
signOut: (data?:
|
|
18
|
-
initializeMachine: (data?:
|
|
19
|
-
resendCode: (data?:
|
|
20
|
-
submitForm: (data?:
|
|
21
|
-
updateForm: (data?:
|
|
22
|
-
updateBlur: (data?:
|
|
23
|
-
toFederatedSignIn: (data?:
|
|
24
|
-
toResetPassword: (data?:
|
|
25
|
-
toSignIn: (data?:
|
|
26
|
-
toSignUp: (data?:
|
|
27
|
-
skipVerification: (data?:
|
|
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;
|
|
28
24
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
29
25
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
30
26
|
error: string;
|
|
@@ -34,19 +30,19 @@ export declare class ConfirmSignUpComponent {
|
|
|
34
30
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
35
31
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
36
32
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
37
|
-
validationErrors:
|
|
33
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
38
34
|
};
|
|
39
|
-
signOut: (data?:
|
|
40
|
-
initializeMachine: (data?:
|
|
41
|
-
resendCode: (data?:
|
|
42
|
-
submitForm: (data?:
|
|
43
|
-
updateForm: (data?:
|
|
44
|
-
updateBlur: (data?:
|
|
45
|
-
toFederatedSignIn: (data?:
|
|
46
|
-
toResetPassword: (data?:
|
|
47
|
-
toSignIn: (data?:
|
|
48
|
-
toSignUp: (data?:
|
|
49
|
-
skipVerification: (data?:
|
|
35
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
36
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
37
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
38
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
39
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
40
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
41
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
42
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
43
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
44
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
45
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
50
46
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
51
47
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
52
48
|
error: string;
|
|
@@ -56,10 +52,12 @@ export declare class ConfirmSignUpComponent {
|
|
|
56
52
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
57
53
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
58
54
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
59
|
-
validationErrors:
|
|
55
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
60
56
|
};
|
|
61
57
|
get confirmSignUpHeading(): string;
|
|
62
58
|
get subtitleText(): string;
|
|
63
59
|
onInput(event: Event): void;
|
|
64
60
|
onSubmit(event: Event): void;
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmSignUpComponent, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmSignUpComponent, "amplify-confirm-sign-up", never, {}, {}, never, never>;
|
|
65
63
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { FormFieldsArray } from '@aws-amplify/ui';
|
|
2
2
|
import { AuthenticatorService } from '../../../../services/authenticator.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class ConfirmVerifyUserComponent {
|
|
4
5
|
authenticator: AuthenticatorService;
|
|
5
6
|
dataAttr: string;
|
|
@@ -10,17 +11,17 @@ export declare class ConfirmVerifyUserComponent {
|
|
|
10
11
|
constructor(authenticator: AuthenticatorService);
|
|
11
12
|
get context(): {
|
|
12
13
|
$implicit: {
|
|
13
|
-
signOut: (data?:
|
|
14
|
-
initializeMachine: (data?:
|
|
15
|
-
resendCode: (data?:
|
|
16
|
-
submitForm: (data?:
|
|
17
|
-
updateForm: (data?:
|
|
18
|
-
updateBlur: (data?:
|
|
19
|
-
toFederatedSignIn: (data?:
|
|
20
|
-
toResetPassword: (data?:
|
|
21
|
-
toSignIn: (data?:
|
|
22
|
-
toSignUp: (data?:
|
|
23
|
-
skipVerification: (data?:
|
|
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;
|
|
24
25
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
25
26
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
26
27
|
error: string;
|
|
@@ -30,19 +31,19 @@ export declare class ConfirmVerifyUserComponent {
|
|
|
30
31
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
31
32
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
32
33
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
33
|
-
validationErrors:
|
|
34
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
34
35
|
};
|
|
35
|
-
signOut: (data?:
|
|
36
|
-
initializeMachine: (data?:
|
|
37
|
-
resendCode: (data?:
|
|
38
|
-
submitForm: (data?:
|
|
39
|
-
updateForm: (data?:
|
|
40
|
-
updateBlur: (data?:
|
|
41
|
-
toFederatedSignIn: (data?:
|
|
42
|
-
toResetPassword: (data?:
|
|
43
|
-
toSignIn: (data?:
|
|
44
|
-
toSignUp: (data?:
|
|
45
|
-
skipVerification: (data?:
|
|
36
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
37
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
38
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
39
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
40
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
41
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
42
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
43
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
44
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
45
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
46
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
46
47
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
47
48
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
48
49
|
error: string;
|
|
@@ -52,8 +53,10 @@ export declare class ConfirmVerifyUserComponent {
|
|
|
52
53
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
53
54
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
54
55
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
55
|
-
validationErrors:
|
|
56
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
56
57
|
};
|
|
57
58
|
onInput(event: Event): void;
|
|
58
59
|
onSubmit(event: Event): void;
|
|
60
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmVerifyUserComponent, never>;
|
|
61
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmVerifyUserComponent, "amplify-confirm-verify-user", never, { "headerText": "headerText"; }, {}, never, never>;
|
|
59
62
|
}
|
package/lib/components/authenticator/components/federated-sign-in/federated-sign-in.component.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FederatedIdentityProviders } from '@aws-amplify/ui';
|
|
3
3
|
import { AuthenticatorService } from '../../../../services/authenticator.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class FederatedSignInComponent implements OnInit {
|
|
5
6
|
private authenticator;
|
|
6
7
|
FederatedProviders: typeof FederatedIdentityProviders;
|
|
@@ -16,4 +17,6 @@ export declare class FederatedSignInComponent implements OnInit {
|
|
|
16
17
|
constructor(authenticator: AuthenticatorService);
|
|
17
18
|
ngOnInit(): void;
|
|
18
19
|
private setFederatedTexts;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FederatedSignInComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FederatedSignInComponent, "amplify-federated-sign-in", never, {}, {}, never, never>;
|
|
19
22
|
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { FederatedIdentityProviders } from '@aws-amplify/ui';
|
|
2
2
|
import { AuthenticatorService } from '../../../../services/authenticator.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class FederatedSignInButtonComponent {
|
|
4
5
|
private authenticator;
|
|
5
6
|
provider: FederatedIdentityProviders;
|
|
6
7
|
text: string;
|
|
7
8
|
constructor(authenticator: AuthenticatorService);
|
|
8
9
|
onClick: () => void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FederatedSignInButtonComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FederatedSignInButtonComponent, "amplify-federated-sign-in-button", never, { "provider": "provider"; "text": "text"; }, {}, never, ["*"]>;
|
|
9
12
|
}
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class ForceNewPasswordFormFieldsComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ForceNewPasswordFormFieldsComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ForceNewPasswordFormFieldsComponent, "amplify-force-new-password-form-fields", never, {}, {}, never, never>;
|
|
2
5
|
}
|
package/lib/components/authenticator/components/force-new-password/force-new-password.component.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AuthenticatorService } from '../../../../services/authenticator.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ForceNewPasswordComponent {
|
|
3
4
|
authenticator: AuthenticatorService;
|
|
4
5
|
dataAttr: string;
|
|
@@ -8,17 +9,17 @@ export declare class ForceNewPasswordComponent {
|
|
|
8
9
|
constructor(authenticator: AuthenticatorService);
|
|
9
10
|
get context(): {
|
|
10
11
|
$implicit: {
|
|
11
|
-
signOut: (data?:
|
|
12
|
-
initializeMachine: (data?:
|
|
13
|
-
resendCode: (data?:
|
|
14
|
-
submitForm: (data?:
|
|
15
|
-
updateForm: (data?:
|
|
16
|
-
updateBlur: (data?:
|
|
17
|
-
toFederatedSignIn: (data?:
|
|
18
|
-
toResetPassword: (data?:
|
|
19
|
-
toSignIn: (data?:
|
|
20
|
-
toSignUp: (data?:
|
|
21
|
-
skipVerification: (data?:
|
|
12
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
13
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
14
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
15
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
16
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
17
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
18
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
19
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
20
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
21
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
22
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
22
23
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
23
24
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
24
25
|
error: string;
|
|
@@ -28,19 +29,19 @@ export declare class ForceNewPasswordComponent {
|
|
|
28
29
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
29
30
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
30
31
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
31
|
-
validationErrors:
|
|
32
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
32
33
|
};
|
|
33
|
-
signOut: (data?:
|
|
34
|
-
initializeMachine: (data?:
|
|
35
|
-
resendCode: (data?:
|
|
36
|
-
submitForm: (data?:
|
|
37
|
-
updateForm: (data?:
|
|
38
|
-
updateBlur: (data?:
|
|
39
|
-
toFederatedSignIn: (data?:
|
|
40
|
-
toResetPassword: (data?:
|
|
41
|
-
toSignIn: (data?:
|
|
42
|
-
toSignUp: (data?:
|
|
43
|
-
skipVerification: (data?:
|
|
34
|
+
signOut: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
35
|
+
initializeMachine: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
36
|
+
resendCode: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
37
|
+
submitForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
38
|
+
updateForm: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
39
|
+
updateBlur: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
40
|
+
toFederatedSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
41
|
+
toResetPassword: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
42
|
+
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
43
|
+
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
44
|
+
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
44
45
|
authStatus: "authenticated" | "configuring" | "unauthenticated";
|
|
45
46
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
46
47
|
error: string;
|
|
@@ -50,8 +51,10 @@ export declare class ForceNewPasswordComponent {
|
|
|
50
51
|
socialProviders: import("@aws-amplify/ui").SocialProvider[];
|
|
51
52
|
unverifiedContactMethods: import("@aws-amplify/ui").UnverifiedContactMethods;
|
|
52
53
|
user: import("@aws-amplify/ui").AmplifyUser;
|
|
53
|
-
validationErrors:
|
|
54
|
+
validationErrors: import("@aws-amplify/ui").ValidationError;
|
|
54
55
|
};
|
|
55
56
|
onInput(event: Event): void;
|
|
56
57
|
onSubmit(event: Event): void;
|
|
58
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ForceNewPasswordComponent, never>;
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ForceNewPasswordComponent, "amplify-force-new-password", never, { "headerText": "headerText"; }, {}, never, never>;
|
|
57
60
|
}
|