Kimi.MudBlazorExtentions
1.1.5
dotnet add package Kimi.MudBlazorExtentions --version 1.1.5
NuGet\Install-Package Kimi.MudBlazorExtentions -Version 1.1.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.1.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Kimi.MudBlazorExtentions" Version="1.1.5" />
<PackageReference Include="Kimi.MudBlazorExtentions" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Kimi.MudBlazorExtentions --version 1.1.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Kimi.MudBlazorExtentions, 1.1.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.
#:package Kimi.MudBlazorExtentions@1.1.5
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Kimi.MudBlazorExtentions&version=1.1.5
#tool nuget:?package=Kimi.MudBlazorExtentions&version=1.1.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 is compatible. 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. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- FluentValidation (>= 12.1.1)
- Microsoft.AspNetCore.Components.Web (>= 8.0.22)
- MudBlazor (>= 8.15.0)
-
net9.0
- FluentValidation (>= 12.1.1)
- Microsoft.AspNetCore.Components.Web (>= 9.0.6)
- MudBlazor (>= 8.15.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.1.5 | 90 | 2/2/2026 |
| 1.1.4 | 95 | 1/30/2026 |
| 1.1.3 | 103 | 12/30/2025 |
| 1.1.2 | 174 | 12/24/2025 |
| 1.1.1 | 191 | 11/26/2025 |
| 1.1.0 | 176 | 7/10/2025 |
| 1.0.9 | 239 | 5/8/2025 |
| 1.0.8 | 211 | 4/25/2025 |
| 1.0.7 | 190 | 4/24/2025 |
| 1.0.6 | 210 | 4/23/2025 |
| 1.0.5 | 171 | 1/17/2025 |
| 1.0.4 | 135 | 1/16/2025 |
| 1.0.3 | 128 | 1/15/2025 |
| 1.0.1 | 165 | 11/25/2024 |
| 1.0.0 | 160 | 11/21/2024 |