diff --git a/src/components/input/input.ts b/src/components/input/input.ts index 6a13c658ba8..ca6f3e92143 100644 --- a/src/components/input/input.ts +++ b/src/components/input/input.ts @@ -98,6 +98,8 @@ import { Platform } from '../../platform/platform'; '[attr.max]="max" ' + '[attr.step]="step" ' + '[attr.maxlength]="maxlength" ' + + '[attr.autocomplete]="autocomplete" ' + + '[attr.autocorrect]="autocorrect" ' + '[attr.spellcheck]="spellcheck" ' + '[attr.autocapitalize]="autocapitalize" ' + '[placeholder]="placeholder" ' + @@ -110,6 +112,11 @@ import { Platform } from '../../platform/platform'; '(focus)="onFocus($event)" ' + '(keydown)="onKeydown($event)" ' + '[attr.name]="name" ' + + '[attr.maxlength]="maxlength" ' + + '[attr.autocomplete]="autocomplete" ' + + '[attr.autocorrect]="autocorrect" ' + + '[attr.spellcheck]="spellcheck" ' + + '[attr.autocapitalize]="autocapitalize" ' + '[placeholder]="placeholder" ' + '[disabled]="_disabled" ' + '[readonly]="_readonly">' +