|
|
|
|
@ -279,9 +279,131 @@ namespace Microsoft.AspNetCore.Components.Forms
|
|
|
|
|
public static string FieldClass(this Microsoft.AspNetCore.Components.Forms.EditContext editContext, in Microsoft.AspNetCore.Components.Forms.FieldIdentifier fieldIdentifier) { throw null; }
|
|
|
|
|
public static string FieldClass<TField>(this Microsoft.AspNetCore.Components.Forms.EditContext editContext, System.Linq.Expressions.Expression<System.Func<TField>> accessor) { throw null; }
|
|
|
|
|
}
|
|
|
|
|
public partial class EditForm : Microsoft.AspNetCore.Components.ComponentBase
|
|
|
|
|
{
|
|
|
|
|
public EditForm() { }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute(CaptureUnmatchedValues=true)]
|
|
|
|
|
public System.Collections.Generic.IReadOnlyDictionary<string, object> AdditionalAttributes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public Microsoft.AspNetCore.Components.RenderFragment<Microsoft.AspNetCore.Components.Forms.EditContext> ChildContent { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public Microsoft.AspNetCore.Components.Forms.EditContext EditContext { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public object Model { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public Microsoft.AspNetCore.Components.EventCallback<Microsoft.AspNetCore.Components.Forms.EditContext> OnInvalidSubmit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public Microsoft.AspNetCore.Components.EventCallback<Microsoft.AspNetCore.Components.Forms.EditContext> OnSubmit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public Microsoft.AspNetCore.Components.EventCallback<Microsoft.AspNetCore.Components.Forms.EditContext> OnValidSubmit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
|
|
protected override void OnParametersSet() { }
|
|
|
|
|
}
|
|
|
|
|
public abstract partial class InputBase<T> : Microsoft.AspNetCore.Components.ComponentBase
|
|
|
|
|
{
|
|
|
|
|
protected InputBase() { }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute(CaptureUnmatchedValues=true)]
|
|
|
|
|
public System.Collections.Generic.IReadOnlyDictionary<string, object> AdditionalAttributes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
protected string CssClass { get { throw null; } }
|
|
|
|
|
protected T CurrentValue { get { throw null; } set { } }
|
|
|
|
|
protected string CurrentValueAsString { get { throw null; } set { } }
|
|
|
|
|
protected Microsoft.AspNetCore.Components.Forms.EditContext EditContext { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
protected string FieldClass { get { throw null; } }
|
|
|
|
|
protected Microsoft.AspNetCore.Components.Forms.FieldIdentifier FieldIdentifier { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public T Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public Microsoft.AspNetCore.Components.EventCallback<T> ValueChanged { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public System.Linq.Expressions.Expression<System.Func<T>> ValueExpression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
protected virtual string FormatValueAsString(T value) { throw null; }
|
|
|
|
|
public override System.Threading.Tasks.Task SetParametersAsync(Microsoft.AspNetCore.Components.ParameterCollection parameters) { throw null; }
|
|
|
|
|
protected abstract bool TryParseValueFromString(string value, out T result, out string validationErrorMessage);
|
|
|
|
|
}
|
|
|
|
|
public partial class InputCheckbox : Microsoft.AspNetCore.Components.Forms.InputBase<bool>
|
|
|
|
|
{
|
|
|
|
|
public InputCheckbox() { }
|
|
|
|
|
protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
|
|
protected override bool TryParseValueFromString(string value, out bool result, out string validationErrorMessage) { throw null; }
|
|
|
|
|
}
|
|
|
|
|
public partial class InputDate<T> : Microsoft.AspNetCore.Components.Forms.InputBase<T>
|
|
|
|
|
{
|
|
|
|
|
public InputDate() { }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public string ParsingErrorMessage { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
|
|
protected override string FormatValueAsString(T value) { throw null; }
|
|
|
|
|
protected override bool TryParseValueFromString(string value, out T result, out string validationErrorMessage) { throw null; }
|
|
|
|
|
}
|
|
|
|
|
public partial class InputNumber<T> : Microsoft.AspNetCore.Components.Forms.InputBase<T>
|
|
|
|
|
{
|
|
|
|
|
public InputNumber() { }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public string ParsingErrorMessage { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
|
|
protected override string FormatValueAsString(T value) { throw null; }
|
|
|
|
|
protected override bool TryParseValueFromString(string value, out T result, out string validationErrorMessage) { throw null; }
|
|
|
|
|
}
|
|
|
|
|
public partial class InputSelect<T> : Microsoft.AspNetCore.Components.Forms.InputBase<T>
|
|
|
|
|
{
|
|
|
|
|
public InputSelect() { }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public Microsoft.AspNetCore.Components.RenderFragment ChildContent { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
|
|
protected override bool TryParseValueFromString(string value, out T result, out string validationErrorMessage) { throw null; }
|
|
|
|
|
}
|
|
|
|
|
public partial class InputText : Microsoft.AspNetCore.Components.Forms.InputBase<string>
|
|
|
|
|
{
|
|
|
|
|
public InputText() { }
|
|
|
|
|
protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
|
|
protected override bool TryParseValueFromString(string value, out string result, out string validationErrorMessage) { throw null; }
|
|
|
|
|
}
|
|
|
|
|
public partial class InputTextArea : Microsoft.AspNetCore.Components.Forms.InputBase<string>
|
|
|
|
|
{
|
|
|
|
|
public InputTextArea() { }
|
|
|
|
|
protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
|
|
protected override bool TryParseValueFromString(string value, out string result, out string validationErrorMessage) { throw null; }
|
|
|
|
|
}
|
|
|
|
|
public partial class ValidationMessage<T> : Microsoft.AspNetCore.Components.ComponentBase, System.IDisposable
|
|
|
|
|
{
|
|
|
|
|
public ValidationMessage() { }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute(CaptureUnmatchedValues=true)]
|
|
|
|
|
public System.Collections.Generic.IReadOnlyDictionary<string, object> AdditionalAttributes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public System.Linq.Expressions.Expression<System.Func<T>> For { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
|
|
protected override void OnParametersSet() { }
|
|
|
|
|
void System.IDisposable.Dispose() { }
|
|
|
|
|
}
|
|
|
|
|
public partial class ValidationSummary : Microsoft.AspNetCore.Components.ComponentBase, System.IDisposable
|
|
|
|
|
{
|
|
|
|
|
public ValidationSummary() { }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute(CaptureUnmatchedValues=true)]
|
|
|
|
|
public System.Collections.Generic.IReadOnlyDictionary<string, object> AdditionalAttributes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
|
|
protected override void OnParametersSet() { }
|
|
|
|
|
void System.IDisposable.Dispose() { }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
namespace Microsoft.AspNetCore.Components.Routing
|
|
|
|
|
{
|
|
|
|
|
public partial class NavLink : Microsoft.AspNetCore.Components.ComponentBase, System.IDisposable
|
|
|
|
|
{
|
|
|
|
|
public NavLink() { }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public string ActiveClass { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute(CaptureUnmatchedValues=true)]
|
|
|
|
|
public System.Collections.Generic.IReadOnlyDictionary<string, object> AdditionalAttributes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public Microsoft.AspNetCore.Components.RenderFragment ChildContent { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
|
|
|
|
protected string CssClass { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
[Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
|
|
public Microsoft.AspNetCore.Components.Routing.NavLinkMatch Match { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
|
|
protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
|
|
public void Dispose() { }
|
|
|
|
|
protected override void OnInitialized() { }
|
|
|
|
|
protected override void OnParametersSet() { }
|
|
|
|
|
}
|
|
|
|
|
public enum NavLinkMatch
|
|
|
|
|
{
|
|
|
|
|
Prefix = 0,
|
|
|
|
|
|