RapidFire.Core.Blazor 8.0.10.1

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

Package Description

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 (1)

Showing the top 1 NuGet packages that depend on RapidFire.Core.Blazor:

Package Downloads
RapidFireUI

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
8.0.10.1 117 3/8/2026
8.0.10 116 3/1/2026
8.0.9.4 133 2/9/2026
8.0.9.3 157 1/31/2026
8.0.9.2 130 1/29/2026
8.0.9.1 229 12/21/2025
8.0.9 290 11/4/2025
8.0.8.9 215 10/4/2025
8.0.8.8 315 9/14/2025
8.0.8.7 199 9/5/2025
8.0.8.6 221 8/17/2025
8.0.8.5 202 7/27/2025
8.0.8.4 614 7/23/2025
8.0.8.3 182 7/19/2025
8.0.8.2 211 7/13/2025
8.0.8.1 169 7/5/2025
8.0.8 240 6/22/2025
8.0.7.9 248 6/19/2025
8.0.7.8 345 6/13/2025
8.0.7.7 253 6/4/2025
Loading failed

Release Notes – RapidFireUI 8.0.10.1

This is a minor update addressing data initialization behavior in the FormRF component.

Fix / Improvement

When setting static data in FormRF, the recommended approaches are now:

Option 1 – Using two-way binding

Use @bind-Data directly on the component.

Option 2 – Using a form reference

If the form is accessed using @ref="myForm" or @bind-form="myForm", set the data using:

myForm.SetData(myData);

instead of:

myForm.Data = myData;

New Method

SetData() has been introduced to properly initialize or update form data when using a form reference.

@bind-Data – existing supported approach

SetData() – newly introduced method for reference-based usage

This change ensures consistent data binding and proper form state updates.