@aws-amplify/ui-react 4.3.4 → 4.3.5
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/esm/components/AccountSettings/ChangePassword/ChangePassword.js +1 -1
- package/dist/esm/components/AccountSettings/ChangePassword/defaults.js +1 -1
- package/dist/esm/components/AccountSettings/DeleteUser/DeleteUser.js +1 -1
- package/dist/esm/components/Authenticator/FederatedSignIn/FederatedSignIn.js +1 -1
- package/dist/esm/primitives/shared/datastore.js +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/index.js +1 -1
- package/dist/internal.js +1 -1
- package/dist/styles.css +1 -0
- package/dist/types/components/AccountSettings/types.d.ts +1 -1
- package/dist/types/components/shared/ValidationErrors.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +3 -3
package/dist/styles.css
CHANGED
|
@@ -1678,6 +1678,7 @@ strong.amplify-text {
|
|
|
1678
1678
|
-webkit-user-select: text;
|
|
1679
1679
|
-moz-user-select: text;
|
|
1680
1680
|
user-select: text;
|
|
1681
|
+
display: inline-flex;
|
|
1681
1682
|
}
|
|
1682
1683
|
.amplify-input:focus {
|
|
1683
1684
|
border-color: var(--amplify-components-fieldcontrol-focus-border-color);
|
|
@@ -7,7 +7,7 @@ declare type CommonPasswordFieldProps = Partial<PasswordFieldPrimitiveProps> & R
|
|
|
7
7
|
fieldValidationErrors?: string[];
|
|
8
8
|
};
|
|
9
9
|
declare type CommonAlertProps = Partial<PrimitiveProps<AlertProps, 'div'>> & Required<Pick<AlertPrimitiveProps, 'children'>>;
|
|
10
|
-
declare type CommonButtonProps<T extends 'submit' | 'default' = 'default'> = Partial<ButtonPrimitiveProps> & Required<Pick<ButtonPrimitiveProps,
|
|
10
|
+
declare type CommonButtonProps<T extends 'submit' | 'default' = 'default'> = Partial<ButtonPrimitiveProps> & Required<Pick<ButtonPrimitiveProps, T extends 'submit' ? never : 'onClick'>>;
|
|
11
11
|
export declare type PasswordFieldComponent<Props = {}> = React.ComponentType<Props & CommonPasswordFieldProps>;
|
|
12
12
|
export declare type ButtonComponent<Props = {}> = React.ComponentType<Props & CommonButtonProps>;
|
|
13
13
|
export declare type SubmitButtonComponent<Props = {}> = React.ComponentType<Props & CommonButtonProps<'submit'>>;
|
|
@@ -3,4 +3,4 @@ export interface ValidationErrorsProps {
|
|
|
3
3
|
id?: string;
|
|
4
4
|
dataAttr?: string;
|
|
5
5
|
}
|
|
6
|
-
export declare const ValidationErrors: ({ errors, id, dataAttr, }: ValidationErrorsProps) => JSX.Element;
|
|
6
|
+
export declare const ValidationErrors: ({ errors, id, dataAttr, }: ValidationErrorsProps) => JSX.Element | null;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "4.3.
|
|
1
|
+
export declare const VERSION = "4.3.5";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/ui-react",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.5",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"size": "yarn run size-limit"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@aws-amplify/ui": "5.5.
|
|
52
|
-
"@aws-amplify/ui-react-core": "2.1.
|
|
51
|
+
"@aws-amplify/ui": "5.5.2",
|
|
52
|
+
"@aws-amplify/ui-react-core": "2.1.10",
|
|
53
53
|
"@radix-ui/react-accordion": "1.0.0",
|
|
54
54
|
"@radix-ui/react-direction": "1.0.0",
|
|
55
55
|
"@radix-ui/react-dropdown-menu": "1.0.0",
|