This commit is contained in:
Cory LaViska
2021-11-17 09:22:41 -05:00
parent 1a4f330bd5
commit d140dc2c71

View File

@@ -96,13 +96,7 @@ export default class SlTextarea extends LitElement {
@property({ type: Boolean, reflect: true }) invalid = false;
/** The textarea's autocaptialize attribute. */
@property() autocapitalize:
| 'off'
| 'none'
| 'on'
| 'sentences'
| 'words'
| 'characters';
@property() autocapitalize: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters';
/** The textarea's autocorrect attribute. */
@property() autocorrect: string;