Kimi.MudBlazorExtentions
1.0.5
dotnet add package Kimi.MudBlazorExtentions --version 1.0.5
NuGet\Install-Package Kimi.MudBlazorExtentions -Version 1.0.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Kimi.MudBlazorExtentions" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Kimi.MudBlazorExtentions --version 1.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Kimi.MudBlazorExtentions, 1.0.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Kimi.MudBlazorExtentions as a Cake Addin #addin nuget:?package=Kimi.MudBlazorExtentions&version=1.0.5 // Install Kimi.MudBlazorExtentions as a Cake Tool #tool nuget:?package=Kimi.MudBlazorExtentions&version=1.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
MudBlazor Extensions
This project is a collection of extensions for MudBlazor components. The extensions are designed to make it easier to use MudBlazor components in your projects.
Installation
Install Package
dotnet add package Kimi.MudBlazorExtensions
Components
- DialogBox
//Suport Nested Class Type
await _dialogService.InputBoxAsync<GetIssuesResponse?>("Input Box", "Please input your GetIssuesResponse");
//Support Tuple Type
await _dialogService.InputBoxAsync<(string Name, string Password, bool IsOk)>("Input Box", "Please input your credential", labels: ["Name", "Password", "Is Ok"]);
//Support Primitive Type
await _dialogService.InputBoxAsync<bool?>("Input Box", "Please input your yes/no");
await _dialogService.InputBoxAsync<DateOnly?>("Input Box", "Please input your Date");
await _dialogService.InputBoxAsync<string?>("Input Box", "Please input your String");
await _dialogService.InputBoxAsync<decimal?>("Input Box", "Please input your Decimal");
await _dialogService.InputBoxAsync<DateTime?>("Input Box", "Please input your DateTime");
await _dialogService.InputBoxAsync<TimeOnly?>("Input Box", "Please input your Time");
- SelectDialog
var multiSelect = await _dialogService.MultiSelectBoxAsync<int>("MultiSelect Box", new List<SelectDialogItem<int>> {
new SelectDialogItem<int>{ Text = "Hello1", Value=1 },
new SelectDialogItem<int>{ Text = "Hello2", Value=2 },
new SelectDialogItem<int>{ Text = "Hello3", Value=3 },
}, MudBlazor.Color.Default);
var singleSelect = await _dialogService.SelectBoxAsync<int>("Select Box", new List<SelectDialogItem<int>> {
new SelectDialogItem<int>{ Text = "Hello1", Value=1 },
new SelectDialogItem<int>{ Text = "Hello2", Value=2 },
new SelectDialogItem<int>{ Text = "Hello3", Value=3 },
}, MudBlazor.Color.Default);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Microsoft.AspNetCore.Components.Web (>= 8.0.8)
- mudblazor (>= 7.8.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.