1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-02-14 01:01:31 +01:00

[PM-8027] Cleaning up implementation details

This commit is contained in:
Cesar Gonzalez 2024-05-31 15:17:51 -05:00
parent dafdb43731
commit 52db6775e9
No known key found for this signature in database
GPG Key ID: 3381A5457F8CCECF

View File

@ -6,7 +6,7 @@ import { AutoFillConstants } from "./autofill-constants";
export class InlineMenuFieldQualificationService {
private searchFieldNamesSet = new Set(AutoFillConstants.SearchFieldNames);
private excludedAutofillLoginTypesSet = new Set(AutoFillConstants.ExcludedAutofillLoginTypes);
private usernameFieldTypes = new Set(["text", "email", "tel"]);
private usernameFieldTypes = new Set(["text", "email", "number", "tel"]);
private fieldIgnoreListString = AutoFillConstants.FieldIgnoreList.join(",");
private passwordFieldExcludeListString = AutoFillConstants.PasswordFieldExcludeList.join(",");
private autofillFieldKeywordsMap: WeakMap<AutofillField, string> = new WeakMap();