feat(centralui): DialogHost ShowAsync<T> custom-content + focus trap/restore + backdrop hook (T33a)
This commit is contained in:
@@ -211,6 +211,12 @@ public sealed class QueryStringDrillInTests
|
||||
=> Task.FromResult(true);
|
||||
public Task<string?> PromptAsync(string title, string label, string initialValue = "", string? placeholder = null)
|
||||
=> Task.FromResult<string?>(null);
|
||||
|
||||
public Task<TResult?> ShowAsync<TResult>(
|
||||
string title,
|
||||
Microsoft.AspNetCore.Components.RenderFragment<DialogContext<TResult>> body,
|
||||
string? size = null)
|
||||
=> Task.FromResult<TResult?>(default);
|
||||
}
|
||||
|
||||
private sealed class TransportImportFixture : BunitContext
|
||||
|
||||
Reference in New Issue
Block a user