1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2025-08-18 18:24:56 +02:00
Files
.config
.run
.workdir
Agent
Common
Controller
Docker
Utils
Web
Phantom.Web
Phantom.Web.Bootstrap
Phantom.Web.Components
Dialogs
Forms
Base
Fields
Form.razor
FormButtonSubmit.cs
FormLabel.razor
FormModel.cs
FormNumberInput.razor
FormNumberInputType.cs
FormSelectInput.razor
FormSubmitError.razor
FormTextInput.razor
FormTextInputType.cs
FormValidationMessage.razor
Graphics
Tables
Utils
Phantom.Web.Components.csproj
PhantomComponent.cs
_Imports.razor
Phantom.Web.Services
.dockerignore
.gitattributes
.gitignore
AddMigration.bat
AddMigration.sh
Directory.Build.props
Directory.Build.targets
Dockerfile
LICENSE
Packages.props
PhantomPanel.sln
README.md
global.json

22 lines
675 B
Plaintext

@inherits FormInputBaseDebounced<string>
<FormLabel Id="@Id" Label="@Label" LabelFragment="@LabelFragment" />
<InputFieldText @ref="FormField"
Type="@Type"
Value="@Value"
ValueChanged="@ValueChanged"
ValueExpression="@ValueExpression"
OnChange="@OnChangeDebounced"
OnBlur="@OnBlur"
AdditionalAttributes="@GetAttributes("form-control")" />
<FormValidationMessage For="@ValueExpression" />
@code {
[Parameter]
public FormTextInputType Type { get; set; } = FormTextInputType.Text;
protected override ICustomFormField FormField { get; set; } = null!;
}