69 lines
1.2 KiB
TypeScript
69 lines
1.2 KiB
TypeScript
export const AutocompleteOptions = [
|
|
// Personal Information
|
|
"name",
|
|
"honorific-prefix",
|
|
"given-name",
|
|
"additional-name",
|
|
"family-name",
|
|
"honorific-suffix",
|
|
"nickname",
|
|
"phone",
|
|
|
|
// Contact Information
|
|
"email",
|
|
"username",
|
|
"new-password",
|
|
"current-password",
|
|
"one-time-code",
|
|
"organization-title",
|
|
"organization",
|
|
|
|
// Address Fields
|
|
"street-address",
|
|
"address-line1",
|
|
"address-line2",
|
|
"address-line3",
|
|
"address-level4",
|
|
"address-level3",
|
|
"address-level2",
|
|
"address-level1",
|
|
"country",
|
|
"country-name",
|
|
"postal-code",
|
|
|
|
// Phone Numbers
|
|
"tel",
|
|
"tel-country-code",
|
|
"tel-national",
|
|
"tel-area-code",
|
|
"tel-local",
|
|
"tel-extension",
|
|
|
|
// Dates
|
|
"bday",
|
|
"bday-day",
|
|
"bday-month",
|
|
"bday-year",
|
|
|
|
// Payment Information
|
|
"cc-name",
|
|
"cc-given-name",
|
|
"cc-additional-name",
|
|
"cc-family-name",
|
|
"cc-number",
|
|
"cc-exp",
|
|
"cc-exp-month",
|
|
"cc-exp-year",
|
|
"cc-csc",
|
|
"cc-type",
|
|
|
|
// Additional Options
|
|
"sex",
|
|
"url",
|
|
"photo",
|
|
|
|
// Special Values
|
|
"on", // Enables autofill (default)
|
|
"off", // Disables autofill
|
|
] as const;
|