@aws-amplify/ui-angular 3.2.14 → 3.2.16
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/bundles/aws-amplify-ui-angular.umd.js +154 -96
- package/bundles/aws-amplify-ui-angular.umd.js.map +1 -1
- package/esm2015/lib/components/authenticator/authenticator.module.js +4 -4
- package/esm2015/lib/components/authenticator/components/authenticator/authenticator.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/base-form-fields/base-form-fields.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/federated-sign-in/federated-sign-in.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/federated-sign-in-button/federated-sign-in-button.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/force-new-password/force-new-password.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/form-field/form-field.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/reset-password/reset-password.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/setup-totp/setup-totp.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/sign-in/sign-in.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/sign-up/sign-up-form-fields/sign-up-form-fields.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/sign-up/sign-up.component.js +3 -3
- package/esm2015/lib/components/authenticator/components/verify-user/verify-user.component.js +3 -3
- package/esm2015/lib/primitives/button/button.component.js +3 -3
- package/esm2015/lib/primitives/checkbox/checkbox.component.js +3 -3
- package/esm2015/lib/primitives/error/error.component.js +3 -3
- package/esm2015/lib/primitives/password-field/password-field.component.js +3 -3
- package/esm2015/lib/primitives/phone-number-field/phone-number-field.component.js +3 -3
- package/esm2015/lib/primitives/select/select.component.js +3 -3
- package/esm2015/lib/primitives/tab-item/tab-item.component.js +3 -3
- package/esm2015/lib/primitives/tabs/tabs.component.js +3 -3
- package/esm2015/lib/primitives/text-field/text-field.component.js +3 -3
- package/esm2015/lib/services/authenticator.service.js +3 -3
- package/esm2015/lib/services/custom-components.service.js +3 -3
- package/esm2015/lib/utilities/amplify-slot/amplify-slot.component.js +3 -3
- package/esm2015/lib/utilities/amplify-slot/amplify-slot.directive.js +3 -3
- package/esm2015/version.js +2 -2
- package/fesm2015/aws-amplify-ui-angular.js +95 -95
- package/fesm2015/aws-amplify-ui-angular.js.map +1 -1
- package/lib/components/authenticator/components/authenticator/authenticator.component.d.ts +1 -1
- package/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.d.ts +1 -1
- package/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.d.ts +1 -1
- package/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.d.ts +1 -1
- package/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.d.ts +1 -1
- package/lib/components/authenticator/components/force-new-password/force-new-password.component.d.ts +1 -1
- package/lib/components/authenticator/components/reset-password/reset-password.component.d.ts +1 -1
- package/lib/components/authenticator/components/setup-totp/setup-totp.component.d.ts +1 -1
- package/lib/components/authenticator/components/sign-in/sign-in.component.d.ts +1 -1
- package/lib/components/authenticator/components/sign-up/sign-up.component.d.ts +1 -1
- package/lib/components/authenticator/components/verify-user/verify-user.component.d.ts +1 -1
- package/lib/services/authenticator.service.d.ts +2 -2
- package/package.json +2 -2
- package/version.d.ts +1 -1
|
@@ -45,7 +45,7 @@ export declare class AuthenticatorComponent implements OnInit, AfterContentInit,
|
|
|
45
45
|
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
46
46
|
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
47
47
|
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
48
|
-
authStatus: "
|
|
48
|
+
authStatus: import("@aws-amplify/ui").AuthStatus;
|
|
49
49
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
50
50
|
error: string;
|
|
51
51
|
hasValidationErrors: boolean;
|
|
@@ -23,7 +23,7 @@ export declare class ConfirmResetPasswordComponent {
|
|
|
23
23
|
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
24
24
|
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
25
25
|
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
26
|
-
authStatus: "
|
|
26
|
+
authStatus: import("@aws-amplify/ui").AuthStatus;
|
|
27
27
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
28
28
|
error: string;
|
|
29
29
|
hasValidationErrors: boolean;
|
package/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export declare class ConfirmSignInComponent implements OnInit {
|
|
|
24
24
|
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
25
25
|
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
26
26
|
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
27
|
-
authStatus: "
|
|
27
|
+
authStatus: import("@aws-amplify/ui").AuthStatus;
|
|
28
28
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
29
29
|
error: string;
|
|
30
30
|
hasValidationErrors: boolean;
|
package/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export declare class ConfirmSignUpComponent {
|
|
|
21
21
|
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
22
22
|
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
23
23
|
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
24
|
-
authStatus: "
|
|
24
|
+
authStatus: import("@aws-amplify/ui").AuthStatus;
|
|
25
25
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
26
26
|
error: string;
|
|
27
27
|
hasValidationErrors: boolean;
|
|
@@ -22,7 +22,7 @@ export declare class ConfirmVerifyUserComponent {
|
|
|
22
22
|
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
23
23
|
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
24
24
|
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
25
|
-
authStatus: "
|
|
25
|
+
authStatus: import("@aws-amplify/ui").AuthStatus;
|
|
26
26
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
27
27
|
error: string;
|
|
28
28
|
hasValidationErrors: boolean;
|
package/lib/components/authenticator/components/force-new-password/force-new-password.component.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export declare class ForceNewPasswordComponent {
|
|
|
20
20
|
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
21
21
|
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
22
22
|
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
23
|
-
authStatus: "
|
|
23
|
+
authStatus: import("@aws-amplify/ui").AuthStatus;
|
|
24
24
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
25
25
|
error: string;
|
|
26
26
|
hasValidationErrors: boolean;
|
package/lib/components/authenticator/components/reset-password/reset-password.component.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export declare class ResetPasswordComponent {
|
|
|
22
22
|
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
23
23
|
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
24
24
|
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
25
|
-
authStatus: "
|
|
25
|
+
authStatus: import("@aws-amplify/ui").AuthStatus;
|
|
26
26
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
27
27
|
error: string;
|
|
28
28
|
hasValidationErrors: boolean;
|
|
@@ -27,7 +27,7 @@ export declare class SetupTotpComponent implements OnInit {
|
|
|
27
27
|
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
28
28
|
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
29
29
|
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
30
|
-
authStatus: "
|
|
30
|
+
authStatus: import("@aws-amplify/ui").AuthStatus;
|
|
31
31
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
32
32
|
error: string;
|
|
33
33
|
hasValidationErrors: boolean;
|
|
@@ -21,7 +21,7 @@ export declare class SignInComponent {
|
|
|
21
21
|
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
22
22
|
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
23
23
|
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
24
|
-
authStatus: "
|
|
24
|
+
authStatus: import("@aws-amplify/ui").AuthStatus;
|
|
25
25
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
26
26
|
error: string;
|
|
27
27
|
hasValidationErrors: boolean;
|
|
@@ -18,7 +18,7 @@ export declare class SignUpComponent {
|
|
|
18
18
|
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
19
19
|
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
20
20
|
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
21
|
-
authStatus: "
|
|
21
|
+
authStatus: import("@aws-amplify/ui").AuthStatus;
|
|
22
22
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
23
23
|
error: string;
|
|
24
24
|
hasValidationErrors: boolean;
|
|
@@ -24,7 +24,7 @@ export declare class VerifyUserComponent implements OnInit {
|
|
|
24
24
|
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
25
25
|
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
26
26
|
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
27
|
-
authStatus: "
|
|
27
|
+
authStatus: import("@aws-amplify/ui").AuthStatus;
|
|
28
28
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
29
29
|
error: string;
|
|
30
30
|
hasValidationErrors: boolean;
|
|
@@ -20,7 +20,7 @@ export declare class AuthenticatorService implements OnDestroy {
|
|
|
20
20
|
get hasValidationErrors(): boolean;
|
|
21
21
|
get isPending(): boolean;
|
|
22
22
|
get route(): import("@aws-amplify/ui").AuthenticatorRoute;
|
|
23
|
-
get authStatus(): "
|
|
23
|
+
get authStatus(): import("@aws-amplify/ui").AuthStatus;
|
|
24
24
|
get user(): import("@aws-amplify/ui").AmplifyUser;
|
|
25
25
|
get validationErrors(): import("@aws-amplify/ui").ValidationError;
|
|
26
26
|
get codeDeliveryDetails(): import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
@@ -65,7 +65,7 @@ export declare class AuthenticatorService implements OnDestroy {
|
|
|
65
65
|
toSignIn: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
66
66
|
toSignUp: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
67
67
|
skipVerification: (data?: import("@aws-amplify/ui").AuthEventData) => void;
|
|
68
|
-
authStatus: "
|
|
68
|
+
authStatus: import("@aws-amplify/ui").AuthStatus;
|
|
69
69
|
codeDeliveryDetails: import("@aws-amplify/ui").CodeDeliveryDetails;
|
|
70
70
|
error: string;
|
|
71
71
|
hasValidationErrors: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/ui-angular",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.16",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"aws-amplify": ">= 5.0.1"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@aws-amplify/ui": "5.6.
|
|
14
|
+
"@aws-amplify/ui": "5.6.2",
|
|
15
15
|
"classnames": "2.3.1",
|
|
16
16
|
"nanoid": "3.1.31",
|
|
17
17
|
"qrcode": "1.5.0",
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "3.2.
|
|
1
|
+
export declare const VERSION = "3.2.16";
|