Extensions.MudBlazor.StaticInput 2.0.0-rc.2

This is a prerelease version of Extensions.MudBlazor.StaticInput.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Extensions.MudBlazor.StaticInput --version 2.0.0-rc.2
                    
NuGet\Install-Package Extensions.MudBlazor.StaticInput -Version 2.0.0-rc.2
                    
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="Extensions.MudBlazor.StaticInput" Version="2.0.0-rc.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Extensions.MudBlazor.StaticInput" Version="2.0.0-rc.2" />
                    
Directory.Packages.props
<PackageReference Include="Extensions.MudBlazor.StaticInput" />
                    
Project file
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 Extensions.MudBlazor.StaticInput --version 2.0.0-rc.2
                    
#r "nuget: Extensions.MudBlazor.StaticInput, 2.0.0-rc.2"
                    
#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.
#addin nuget:?package=Extensions.MudBlazor.StaticInput&version=2.0.0-rc.2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Extensions.MudBlazor.StaticInput&version=2.0.0-rc.2&prerelease
                    
Install as a Cake Tool

<p align="center"> <img alt="MudBlazor.StaticInput" src="content/logo.png" style="width: 8%"/> <h1 align="center">MudBlazor.StaticInput</h1> </p>

GitHub License GitHub Actions Workflow Status NuGet Version NuGet Downloads

📖 Introduction 📖

MudBlazor.StaticInput is an extension package for the MudBlazor library.
Tailored specifically for Static Server-Side Rendered (static SSR) pages. It offers seamless integration of MudBlazor's Component design into your applications. Focusing particularly on components designed for forms and edit forms, in situations where interactive components are not feasible.
[example: Blazor Identity UI].

<a href="https://github.com/0phois/MudBlazor.StaticInput/tree/master/demo/StaticSample"> <img alt="Static Input Demo" src="content/StaticInput.png" /> </a>

🤔 Why MudBlazor.StaticInput? 🤔

  • Rapid SSSR Integration: Effortlessly add MudBlazor components to your static SSR pages, saving development time.
  • Focus on Forms: Streamline development of forms and edit forms, for use cases such as Microsoft Identity Login forms.
  • Preserved Look & Feel: Maintains the consistent design and user experience of MudBlazor. Ensuring uniformity across all pages.
  • Maintains Flexibility: By inheriting core MudBlazor components, StaticInput maintains the same flexibility as the original components.

🎁 What's Included 🎁

The set of components and features may extend over time. Currently, Static Input Components includes:

MudStaticButton

<details> <summary> A Material Design button that supports form actions such as 'submit' and 'reset' </summary>

<MudStaticButton Variant="Variant.Filled" Color="Color.Primary">Login</MudStaticButton>

</details>

Note: <MudButton> is 100% functional in forms when used correctly. The static component simply assists in assuring the correct usage.

MudStaticCheckBox

<details> <summary> Checkboxes are a great way to allow the user to make a selection of choices. </summary>

<MudStaticCheckBox @bind-Value="@RememberMe" Color="Color.Success">Remember Me</MudStaticCheckBox>
@code{
    public bool RememberMe { get; set; }
}

</details>

MudStaticSwitch

<details> <summary> Similar to a checkbox but visually different. The switch lets the user <i>switch</i> between two values with the tap of a button. </summary>

<MudStaticSwitch @bind-Value="@RememberMe" Color="Color.Success" UnCheckedColor="Color.Primary">Remember Me</MudStaticSwitch>
@code{
    public bool RememberMe { get; set; }
}

</details>

MudStaticTextField

<details> <summary> Text field components are used for receiving user provided information </summary>

<MudTextField @bind-Value="Password" Label="Password" Variant="Variant.Outlined" InputType="InputType.Password" 
              Adornment="Adornment.End" AdornmentIcon="@PasswordInputIcon"/>
@code {
    public string Password { get; set; }
}

</details>

🚀 Getting Started 🚀

To start using MudBlazor.StaticInput in your projects, simply install the package via NuGet Package Manager:

dotnet add package Extensions.MudBlazor.StaticInput

Note: MudBlazor should already be setup for your application

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

NuGet packages (6)

Showing the top 5 NuGet packages that depend on Extensions.MudBlazor.StaticInput:

Package Downloads
Chieratto.SDK.Frontend

Package Description

KurzSharp

Package Description

Chieratto.SDK.Frontend.Authentication

Package Description

Vorn.Aaas.Server.Interface

This package contains user interface components of Vorn Aaas Server.

AppLaunch.Themes

AppLaunch Themes contains the Core theme for use in AppLaunch projects.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on Extensions.MudBlazor.StaticInput:

Repository Stars
kurrent-io/KurrentDB
KurrentDB is a database that's engineered for modern software applications and event-driven architectures. Its event-native design simplifies data modeling and preserves data integrity while the integrated streaming engine solves distributed messaging challenges and ensures data consistency.
gudarzi/SaveHere
Cloud Download Manager for direct links and media files from Youtube/Spotify/etc with media converter and builtin proxy to bypass restrictions
Version Downloads Last Updated
3.2.0 34,731 2/20/2025
3.1.0 1,132 2/16/2025
3.0.1 6,237 1/23/2025
3.0.0 1,419 1/18/2025
3.0.0-beta.2 287 12/28/2024
3.0.0-beta.1 117 12/20/2024
2.1.5 26,433 10/21/2024
2.1.3 210 10/21/2024
2.1.2 8,320 8/19/2024
2.1.1 8,488 7/23/2024
2.1.0 581 7/20/2024
2.0.0 1,154 6/29/2024
2.0.0-rc.2 109 6/22/2024
1.0.1 1,262 4/3/2024
1.0.0 258 4/1/2024