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                
#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                

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 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.

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.0.5 40 1/17/2025
1.0.4 35 1/16/2025
1.0.3 55 1/15/2025
1.0.1 103 11/25/2024
1.0.0 101 11/21/2024