@namespace Connected.Components @using Connected.Extensions; @inherits InputBase
@if (Adornment == Adornment.Start) { } @if (Disabled) { @*Note: this div must always be there to avoid crashes in WASM, but it is hidden most of the time except if ChildContent should be shown. In Disabled state the tabindex attribute must NOT be set at all or else it will get focus on click *@
@ChildContent
} else { @*Note: this div must always be there to avoid crashes in WASM, but it is hidden most of the time except if ChildContent should be shown.*@
@ChildContent
} @if (_showClearable && !Disabled) { } @if (Adornment == Adornment.End) { } @if (Variant == Variant.Outlined) {
}