fix(textarea): remove autocomplete prop

This commit is contained in:
Manu Mtz.-Almeida
2018-08-19 19:00:37 +02:00
parent ed5c8ebf09
commit 5989f15952
4 changed files with 1 additions and 15 deletions

View File

@ -67,11 +67,6 @@ export class Textarea implements TextareaComponent {
*/
@Prop() autocapitalize = 'none';
/**
* Indicates whether the value of the control can be automatically completed by the browser. Defaults to `"off"`.
*/
@Prop() autocomplete = 'off';
/**
* This Boolean attribute lets you specify that a form control should have input focus when the page loads. Defaults to `false`.
*/
@ -256,7 +251,6 @@ export class Textarea implements TextareaComponent {
class="native-textarea"
ref={el => this.inputEl = el as HTMLTextAreaElement}
autoCapitalize={this.autocapitalize}
// autoComplete={this.autocomplete}
autoFocus={this.autofocus}
disabled={this.disabled}
maxLength={this.maxlength}