Directive for inputs disabling browser's auto-complete/auto-fill functionalities. Aims to handle the newest versions of Chrome, Edge, Opera, Safari and Firefox.
This library was generated with Angular CLI version 11.2.6, but should work with every Angular version.
Just run:
ng add @ngx-ext/disabled-autocomplete
Or manually: npm install @ngx-ext/disabled-autocomplete
, and then import DisabledAutocompleteModule
to your AppModule or wherever needed.
<input type="search" name="search" disabledAutocomplete />
- Makes the input
readonly
until focused (with a fix for mobile Safari) - Sets random id (if no id defined already)
- Sets
autocomplete="new-password"
- Sets
autocapitalize="none"
(only if not set) - Sets
spellcheck="off"
(only if not set) - Sets
autocorrect="off"
(only if not set)