@aws-amplify/ui-react 6.8.1 → 6.9.1
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/PrimitiveCatalog.mjs +28 -13
- package/dist/esm/components/ThemeProvider/ThemeProvider.mjs +2 -5
- package/dist/esm/primitives/DropZone/DropZoneChildren.mjs +3 -7
- package/dist/esm/primitives/Menu/Menu.mjs +2 -5
- package/dist/esm/primitives/Menu/MenuItem.mjs +2 -5
- package/dist/esm/primitives/SliderField/SliderField.mjs +7 -12
- package/dist/esm/version.mjs +1 -1
- package/dist/index.js +21 -42
- package/dist/internal.js +28 -13
- package/dist/types/components/AccountSettings/ChangePassword/ChangePassword.d.ts +2 -2
- package/dist/types/components/AccountSettings/DeleteUser/DeleteUser.d.ts +2 -2
- package/dist/types/components/Authenticator/Authenticator.d.ts +13 -13
- package/dist/types/components/Authenticator/ConfirmSignIn/ConfirmSignIn.d.ts +2 -2
- package/dist/types/components/Authenticator/ConfirmSignUp/ConfirmSignUp.d.ts +2 -2
- package/dist/types/components/Authenticator/FederatedSignIn/FederatedSignIn.d.ts +2 -2
- package/dist/types/components/Authenticator/FederatedSignIn/FederatedSignInButtons/FederatedSignInButton.d.ts +2 -2
- package/dist/types/components/Authenticator/ForceNewPassword/ForceNewPassword.d.ts +5 -5
- package/dist/types/components/Authenticator/ForgotPassword/ConfirmResetPassword.d.ts +4 -4
- package/dist/types/components/Authenticator/ForgotPassword/ForgotPassword.d.ts +4 -4
- package/dist/types/components/Authenticator/RouteContainer/RouteContainer.d.ts +2 -2
- package/dist/types/components/Authenticator/RouteContainer/types.d.ts +0 -1
- package/dist/types/components/Authenticator/Router/Router.d.ts +2 -2
- package/dist/types/components/Authenticator/SetupTotp/SetupTotp.d.ts +4 -4
- package/dist/types/components/Authenticator/SignIn/SignIn.d.ts +2 -2
- package/dist/types/components/Authenticator/SignUp/SignUp.d.ts +3 -3
- package/dist/types/components/Authenticator/VerifyUser/ConfirmVerifyUser.d.ts +2 -2
- package/dist/types/components/Authenticator/VerifyUser/VerifyUser.d.ts +4 -4
- package/dist/types/components/Authenticator/hooks/useCustomComponents/defaultComponents.d.ts +3 -4
- package/dist/types/components/Authenticator/shared/ConfirmSignInFooter.d.ts +2 -2
- package/dist/types/components/Authenticator/shared/ConfirmationCodeInput.d.ts +2 -2
- package/dist/types/components/Authenticator/shared/FormField.d.ts +2 -2
- package/dist/types/components/Authenticator/shared/FormFields.d.ts +2 -2
- package/dist/types/components/Authenticator/shared/RemoteErrorMessage.d.ts +2 -2
- package/dist/types/components/Authenticator/shared/SignInSignUpTabs.d.ts +2 -2
- package/dist/types/components/Authenticator/shared/TwoButtonSubmitFooter.d.ts +3 -3
- package/dist/types/components/Authenticator/withAuthenticator.d.ts +1 -1
- package/dist/types/components/FilterChildren/FilterChildren.d.ts +1 -1
- package/dist/types/components/ThemeProvider/ComponentStyle.d.ts +1 -1
- package/dist/types/components/ThemeProvider/GlobalStyle.d.ts +1 -1
- package/dist/types/components/ThemeProvider/Style.d.ts +1 -1
- package/dist/types/components/ThemeProvider/ThemeProvider.d.ts +1 -1
- package/dist/types/components/ThemeProvider/ThemeStyle.d.ts +1 -1
- package/dist/types/components/shared/ValidationErrors.d.ts +2 -2
- package/dist/types/primitives/Alert/AlertIcon.d.ts +2 -2
- package/dist/types/primitives/Collection/Collection.d.ts +2 -2
- package/dist/types/primitives/DropZone/DropZone.d.ts +4 -4
- package/dist/types/primitives/DropZone/DropZoneChildren.d.ts +10 -9
- package/dist/types/primitives/DropZone/DropZoneProvider.d.ts +1 -1
- package/dist/types/primitives/Icon/context/IconsProvider.d.ts +1 -1
- package/dist/types/primitives/Icon/icons/types.d.ts +1 -2
- package/dist/types/primitives/Pagination/usePaginationItems.d.ts +2 -2
- package/dist/types/primitives/types/autocomplete.d.ts +1 -1
- package/dist/types/primitives/types/button.d.ts +0 -1
- package/dist/types/primitives/types/collection.d.ts +2 -2
- package/dist/types/primitives/types/field.d.ts +0 -1
- package/dist/types/primitives/types/fieldGroup.d.ts +0 -1
- package/dist/types/primitives/types/image.d.ts +0 -1
- package/dist/types/primitives/types/label.d.ts +0 -1
- package/dist/types/primitives/types/rating.d.ts +2 -3
- package/dist/types/primitives/types/style.d.ts +0 -1
- package/dist/types/primitives/types/switchField.d.ts +0 -1
- package/dist/types/primitives/types/textArea.d.ts +0 -1
- package/dist/types/primitives/types/view.d.ts +20 -28
- package/dist/types/primitives/utils/primitiveWithForwardRef.d.ts +2 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +9 -10
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "6.
|
|
1
|
+
export declare const VERSION = "6.9.1";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/ui-react",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.9.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/esm/index.mjs",
|
|
6
6
|
"exports": {
|
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
"typecheck": "tsc --noEmit"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@aws-amplify/ui": "6.
|
|
59
|
-
"@aws-amplify/ui-react-core": "3.
|
|
60
|
-
"@radix-ui/react-direction": "1.
|
|
61
|
-
"@radix-ui/react-dropdown-menu": "1.
|
|
62
|
-
"@radix-ui/react-slider": "1.
|
|
58
|
+
"@aws-amplify/ui": "6.8.1",
|
|
59
|
+
"@aws-amplify/ui-react-core": "3.3.1",
|
|
60
|
+
"@radix-ui/react-direction": "^1.1.0",
|
|
61
|
+
"@radix-ui/react-dropdown-menu": "^2.1.4",
|
|
62
|
+
"@radix-ui/react-slider": "^1.2.2",
|
|
63
63
|
"@xstate/react": "^3.2.2",
|
|
64
64
|
"lodash": "4.17.21",
|
|
65
65
|
"qrcode": "1.5.0",
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"@aws-amplify/core": "*",
|
|
70
70
|
"aws-amplify": "^6.9.0",
|
|
71
|
-
"react": "^16.14.0 || ^17.0 || ^18.0",
|
|
72
|
-
"react-dom": "^16.14
|
|
71
|
+
"react": "^16.14.0 || ^17.0 || ^18.0 || ^19",
|
|
72
|
+
"react-dom": "^16.14 || ^17 || ^18 || ^19"
|
|
73
73
|
},
|
|
74
74
|
"peerDependenciesMeta": {
|
|
75
75
|
"aws-amplify": {
|
|
@@ -79,8 +79,7 @@
|
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"@svgr/core": "^5.5.0",
|
|
81
81
|
"@types/qrcode": "^1.4.2",
|
|
82
|
-
"jest-matchmedia-mock": "^1.1.0"
|
|
83
|
-
"react-router-dom": "^6.2.1"
|
|
82
|
+
"jest-matchmedia-mock": "^1.1.0"
|
|
84
83
|
},
|
|
85
84
|
"sideEffects": [
|
|
86
85
|
"dist/**/*.css"
|