mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 02:31:34 +08:00
chore(): update to ionic-rules/strict
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
import { Component, Element, Event, EventEmitter, Prop, State, Watch } from '@stencil/core';
|
||||
|
||||
import { Color, InputChangeEvent, Mode, StyleEvent } from '../../interface';
|
||||
import { debounceEvent, deferEvent, renderHiddenInput } from '../../utils/helpers';
|
||||
import { TextareaComponent } from '../input/input-base';
|
||||
|
||||
|
||||
@Component({
|
||||
tag: 'ion-textarea',
|
||||
styleUrls: {
|
||||
@ -245,7 +245,7 @@ export class Textarea implements TextareaComponent {
|
||||
return (
|
||||
<textarea
|
||||
class="native-textarea"
|
||||
ref={(el) => this.inputEl = el as HTMLTextAreaElement}
|
||||
ref={el => this.inputEl = el as HTMLTextAreaElement}
|
||||
autoCapitalize={this.autocapitalize}
|
||||
// autoComplete={this.autocomplete}
|
||||
autoFocus={this.autofocus}
|
||||
|
Reference in New Issue
Block a user