1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00: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

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();