@aws-amplify/ui-react-native 2.0.2 → 2.0.4
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/dist/Authenticator/Authenticator.d.ts +1 -1
- package/dist/Authenticator/Defaults/types.d.ts +3 -3
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/lib/version.js +1 -1
- package/package.json +4 -4
- package/src/Authenticator/Defaults/types.ts +3 -3
- package/src/version.ts +1 -1
|
@@ -93,7 +93,7 @@ declare namespace Authenticator {
|
|
|
93
93
|
} & import("@aws-amplify/ui-react-core/dist/types/Authenticator/hooks").CommonRouteProps & import("@aws-amplify/ui-react-core/dist/types/Authenticator/hooks").ValidationProps & {
|
|
94
94
|
fields: import("./hooks").TextFieldOptionsType[];
|
|
95
95
|
} & {
|
|
96
|
-
style?: import("./Defaults/types").
|
|
96
|
+
style?: import("./Defaults/types").ForgotPasswordStyle | undefined;
|
|
97
97
|
}): JSX.Element;
|
|
98
98
|
Footer: typeof import("./common").DefaultFooter;
|
|
99
99
|
FormFields: {
|
|
@@ -11,7 +11,7 @@ export interface ConfirmVerifyUserStyle {
|
|
|
11
11
|
}
|
|
12
12
|
export interface ForceNewPasswordStyle {
|
|
13
13
|
}
|
|
14
|
-
export interface
|
|
14
|
+
export interface ForgotPasswordStyle {
|
|
15
15
|
}
|
|
16
16
|
export interface SetupTotpStyle {
|
|
17
17
|
}
|
|
@@ -38,7 +38,7 @@ export type DefaultForceNewPasswordProps = React.ComponentPropsWithoutRef<Defaul
|
|
|
38
38
|
style?: ForceNewPasswordStyle;
|
|
39
39
|
}>['ForceNewPassword']>;
|
|
40
40
|
export type DefaultForgotPasswordProps = React.ComponentPropsWithoutRef<DefaultComponents<TextFieldOptionsType, {
|
|
41
|
-
style?:
|
|
41
|
+
style?: ForgotPasswordStyle;
|
|
42
42
|
}>['ForgotPassword']>;
|
|
43
43
|
export type DefaultSetupTotpProps = React.ComponentPropsWithoutRef<DefaultComponents<TextFieldOptionsType, {
|
|
44
44
|
style?: SetupTotpStyle;
|
|
@@ -72,7 +72,7 @@ type ForceNewPasswordComponent<P = {}> = OverrideComponents<TextFieldOptionsType
|
|
|
72
72
|
style?: ForceNewPasswordStyle;
|
|
73
73
|
} & P>['ForceNewPassword'];
|
|
74
74
|
type ForgotPasswordComponent<P = {}> = OverrideComponents<TextFieldOptionsType, {
|
|
75
|
-
style?:
|
|
75
|
+
style?: ForgotPasswordStyle;
|
|
76
76
|
} & P>['ForgotPassword'];
|
|
77
77
|
type SetupTotpComponent<P = {}> = OverrideComponents<TextFieldOptionsType, {
|
|
78
78
|
style?: SetupTotpStyle;
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "2.0.
|
|
1
|
+
export declare const VERSION = "2.0.4";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '2.0.
|
|
1
|
+
export const VERSION = '2.0.4';
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/ui-react-native",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"react-native": "src/index.ts",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"react-native-safe-area-context": "^4.7.3"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@aws-amplify/ui": "6.0.
|
|
33
|
-
"@aws-amplify/ui-react-core": "3.0.
|
|
34
|
-
"@aws-amplify/ui-react-core-notifications": "2.0.
|
|
32
|
+
"@aws-amplify/ui": "6.0.3",
|
|
33
|
+
"@aws-amplify/ui-react-core": "3.0.3",
|
|
34
|
+
"@aws-amplify/ui-react-core-notifications": "2.0.3"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"aws-amplify": "^6.0.2",
|
|
@@ -10,7 +10,7 @@ export interface ConfirmSignInStyle {}
|
|
|
10
10
|
export interface ConfirmSignUpStyle {}
|
|
11
11
|
export interface ConfirmVerifyUserStyle {}
|
|
12
12
|
export interface ForceNewPasswordStyle {}
|
|
13
|
-
export interface
|
|
13
|
+
export interface ForgotPasswordStyle {}
|
|
14
14
|
export interface SetupTotpStyle {}
|
|
15
15
|
export interface SignInStyle {}
|
|
16
16
|
export interface SignUpStyle {}
|
|
@@ -59,7 +59,7 @@ export type DefaultForceNewPasswordProps = React.ComponentPropsWithoutRef<
|
|
|
59
59
|
export type DefaultForgotPasswordProps = React.ComponentPropsWithoutRef<
|
|
60
60
|
DefaultComponents<
|
|
61
61
|
TextFieldOptionsType,
|
|
62
|
-
{ style?:
|
|
62
|
+
{ style?: ForgotPasswordStyle }
|
|
63
63
|
>['ForgotPassword']
|
|
64
64
|
>;
|
|
65
65
|
|
|
@@ -120,7 +120,7 @@ type ForceNewPasswordComponent<P = {}> = OverrideComponents<
|
|
|
120
120
|
|
|
121
121
|
type ForgotPasswordComponent<P = {}> = OverrideComponents<
|
|
122
122
|
TextFieldOptionsType,
|
|
123
|
-
{ style?:
|
|
123
|
+
{ style?: ForgotPasswordStyle } & P
|
|
124
124
|
>['ForgotPassword'];
|
|
125
125
|
|
|
126
126
|
type SetupTotpComponent<P = {}> = OverrideComponents<
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '2.0.
|
|
1
|
+
export const VERSION = '2.0.4';
|