2020-05-29 00:33:49 +08:00
|
|
|
|
@namespace AntDesign
|
2020-05-20 12:57:16 +08:00
|
|
|
|
@inherits Input
|
2020-03-23 09:31:08 +08:00
|
|
|
|
<!--TODO: minheight, maxheight, onResize-->
|
|
|
|
|
|
2020-04-23 17:13:56 +08:00
|
|
|
|
<textarea class="@ClassMapper.Class" style="@Style" @attributes="Attributes" id="@Id" placeholder="@Placeholder" @bind="Value"
|
|
|
|
|
@ref="InputEl"
|
2020-03-23 09:31:08 +08:00
|
|
|
|
@oninput="OnInputAsync"
|
2020-03-31 21:23:25 +08:00
|
|
|
|
@onkeypress="OnPressEnterAsync" />
|
2020-03-23 09:31:08 +08:00
|
|
|
|
|
2020-03-31 21:23:25 +08:00
|
|
|
|
@if (AutoSize)
|
|
|
|
|
{
|
|
|
|
|
<textarea class="@ClassMapper.Class" style="position:absolute;z-index:-1; visibility: hidden;height: 0px;overflow-y:hidden; @_hiddenWidth" @ref="_hiddenEle">@Value</textarea>
|
2020-04-16 12:05:59 +08:00
|
|
|
|
}
|