D20Tek.BlazorComponents.Modal 1.10.5

dotnet add package D20Tek.BlazorComponents.Modal --version 1.10.5
                    
NuGet\Install-Package D20Tek.BlazorComponents.Modal -Version 1.10.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="D20Tek.BlazorComponents.Modal" Version="1.10.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="D20Tek.BlazorComponents.Modal" Version="1.10.5" />
                    
Directory.Packages.props
<PackageReference Include="D20Tek.BlazorComponents.Modal" />
                    
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 D20Tek.BlazorComponents.Modal --version 1.10.5
                    
#r "nuget: D20Tek.BlazorComponents.Modal, 1.10.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 D20Tek.BlazorComponents.Modal@1.10.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=D20Tek.BlazorComponents.Modal&version=1.10.5
                    
Install as a Cake Addin
#tool nuget:?package=D20Tek.BlazorComponents.Modal&version=1.10.5
                    
Install as a Cake Tool

d20Tek Blazor-Components

Release CI/CD Build

Introduction

This package suite provides custom, resuable Blazor components. These components are easy to use right out of the box, so developers can focus on building their applications. To keep the libraries small and independent, we have a project and NuGet package for each component, so that developers can just include what they need (and a huge component library).

Supported components: Spinner, ContentSpinner, Timer, SpanTimer, CountdownTimer, ToggleSwitch. Future components: Modal.

Installation

These libraries are in NuGet packages so they are easy to add to your project. To install these packages into your solution, you can use the Package Manager. In PM, please use the following commands:

PM > Install-Package D20Tek.BlazorComponents.Spinner -Version 1.10.1
PM > Install-Package D20Tek.BlazorComponents.Timer -Version 1.10.1
PM > Install-Package D20Tek.BlazorComponents.ToggleSwitch -Version 1.10.1

To install in the Visual Studio UI, go to the Tools menu > "Manage NuGet Packages". Then search for D20Tek.BlazorComponents.Spinner and install it from there.

Read more about this release in our Release Notes.

Usage

Once you've installed the component NuGet package, you can start using it in your Blazor project. For this example we will use the Spinner component, but other components will follow the same usage pattern.

  1. You must add our namespace to your Blazor project's _Imports.razor file to make our types available to all of your pages/components.
@using D20Tek.BlazorComponents
  1. Place the component in your razor file (for example in your Index.Razor file):
<Spinner />
  1. Many components have additional parameters that you can call (see the component documentation for list of available parameters).
<Spinner Type=SpinType.Pulse Label="Loading..." />
  1. Further customization is available by defining your own CSS or styles on the component.
<Spinner Type=SpinType.Hourglass class="my-custom-spinner" style="color: red; height: 120px; width: 120px" />
  1. The ContentSpinner component allows you to spin any child content, like an image.
<ContentSpinner Size=Size.Medium>
    <img src="./images/my-image.png" style="width: 100%; height: 100%" />
</ContentSpinner>

Samples:

For more detailed examples on how to use the D20Tek.BlazorComponents libraries, please review the following samples:

Feedback

If you use these libraries and have any feedback, bugs, or suggestions, please file them in the Issues section of this repository.

Product Compatible and additional computed target framework versions.
.NET 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 is compatible.  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

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.10.5 33 3/1/2026