Skip to content

Feat(authenticator): export unmet password requirements #5437

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Sep 16, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export 'src/models/totp_options.dart';
export 'src/models/username_input.dart'
show UsernameType, UsernameInput, UsernameSelection;
export 'src/state/authenticator_state.dart';
export 'src/utils/unmet_password_requirements.dart';
export 'src/widgets/button.dart'
show
SignUpButton,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// SPDX-License-Identifier: Apache-2.0

import 'package:amplify_authenticator/amplify_authenticator.dart';
import 'package:amplify_authenticator/src/utils/unmet_password_requirements.dart';
import 'package:amplify_core/amplify_core.dart';
// ignore: implementation_imports
import 'package:amplify_core/src/config/amplify_outputs/auth/password_policy.dart';
Expand Down
Loading