mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-01-02 11:09:42 -05:00
48 lines
1.6 KiB
Plaintext
48 lines
1.6 KiB
Plaintext
@using System.Linq.Expressions
|
|
|
|
<InputText @attributes="AdditionalAttributes"
|
|
id="@Id"
|
|
Value="@Value"
|
|
ValueChanged="ValueChanged"
|
|
ValueExpression="ValueExpression"
|
|
placeholder="@Placeholder"
|
|
class="bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg focus:ring-primary-500 focus:border-primary-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-primary-500 dark:focus:border-primary-500" />
|
|
|
|
@code {
|
|
/// <summary>
|
|
/// Gets or sets the ID of the input field.
|
|
/// </summary>
|
|
[Parameter]
|
|
public required string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the value of the input field.
|
|
/// </summary>
|
|
[Parameter]
|
|
public required string Value { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the event callback that is triggered when the value changes.
|
|
/// </summary>
|
|
[Parameter]
|
|
public required EventCallback<string?> ValueChanged { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the expression that identifies the value property.
|
|
/// </summary>
|
|
[Parameter]
|
|
public required Expression<Func<string>> ValueExpression { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the placeholder text for the input field.
|
|
/// </summary>
|
|
[Parameter]
|
|
public required string Placeholder { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets additional attributes for the input field.
|
|
/// </summary>
|
|
[Parameter(CaptureUnmatchedValues = true)]
|
|
public Dictionary<string, object?>? AdditionalAttributes { get; set; } = new();
|
|
}
|