mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
fix(textarea): textarea with autogrow will size to its contents (#24205)
Resolves #24793, #21242
This commit is contained in:
4
core/src/components.d.ts
vendored
4
core/src/components.d.ts
vendored
@ -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;
|
||||
/**
|
||||
|
Reference in New Issue
Block a user