docs(textarea): available autocapitalize options (#24574)

This commit is contained in:
Sean Perkins
2022-01-13 13:00:33 -05:00
committed by GitHub
parent e284d7a2c7
commit e00c9cbd4c
3 changed files with 4 additions and 3 deletions

View File

@ -2722,7 +2722,7 @@ export namespace Components {
*/
"autoGrow": boolean;
/**
* Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user.
* Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user. Available options: `"off"`, `"none"`, `"on"`, `"sentences"`, `"words"`, `"characters"`.
*/
"autocapitalize": string;
/**
@ -6430,7 +6430,7 @@ declare namespace LocalJSX {
*/
"autoGrow"?: boolean;
/**
* Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user.
* Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user. Available options: `"off"`, `"none"`, `"on"`, `"sentences"`, `"words"`, `"characters"`.
*/
"autocapitalize"?: string;
/**