You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Components/Components/InputControl/InputControl.razor

43 lines
1.4 KiB

2 years ago
@namespace Connected.Components
@inherits UIComponent
<div @attributes="UserAttributes" class="@Classname" style="@Style">
<div class="mud-input-control-input-container">
@InputContent
@if (!String.IsNullOrEmpty(Label))
{
<InputLabel Class="mud-input-label-inputcontrol" Variant="@Variant" Disabled=@Disabled Error="@Error"
Margin="@Margin" ForId="@ForId">
@Label
</InputLabel>
}
</div>
@if (Error || !String.IsNullOrEmpty(HelperText) || !String.IsNullOrEmpty(CounterText))
{
<div class="@HelperContainer">
<p class="@HelperClass">
<div class="d-flex">
@if (Error)
{
<div class="me-auto" id="@ErrorId">
@ErrorText
</div>
}
else if (!String.IsNullOrEmpty(HelperText))
{
<div class="me-auto">
@HelperText
</div>
}
@if (!String.IsNullOrEmpty(CounterText))
{
<div class="ms-auto">
@CounterText
</div>
}
</div>
</p>
</div>
}
@ChildContent
</div>