-
Notifications
You must be signed in to change notification settings - Fork 11
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
[Autofill] Introduce password import promotion prompt in autofill.js #631
Merged
Conversation
This file contains 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
dbajpeyi
force-pushed
the
dbajpeyi/import-promotion
branch
4 times, most recently
from
August 14, 2024 17:16
8202505
to
a5438fd
Compare
dbajpeyi
changed the title
wip: attach new tooltip type for password promotion
[Autofill] attach new tooltip type for password promotion
Aug 15, 2024
dbajpeyi
changed the title
[Autofill] attach new tooltip type for password promotion
[Autofill] attach new tooltip type for password import promotion
Aug 15, 2024
dbajpeyi
changed the title
[Autofill] attach new tooltip type for password import promotion
[Autofill] Introduce password import promotion prompt in autofill.js
Aug 15, 2024
dbajpeyi
force-pushed
the
dbajpeyi/import-promotion
branch
5 times, most recently
from
August 17, 2024 04:59
d3a6df2
to
36649c9
Compare
dbajpeyi
force-pushed
the
dbajpeyi/import-promotion
branch
18 times, most recently
from
August 27, 2024 11:50
9693d58
to
8bdc694
Compare
dbajpeyi
force-pushed
the
dbajpeyi/import-promotion
branch
6 times, most recently
from
September 3, 2024 15:32
0907ff6
to
d31aa2f
Compare
GioSensation
reviewed
Sep 4, 2024
GioSensation
reviewed
Sep 4, 2024
dbajpeyi
force-pushed
the
dbajpeyi/import-promotion
branch
2 times, most recently
from
September 4, 2024 11:18
3e2ae3e
to
1dffe0d
Compare
dbajpeyi
force-pushed
the
dbajpeyi/import-promotion
branch
from
September 4, 2024 12:19
8d3c2dc
to
ac93a2a
Compare
GioSensation
approved these changes
Sep 4, 2024
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.
Everything's looking pretty good. Just a few minor notes.
dbajpeyi
force-pushed
the
dbajpeyi/import-promotion
branch
4 times, most recently
from
September 5, 2024 11:15
715366f
to
bceb519
Compare
dbajpeyi
force-pushed
the
dbajpeyi/import-promotion
branch
from
September 5, 2024 11:15
bceb519
to
de63b74
Compare
This was referenced Sep 5, 2024
CDRussell
pushed a commit
to duckduckgo/Android
that referenced
this pull request
Sep 11, 2024
Task/Issue URL: https://app.asana.com/0/1208264544627947/1208264544627947 Autofill Release: https://github.com/duckduckgo/duckduckgo-autofill/releases/tag/13.1.0 ## Description Updates Autofill to version [13.1.0](https://github.com/duckduckgo/duckduckgo-autofill/releases/tag/13.1.0). ### Autofill 13.1.0 release notes ## What's Changed https://app.asana.com/0/72649045549333/1201480346793878/f Adding password import promotion support. There are no breaking API changes, hence minor version bump! * Update password-related json files (2024-08-15) by @daxmobile in duckduckgo/duckduckgo-autofill#632 * Update password-related json files (2024-08-29) by @daxmobile in duckduckgo/duckduckgo-autofill#644 * Update password-related json files (2024-08-30) by @daxmobile in duckduckgo/duckduckgo-autofill#645 * Update password-related json files (2024-09-03) by @daxmobile in duckduckgo/duckduckgo-autofill#646 * [Autofill] Introduce password import promotion prompt in autofill.js by @dbajpeyi in duckduckgo/duckduckgo-autofill#631 * [Locales] Credentials import by @dbajpeyi in duckduckgo/duckduckgo-autofill#647 * [Credentials Import] remove API response by @dbajpeyi in duckduckgo/duckduckgo-autofill#648 * [Credentials Import] Check local credentials before showing prompt by @dbajpeyi in duckduckgo/duckduckgo-autofill#650 * [Credentials import] If no details are available don't show the tooltip by @dbajpeyi in duckduckgo/duckduckgo-autofill#649 **Full Changelog**: duckduckgo/duckduckgo-autofill@12.2.0...13.1.0 ## Steps to test This release has been tested during autofill development. For smoke test steps see [this task](https://app.asana.com/0/1198964220583541/1200583647142330/f). Co-authored-by: dbajpeyi <3018923+dbajpeyi@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Reviewer: @GioSensation
Asana: https://app.asana.com/0/481882893211075/1208037181667142/f
Description
Adding a new API
startPasswordimportFlow
for native apps, and extendinggetAvailableInputTypes
to pass a new available input type calledpasswordImport?: boolean
that would be calculated on the native side.Forms.js
, we will test if this input type is available, and if it is then we do not add the icons and it's handlers,HTMLTooltipUIController.js
we check if passwordImport is available intopContextData
and we render a special kind of tooltip UI.ImportPasswordTooltip.js
Steps to test