AlaskaAirlines / auro-form

Custom element that ....
https://auro.alaskaair.com/components/auro/form
Apache License 2.0
0 stars 0 forks source link

Support HTML autocomplete #9

Open blackfalcon opened 3 years ago

blackfalcon commented 3 years ago

Is your feature request related to a problem? Please describe.

The HTML autocomplete feature has been requested to provide automated assistance in filling out form field values

Describe the solution you'd like

An example was tested out with this pull request

Screen Shot 2021-11-23 at 1 00 56 PM

Additional context

Research completed with the linked POC determined that browser support is massively inconsistent. There is also another issue with the shadow DOM where typically a set of inputs that would all be aware of each other are not. This means that a user must click into each field in order to get the autocomplete.

The only feature that works consistently is autocomplete="off"CSS-Tricks reference

Scope of work

The scope of this issue would be to add support for the autocomplete attribute within the scope of the element's shadow DOM.

In addition to this, it needs to be clearly stated the limitation of this attribute and the shadow DOM.