-
Notifications
You must be signed in to change notification settings - Fork 281
fix(authenticator): Add accessible names for password toggle and form errors #7229
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
Closed
VarshithaPamisetty
wants to merge
2
commits into
aws-amplify:main
from
VarshithaPamisetty:bug/authenticator-form-field-accessible-names
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
124 changes: 124 additions & 0 deletions
124
packages/authenticator/amplify_authenticator/test/authenticator_accessibility_test.dart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,124 @@ | ||
| // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| import 'package:amplify_authenticator/amplify_authenticator.dart'; | ||
| import 'package:amplify_authenticator/src/enums/status_type.dart'; | ||
| import 'package:amplify_authenticator/src/keys.dart'; | ||
| import 'package:amplify_authenticator/src/widgets/authenticator_banner.dart'; | ||
| import 'package:amplify_authenticator_test/amplify_authenticator_test.dart'; | ||
| import 'package:flutter/material.dart'; | ||
| import 'package:flutter_test/flutter_test.dart'; | ||
|
|
||
| void main() { | ||
| TestWidgetsFlutterBinding.ensureInitialized(); | ||
|
|
||
| setUp(TestWidgetsFlutterBinding.ensureInitialized); | ||
|
|
||
| group('Password visibility toggle accessibility (WCAG 4.1.2)', () { | ||
| testWidgets( | ||
| 'exposes a "Show password" accessible name while the password is hidden', | ||
| (tester) async { | ||
| await tester.pumpWidget(const MockAuthenticatorApp()); | ||
| await tester.pumpAndSettle(); | ||
|
|
||
| SignInPage(tester: tester).expectStep(AuthenticatorStep.signIn); | ||
|
|
||
| // Password starts obscured, so the toggle offers to show it | ||
| expect(find.byTooltip('Show password'), findsOneWidget); | ||
| expect(find.byTooltip('Hide password'), findsNothing); | ||
| }, | ||
| ); | ||
|
|
||
| testWidgets( | ||
| 'flips the accessible name to "Hide password" once the password is shown', | ||
| (tester) async { | ||
| await tester.pumpWidget(const MockAuthenticatorApp()); | ||
| await tester.pumpAndSettle(); | ||
|
|
||
| SignInPage(tester: tester).expectStep(AuthenticatorStep.signIn); | ||
|
|
||
| // Reveal the password | ||
| await tester.tap(find.byTooltip('Show password')); | ||
| await tester.pumpAndSettle(); | ||
|
|
||
| // Password is now visible, so the toggle offers to hide it | ||
| expect(find.byTooltip('Hide password'), findsOneWidget); | ||
| expect(find.byTooltip('Show password'), findsNothing); | ||
| }, | ||
| ); | ||
| }); | ||
|
|
||
| group('Status banner screen-reader announcements', () { | ||
| testWidgets( | ||
| 'MaterialBanner content is wrapped in a live-region Semantics node', | ||
| (tester) async { | ||
| await tester.pumpWidget( | ||
| MaterialApp( | ||
| home: Scaffold( | ||
| body: Builder( | ||
| builder: (context) => createMaterialBanner( | ||
| context, | ||
| type: StatusType.error, | ||
| message: 'Something went wrong', | ||
| actionCallback: () {}, | ||
| ), | ||
| ), | ||
| ), | ||
| ), | ||
| ); | ||
| await tester.pumpAndSettle(); | ||
|
|
||
| final banner = find.byKey(keyAuthenticatorBanner); | ||
| expect(banner, findsOneWidget); | ||
|
|
||
| final liveRegion = find.descendant( | ||
| of: banner, | ||
| matching: find.byWidgetPredicate( | ||
| (widget) => | ||
| widget is Semantics && (widget.properties.liveRegion ?? false), | ||
| ), | ||
| ); | ||
| expect(liveRegion, findsOneWidget); | ||
| }, | ||
| ); | ||
|
|
||
| testWidgets('SnackBar content is wrapped in a live-region Semantics node', ( | ||
| tester, | ||
| ) async { | ||
| late BuildContext capturedContext; | ||
| await tester.pumpWidget( | ||
| MaterialApp( | ||
| home: Scaffold( | ||
| body: Builder( | ||
| builder: (context) { | ||
| capturedContext = context; | ||
| return const SizedBox.shrink(); | ||
| }, | ||
| ), | ||
| ), | ||
| ), | ||
| ); | ||
|
|
||
| // A SnackBar only builds its content once shown via the messenger | ||
| ScaffoldMessenger.of(capturedContext).showSnackBar( | ||
| createSnackBar( | ||
| capturedContext, | ||
| type: StatusType.error, | ||
| message: 'Something went wrong', | ||
| ), | ||
| ); | ||
| await tester.pump(); | ||
| await tester.pump(const Duration(milliseconds: 750)); | ||
|
|
||
| // Flutter's SnackBar adds its own live-region, so allow more than one | ||
| final liveRegionAroundMessage = find.ancestor( | ||
| of: find.text('Something went wrong'), | ||
| matching: find.byWidgetPredicate( | ||
| (widget) => | ||
| widget is Semantics && (widget.properties.liveRegion ?? false), | ||
| ), | ||
| ); | ||
| expect(liveRegionAroundMessage, findsWidgets); | ||
| }); | ||
| }); | ||
| } |
Binary file modified
BIN
-1 Byte
(100%)
...st/ui/goldens/layout_emailConfig_resetPasswordStep_constrainedWidthGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1 Byte
(100%)
...icator/test/ui/goldens/layout_emailConfig_resetPasswordStep_desktopGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+12 Bytes
(100%)
...ticator/test/ui/goldens/layout_emailConfig_resetPasswordStep_laptopGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-4 Bytes
(100%)
...enticator/test/ui/goldens/layout_emailConfig_resetPasswordStep_miniGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-11 Bytes
(100%)
...ticator/test/ui/goldens/layout_emailConfig_resetPasswordStep_mobileGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+16 Bytes
(100%)
...ticator/test/ui/goldens/layout_emailConfig_resetPasswordStep_tabletGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1 Byte
(100%)
...ator/test/ui/goldens/layout_emailConfig_signInStep_constrainedWidthGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+4 Bytes
(100%)
...authenticator/test/ui/goldens/layout_emailConfig_signInStep_desktopGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+111 Bytes
(100%)
..._authenticator/test/ui/goldens/layout_emailConfig_signInStep_laptopGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-10 Bytes
(100%)
...fy_authenticator/test/ui/goldens/layout_emailConfig_signInStep_miniGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-43 Bytes
(100%)
..._authenticator/test/ui/goldens/layout_emailConfig_signInStep_mobileGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-9 Bytes
(100%)
..._authenticator/test/ui/goldens/layout_emailConfig_signInStep_tabletGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2 Bytes
(100%)
...ator/test/ui/goldens/layout_emailConfig_signUpStep_constrainedWidthGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+11 Bytes
(100%)
...authenticator/test/ui/goldens/layout_emailConfig_signUpStep_desktopGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+72 Bytes
(100%)
..._authenticator/test/ui/goldens/layout_emailConfig_signUpStep_laptopGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-12 Bytes
(100%)
...fy_authenticator/test/ui/goldens/layout_emailConfig_signUpStep_miniGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+413 Bytes
(100%)
..._authenticator/test/ui/goldens/layout_emailConfig_signUpStep_mobileGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+84 Bytes
(100%)
..._authenticator/test/ui/goldens/layout_emailConfig_signUpStep_tabletGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1 Byte
(100%)
...oldens/layout_emailOrPhoneConfig_resetPasswordStep_constrainedWidthGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1 Byte
(100%)
...test/ui/goldens/layout_emailOrPhoneConfig_resetPasswordStep_desktopGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+12 Bytes
(100%)
.../test/ui/goldens/layout_emailOrPhoneConfig_resetPasswordStep_laptopGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-4 Bytes
(100%)
...or/test/ui/goldens/layout_emailOrPhoneConfig_resetPasswordStep_miniGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-15 Bytes
(100%)
.../test/ui/goldens/layout_emailOrPhoneConfig_resetPasswordStep_mobileGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+14 Bytes
(100%)
.../test/ui/goldens/layout_emailOrPhoneConfig_resetPasswordStep_tabletGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1 Byte
(100%)
...st/ui/goldens/layout_emailOrPhoneConfig_signInStep_constrainedWidthGeometry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1 Byte
(100%)
...icator/test/ui/goldens/layout_emailOrPhoneConfig_signInStep_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+96 Bytes
(100%)
...ticator/test/ui/goldens/layout_emailOrPhoneConfig_signInStep_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+20 Bytes
(100%)
...enticator/test/ui/goldens/layout_emailOrPhoneConfig_signInStep_miniGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...ticator/test/ui/goldens/layout_emailOrPhoneConfig_signInStep_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-54 Bytes
(100%)
...ticator/test/ui/goldens/layout_emailOrPhoneConfig_signInStep_tabletGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+158 Bytes
(100%)
...st/ui/goldens/layout_emailOrPhoneConfig_signUpStep_constrainedWidthGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+103 Bytes
(100%)
...icator/test/ui/goldens/layout_emailOrPhoneConfig_signUpStep_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-8 Bytes
(100%)
...ticator/test/ui/goldens/layout_emailOrPhoneConfig_signUpStep_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-7 Bytes
(100%)
...enticator/test/ui/goldens/layout_emailOrPhoneConfig_signUpStep_miniGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...ticator/test/ui/goldens/layout_emailOrPhoneConfig_signUpStep_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+150 Bytes
(100%)
...ticator/test/ui/goldens/layout_emailOrPhoneConfig_signUpStep_tabletGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...goldens/layout_phoneNumberConfig_resetPasswordStep_constrainedWidthGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+7 Bytes
(100%)
.../test/ui/goldens/layout_phoneNumberConfig_resetPasswordStep_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+11 Bytes
(100%)
...r/test/ui/goldens/layout_phoneNumberConfig_resetPasswordStep_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+83 Bytes
(100%)
...tor/test/ui/goldens/layout_phoneNumberConfig_resetPasswordStep_miniGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+16 Bytes
(100%)
...r/test/ui/goldens/layout_phoneNumberConfig_resetPasswordStep_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+45 Bytes
(100%)
...r/test/ui/goldens/layout_phoneNumberConfig_resetPasswordStep_tabletGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...est/ui/goldens/layout_phoneNumberConfig_signInStep_constrainedWidthGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+18 Bytes
(100%)
...ticator/test/ui/goldens/layout_phoneNumberConfig_signInStep_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+26 Bytes
(100%)
...nticator/test/ui/goldens/layout_phoneNumberConfig_signInStep_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+40 Bytes
(100%)
...henticator/test/ui/goldens/layout_phoneNumberConfig_signInStep_miniGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+659 Bytes
(100%)
...nticator/test/ui/goldens/layout_phoneNumberConfig_signInStep_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-121 Bytes
(100%)
...nticator/test/ui/goldens/layout_phoneNumberConfig_signInStep_tabletGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...est/ui/goldens/layout_phoneNumberConfig_signUpStep_constrainedWidthGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...ticator/test/ui/goldens/layout_phoneNumberConfig_signUpStep_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+207 Bytes
(100%)
...nticator/test/ui/goldens/layout_phoneNumberConfig_signUpStep_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+248 Bytes
(100%)
...henticator/test/ui/goldens/layout_phoneNumberConfig_signUpStep_miniGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...nticator/test/ui/goldens/layout_phoneNumberConfig_signUpStep_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+199 Bytes
(100%)
...nticator/test/ui/goldens/layout_phoneNumberConfig_signUpStep_tabletGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...i/goldens/layout_smsOrTotpConfig_resetPasswordStep_constrainedWidthGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...or/test/ui/goldens/layout_smsOrTotpConfig_resetPasswordStep_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+11 Bytes
(100%)
...tor/test/ui/goldens/layout_smsOrTotpConfig_resetPasswordStep_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-4 Bytes
(100%)
...cator/test/ui/goldens/layout_smsOrTotpConfig_resetPasswordStep_miniGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...tor/test/ui/goldens/layout_smsOrTotpConfig_resetPasswordStep_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+14 Bytes
(100%)
...tor/test/ui/goldens/layout_smsOrTotpConfig_resetPasswordStep_tabletGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
.../test/ui/goldens/layout_smsOrTotpConfig_signInStep_constrainedWidthGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+56 Bytes
(100%)
...enticator/test/ui/goldens/layout_smsOrTotpConfig_signInStep_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+62 Bytes
(100%)
...henticator/test/ui/goldens/layout_smsOrTotpConfig_signInStep_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-12 Bytes
(100%)
...uthenticator/test/ui/goldens/layout_smsOrTotpConfig_signInStep_miniGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+35 Bytes
(100%)
...henticator/test/ui/goldens/layout_smsOrTotpConfig_signInStep_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-22 Bytes
(100%)
...henticator/test/ui/goldens/layout_smsOrTotpConfig_signInStep_tabletGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
.../test/ui/goldens/layout_smsOrTotpConfig_signUpStep_constrainedWidthGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+98 Bytes
(100%)
...enticator/test/ui/goldens/layout_smsOrTotpConfig_signUpStep_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+19 Bytes
(100%)
...henticator/test/ui/goldens/layout_smsOrTotpConfig_signUpStep_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
...uthenticator/test/ui/goldens/layout_smsOrTotpConfig_signUpStep_miniGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+80 Bytes
(100%)
...henticator/test/ui/goldens/layout_smsOrTotpConfig_signUpStep_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+66 Bytes
(100%)
...henticator/test/ui/goldens/layout_smsOrTotpConfig_signUpStep_tabletGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
...dens/layout_socialProviderConfig_resetPasswordStep_constrainedWidthGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...st/ui/goldens/layout_socialProviderConfig_resetPasswordStep_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+12 Bytes
(100%)
...est/ui/goldens/layout_socialProviderConfig_resetPasswordStep_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-4 Bytes
(100%)
.../test/ui/goldens/layout_socialProviderConfig_resetPasswordStep_miniGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-11 Bytes
(100%)
...est/ui/goldens/layout_socialProviderConfig_resetPasswordStep_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+16 Bytes
(100%)
...est/ui/goldens/layout_socialProviderConfig_resetPasswordStep_tabletGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+41 Bytes
(100%)
.../ui/goldens/layout_socialProviderConfig_signInStep_constrainedWidthGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+174 Bytes
(100%)
...ator/test/ui/goldens/layout_socialProviderConfig_signInStep_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-166 Bytes
(100%)
...cator/test/ui/goldens/layout_socialProviderConfig_signInStep_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-140 Bytes
(100%)
...ticator/test/ui/goldens/layout_socialProviderConfig_signInStep_miniGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+223 Bytes
(100%)
...cator/test/ui/goldens/layout_socialProviderConfig_signInStep_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-118 Bytes
(100%)
...cator/test/ui/goldens/layout_socialProviderConfig_signInStep_tabletGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
.../ui/goldens/layout_socialProviderConfig_signUpStep_constrainedWidthGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+11 Bytes
(100%)
...ator/test/ui/goldens/layout_socialProviderConfig_signUpStep_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+72 Bytes
(100%)
...cator/test/ui/goldens/layout_socialProviderConfig_signUpStep_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-12 Bytes
(100%)
...ticator/test/ui/goldens/layout_socialProviderConfig_signUpStep_miniGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+413 Bytes
(100%)
...cator/test/ui/goldens/layout_socialProviderConfig_signUpStep_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+84 Bytes
(100%)
...cator/test/ui/goldens/layout_socialProviderConfig_signUpStep_tabletGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...out_usernameWithAttributesConfig_resetPasswordStep_constrainedWidthGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...ldens/layout_usernameWithAttributesConfig_resetPasswordStep_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+11 Bytes
(100%)
...oldens/layout_usernameWithAttributesConfig_resetPasswordStep_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-4 Bytes
(100%)
.../goldens/layout_usernameWithAttributesConfig_resetPasswordStep_miniGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...oldens/layout_usernameWithAttributesConfig_resetPasswordStep_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+14 Bytes
(100%)
...oldens/layout_usernameWithAttributesConfig_resetPasswordStep_tabletGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...ens/layout_usernameWithAttributesConfig_signInStep_constrainedWidthGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+56 Bytes
(100%)
...t/ui/goldens/layout_usernameWithAttributesConfig_signInStep_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+62 Bytes
(100%)
...st/ui/goldens/layout_usernameWithAttributesConfig_signInStep_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-12 Bytes
(100%)
...test/ui/goldens/layout_usernameWithAttributesConfig_signInStep_miniGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+35 Bytes
(100%)
...st/ui/goldens/layout_usernameWithAttributesConfig_signInStep_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-22 Bytes
(100%)
...st/ui/goldens/layout_usernameWithAttributesConfig_signInStep_tabletGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+138 Bytes
(100%)
...ens/layout_usernameWithAttributesConfig_signUpStep_constrainedWidthGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+109 Bytes
(100%)
...t/ui/goldens/layout_usernameWithAttributesConfig_signUpStep_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...st/ui/goldens/layout_usernameWithAttributesConfig_signUpStep_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-6.5 KB
(86%)
...test/ui/goldens/layout_usernameWithAttributesConfig_signUpStep_miniGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+64 Bytes
(100%)
...st/ui/goldens/layout_usernameWithAttributesConfig_signUpStep_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+15 Bytes
(100%)
...st/ui/goldens/layout_usernameWithAttributesConfig_signUpStep_tabletGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(100%)
...nfig_confirmResetPasswordStep_defaultMaterialTheme_darkMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+592 Bytes
(100%)
...onfig_confirmResetPasswordStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+23 Bytes
(100%)
...fig_confirmResetPasswordStep_defaultMaterialTheme_lightMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+581 Bytes
(100%)
...nfig_confirmResetPasswordStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...g_confirmSignInCustomAuthStep_defaultMaterialTheme_darkMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...ig_confirmSignInCustomAuthStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-11 Bytes
(100%)
..._confirmSignInCustomAuthStep_defaultMaterialTheme_lightMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...g_confirmSignInCustomAuthStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-10 Bytes
(100%)
...ilConfig_confirmSignInMfaStep_defaultMaterialTheme_darkMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...ailConfig_confirmSignInMfaStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+12 Bytes
(100%)
...lConfig_confirmSignInMfaStep_defaultMaterialTheme_lightMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-18 Bytes
(100%)
...ilConfig_confirmSignInMfaStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
..._confirmSignInNewPasswordStep_defaultMaterialTheme_darkMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+188 Bytes
(100%)
...g_confirmSignInNewPasswordStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-8 Bytes
(100%)
...confirmSignInNewPasswordStep_defaultMaterialTheme_lightMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+223 Bytes
(100%)
..._confirmSignInNewPasswordStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-7 Bytes
(100%)
..._confirmSignInWithOtpCodeStep_defaultMaterialTheme_darkMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+10 Bytes
(100%)
...g_confirmSignInWithOtpCodeStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+70 Bytes
(100%)
...confirmSignInWithOtpCodeStep_defaultMaterialTheme_lightMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-19 Bytes
(100%)
..._confirmSignInWithOtpCodeStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-12 Bytes
(100%)
...firmSignInWithTotpMfaCodeStep_defaultMaterialTheme_darkMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(100%)
...nfirmSignInWithTotpMfaCodeStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+15 Bytes
(100%)
...irmSignInWithTotpMfaCodeStep_defaultMaterialTheme_lightMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-29 Bytes
(100%)
...firmSignInWithTotpMfaCodeStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...emailConfig_confirmSignUpStep_defaultMaterialTheme_darkMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
..._emailConfig_confirmSignUpStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+18 Bytes
(100%)
...mailConfig_confirmSignUpStep_defaultMaterialTheme_lightMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-7 Bytes
(100%)
...emailConfig_confirmSignUpStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-15 Bytes
(100%)
...lConfig_confirmVerifyUserStep_defaultMaterialTheme_darkMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+40 Bytes
(100%)
...ilConfig_confirmVerifyUserStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+18 Bytes
(100%)
...Config_confirmVerifyUserStep_defaultMaterialTheme_lightMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+31 Bytes
(100%)
...lConfig_confirmVerifyUserStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(100%)
...ueSignInWithEmailMfaSetupStep_defaultMaterialTheme_darkMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-53 Bytes
(100%)
...nueSignInWithEmailMfaSetupStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-18 Bytes
(100%)
...eSignInWithEmailMfaSetupStep_defaultMaterialTheme_lightMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-44 Bytes
(100%)
...ueSignInWithEmailMfaSetupStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(100%)
...nueSignInWithMfaSelectionStep_defaultMaterialTheme_darkMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...inueSignInWithMfaSelectionStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(100%)
...ueSignInWithMfaSelectionStep_defaultMaterialTheme_lightMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+28 Bytes
(100%)
...nueSignInWithMfaSelectionStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-7 Bytes
(100%)
...gnInWithMfaSetupSelectionStep_defaultMaterialTheme_darkMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+21 Bytes
(100%)
...ignInWithMfaSetupSelectionStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-12 Bytes
(100%)
...nInWithMfaSetupSelectionStep_defaultMaterialTheme_lightMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+17 Bytes
(100%)
...gnInWithMfaSetupSelectionStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-9 Bytes
(100%)
...ntinueSignInWithTotpSetupStep_defaultMaterialTheme_darkMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-112 Bytes
(100%)
...ontinueSignInWithTotpSetupStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...tinueSignInWithTotpSetupStep_defaultMaterialTheme_lightMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-88 Bytes
(100%)
...ntinueSignInWithTotpSetupStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(100%)
...me_emailConfig_onboardingStep_defaultMaterialTheme_darkMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-109 Bytes
(100%)
...eme_emailConfig_onboardingStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...e_emailConfig_onboardingStep_defaultMaterialTheme_lightMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-43 Bytes
(100%)
...me_emailConfig_onboardingStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-26 Bytes
(100%)
...dens/theme_emailConfig_signInStep_customSwatchTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+27 Bytes
(100%)
...dens/theme_emailConfig_signInStep_customSwatchTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+11 Bytes
(100%)
...ens/theme_emailConfig_signInStep_customSwatchTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-16 Bytes
(100%)
...ens/theme_emailConfig_signInStep_customSwatchTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+143 Bytes
(100%)
...ui/goldens/theme_emailConfig_signInStep_customTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-132 Bytes
(100%)
...ui/goldens/theme_emailConfig_signInStep_customTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+116 Bytes
(100%)
...i/goldens/theme_emailConfig_signInStep_customTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-19 Bytes
(100%)
...i/goldens/theme_emailConfig_signInStep_customTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+127 Bytes
(100%)
...s/theme_emailConfig_signInStep_defaultMaterialTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-109 Bytes
(100%)
...s/theme_emailConfig_signInStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+111 Bytes
(100%)
.../theme_emailConfig_signInStep_defaultMaterialTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-43 Bytes
(100%)
.../theme_emailConfig_signInStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-78 Bytes
(100%)
...dens/theme_emailConfig_signInStep_highContrastTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-17 Bytes
(100%)
...dens/theme_emailConfig_signInStep_highContrastTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+19 Bytes
(100%)
...ens/theme_emailConfig_signInStep_highContrastTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(100%)
...ens/theme_emailConfig_signInStep_highContrastTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-22 Bytes
(100%)
...goldens/theme_emailConfig_signInStep_material2Theme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...goldens/theme_emailConfig_signInStep_material2Theme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-14 Bytes
(100%)
...oldens/theme_emailConfig_signInStep_material2Theme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+10 Bytes
(100%)
...oldens/theme_emailConfig_signInStep_material2Theme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+117 Bytes
(100%)
...dens/theme_emailConfig_signUpStep_customSwatchTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+419 Bytes
(100%)
...dens/theme_emailConfig_signUpStep_customSwatchTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+57 Bytes
(100%)
...ens/theme_emailConfig_signUpStep_customSwatchTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+288 Bytes
(100%)
...ens/theme_emailConfig_signUpStep_customSwatchTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+165 Bytes
(100%)
...ui/goldens/theme_emailConfig_signUpStep_customTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+410 Bytes
(100%)
...ui/goldens/theme_emailConfig_signUpStep_customTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+94 Bytes
(100%)
...i/goldens/theme_emailConfig_signUpStep_customTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+318 Bytes
(100%)
...i/goldens/theme_emailConfig_signUpStep_customTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+154 Bytes
(100%)
...s/theme_emailConfig_signUpStep_defaultMaterialTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+372 Bytes
(100%)
...s/theme_emailConfig_signUpStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+72 Bytes
(100%)
.../theme_emailConfig_signUpStep_defaultMaterialTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+413 Bytes
(100%)
.../theme_emailConfig_signUpStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+157 Bytes
(100%)
...dens/theme_emailConfig_signUpStep_highContrastTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+307 Bytes
(100%)
...dens/theme_emailConfig_signUpStep_highContrastTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+54 Bytes
(100%)
...ens/theme_emailConfig_signUpStep_highContrastTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+263 Bytes
(100%)
...ens/theme_emailConfig_signUpStep_highContrastTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+236 Bytes
(100%)
...goldens/theme_emailConfig_signUpStep_material2Theme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+12 Bytes
(100%)
...goldens/theme_emailConfig_signUpStep_material2Theme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+258 Bytes
(100%)
...oldens/theme_emailConfig_signUpStep_material2Theme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+131 Bytes
(100%)
...oldens/theme_emailConfig_signUpStep_material2Theme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-7 Bytes
(100%)
...me_emailConfig_verifyUserStep_defaultMaterialTheme_darkMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+36 Bytes
(100%)
...eme_emailConfig_verifyUserStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...e_emailConfig_verifyUserStep_defaultMaterialTheme_lightMode_desktopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...me_emailConfig_verifyUserStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+22 Bytes
(100%)
...eme_emailOrPhoneConfig_signInStep_customSwatchTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+16 Bytes
(100%)
...eme_emailOrPhoneConfig_signInStep_customSwatchTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+25 Bytes
(100%)
...me_emailOrPhoneConfig_signInStep_customSwatchTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+32 Bytes
(100%)
...me_emailOrPhoneConfig_signInStep_customSwatchTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+42 Bytes
(100%)
...ens/theme_emailOrPhoneConfig_signInStep_customTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-14 Bytes
(100%)
...ens/theme_emailOrPhoneConfig_signInStep_customTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+85 Bytes
(100%)
...ns/theme_emailOrPhoneConfig_signInStep_customTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...ns/theme_emailOrPhoneConfig_signInStep_customTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+45 Bytes
(100%)
..._emailOrPhoneConfig_signInStep_defaultMaterialTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
..._emailOrPhoneConfig_signInStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+96 Bytes
(100%)
...emailOrPhoneConfig_signInStep_defaultMaterialTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...emailOrPhoneConfig_signInStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+27 Bytes
(100%)
...eme_emailOrPhoneConfig_signInStep_highContrastTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+38 Bytes
(100%)
...eme_emailOrPhoneConfig_signInStep_highContrastTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+18 Bytes
(100%)
...me_emailOrPhoneConfig_signInStep_highContrastTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+33 Bytes
(100%)
...me_emailOrPhoneConfig_signInStep_highContrastTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(100%)
.../theme_emailOrPhoneConfig_signInStep_material2Theme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+15 Bytes
(100%)
.../theme_emailOrPhoneConfig_signInStep_material2Theme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+28 Bytes
(100%)
...theme_emailOrPhoneConfig_signInStep_material2Theme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+15 Bytes
(100%)
...theme_emailOrPhoneConfig_signInStep_material2Theme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-14 Bytes
(100%)
...eme_emailOrPhoneConfig_signUpStep_customSwatchTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+96 Bytes
(100%)
...eme_emailOrPhoneConfig_signUpStep_customSwatchTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-34 Bytes
(100%)
...me_emailOrPhoneConfig_signUpStep_customSwatchTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+68 Bytes
(100%)
...me_emailOrPhoneConfig_signUpStep_customSwatchTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-21 Bytes
(100%)
...ens/theme_emailOrPhoneConfig_signUpStep_customTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-7 Bytes
(100%)
...ens/theme_emailOrPhoneConfig_signUpStep_customTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-12 Bytes
(100%)
...ns/theme_emailOrPhoneConfig_signUpStep_customTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+64 Bytes
(100%)
...ns/theme_emailOrPhoneConfig_signUpStep_customTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-7 Bytes
(100%)
..._emailOrPhoneConfig_signUpStep_defaultMaterialTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(100%)
..._emailOrPhoneConfig_signUpStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-8 Bytes
(100%)
...emailOrPhoneConfig_signUpStep_defaultMaterialTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...emailOrPhoneConfig_signUpStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+7 Bytes
(100%)
...eme_emailOrPhoneConfig_signUpStep_highContrastTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+51 Bytes
(100%)
...eme_emailOrPhoneConfig_signUpStep_highContrastTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+13 Bytes
(100%)
...me_emailOrPhoneConfig_signUpStep_highContrastTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+163 Bytes
(100%)
...me_emailOrPhoneConfig_signUpStep_highContrastTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+43 Bytes
(100%)
.../theme_emailOrPhoneConfig_signUpStep_material2Theme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+141 Bytes
(100%)
.../theme_emailOrPhoneConfig_signUpStep_material2Theme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-36 Bytes
(100%)
...theme_emailOrPhoneConfig_signUpStep_material2Theme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+72 Bytes
(100%)
...theme_emailOrPhoneConfig_signUpStep_material2Theme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-48 Bytes
(100%)
...e_socialProviderConfig_signInStep_customSwatchTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+124 Bytes
(100%)
...e_socialProviderConfig_signInStep_customSwatchTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-92 Bytes
(100%)
..._socialProviderConfig_signInStep_customSwatchTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+60 Bytes
(100%)
..._socialProviderConfig_signInStep_customSwatchTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-270 Bytes
(100%)
...s/theme_socialProviderConfig_signInStep_customTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+137 Bytes
(100%)
...s/theme_socialProviderConfig_signInStep_customTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-154 Bytes
(100%)
.../theme_socialProviderConfig_signInStep_customTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+217 Bytes
(100%)
.../theme_socialProviderConfig_signInStep_customTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-278 Bytes
(100%)
...ocialProviderConfig_signInStep_defaultMaterialTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+151 Bytes
(100%)
...ocialProviderConfig_signInStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-166 Bytes
(100%)
...cialProviderConfig_signInStep_defaultMaterialTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+223 Bytes
(100%)
...cialProviderConfig_signInStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-125 Bytes
(100%)
...e_socialProviderConfig_signInStep_highContrastTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+97 Bytes
(100%)
...e_socialProviderConfig_signInStep_highContrastTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+147 Bytes
(100%)
..._socialProviderConfig_signInStep_highContrastTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-19 Bytes
(100%)
..._socialProviderConfig_signInStep_highContrastTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...heme_socialProviderConfig_signInStep_material2Theme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+51 Bytes
(100%)
...heme_socialProviderConfig_signInStep_material2Theme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...eme_socialProviderConfig_signInStep_material2Theme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+22 Bytes
(100%)
...eme_socialProviderConfig_signInStep_material2Theme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+117 Bytes
(100%)
...e_socialProviderConfig_signUpStep_customSwatchTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+419 Bytes
(100%)
...e_socialProviderConfig_signUpStep_customSwatchTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+57 Bytes
(100%)
..._socialProviderConfig_signUpStep_customSwatchTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+288 Bytes
(100%)
..._socialProviderConfig_signUpStep_customSwatchTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+165 Bytes
(100%)
...s/theme_socialProviderConfig_signUpStep_customTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+410 Bytes
(100%)
...s/theme_socialProviderConfig_signUpStep_customTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+94 Bytes
(100%)
.../theme_socialProviderConfig_signUpStep_customTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+318 Bytes
(100%)
.../theme_socialProviderConfig_signUpStep_customTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+154 Bytes
(100%)
...ocialProviderConfig_signUpStep_defaultMaterialTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+372 Bytes
(100%)
...ocialProviderConfig_signUpStep_defaultMaterialTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+72 Bytes
(100%)
...cialProviderConfig_signUpStep_defaultMaterialTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+413 Bytes
(100%)
...cialProviderConfig_signUpStep_defaultMaterialTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+157 Bytes
(100%)
...e_socialProviderConfig_signUpStep_highContrastTheme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+307 Bytes
(100%)
...e_socialProviderConfig_signUpStep_highContrastTheme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+54 Bytes
(100%)
..._socialProviderConfig_signUpStep_highContrastTheme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+263 Bytes
(100%)
..._socialProviderConfig_signUpStep_highContrastTheme_lightMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+236 Bytes
(100%)
...heme_socialProviderConfig_signUpStep_material2Theme_darkMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+12 Bytes
(100%)
...heme_socialProviderConfig_signUpStep_material2Theme_darkMode_mobileGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+258 Bytes
(100%)
...eme_socialProviderConfig_signUpStep_material2Theme_lightMode_laptopGeometry.png
Oops, something went wrong.
Binary file modified
BIN
+131 Bytes
(100%)
...eme_socialProviderConfig_signUpStep_material2Theme_lightMode_mobileGeometry.png
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like that you reference the issue that leads to such a "weird" workaround.