Skip to content

Commit be11870

Browse files
committed
chore(textarea): add resizemode param
1 parent 9ddc736 commit be11870

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/textarea/overview.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ The Blazor TextArea provides various parameters to configure the component:
5353
| ----------- | ----------- | ----------- |
5454
| `AutoCapitalize` | `string` | A `string` that maps to the [`autocapitalize`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize) attribute of the HTML element. It's applicable only for touch devices and virtual keyboards. |
5555
| `AutoComplete` | `bool` | Maps to the autocomplete attribute of the HTML `<textarea>`. |
56-
| `AutoSize` | `bool` | Specifies if the TextArea will adjust its height based on the user input. You can [use CSS to limit the resizing up to a max height]({%slug textarea-kb-autosize-max-height%}). |
56+
| `AutoSize` | `bool` | Specifies if the TextArea will adjust its height based on the user input. You can [use CSS to limit the resizing up to a max height]({%slug textarea-kb-autosize-max-height%}). This parameter will be deprecated in a future version. Use `ResizeMode` with `Auto` value instead. |
57+
| `ResizeMode` | `TextAreaResizeMode?` | Specifies the TextArea's resize behavior. Default behavior is the one set by the browser. |
5758
| `Class` | `string` | The custom CSS class to be rendered on the `<span class="k-textarea">` element. |
5859
| `Cols` | `int?` | Maps to the `cols` attribute of the HTML `<textarea>` element. Do not use together with `Width`.
5960
| `DebounceDelay` | `int` | Specifies the time in milliseconds between the last typed symbol and the updating of the value. The default value is 150ms. |

0 commit comments

Comments
 (0)