fix(textarea): textarea with autogrow will size to its contents (#24205)

Resolves #24793, #21242
This commit is contained in:
Sean Perkins
2022-07-27 11:36:48 -04:00
committed by GitHub
parent 0390509919
commit a9cf2ab870
17 changed files with 56 additions and 34 deletions

View File

@ -2803,7 +2803,7 @@ export namespace Components {
}
interface IonTextarea {
/**
* If `true`, the element height will increase based on the value.
* If `true`, the textarea container will grow and shrink based on the contents of the textarea.
*/
"autoGrow": boolean;
/**
@ -6786,7 +6786,7 @@ declare namespace LocalJSX {
}
interface IonTextarea {
/**
* If `true`, the element height will increase based on the value.
* If `true`, the textarea container will grow and shrink based on the contents of the textarea.
*/
"autoGrow"?: boolean;
/**