RapidFire.Core.Blazor
8.0.10
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package RapidFire.Core.Blazor --version 8.0.10
NuGet\Install-Package RapidFire.Core.Blazor -Version 8.0.10
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" />
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" />
<PackageReference Include="RapidFire.Core.Blazor" />
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: RapidFire.Core.Blazor, 8.0.10"
#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
#: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
#tool nuget:?package=RapidFire.Core.Blazor&version=8.0.10
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
🚀 RapidFire 8.0.9.3 – Release Notes
✨ New Component
<HolidayCalendarRF />
A powerful yearly calendar component to manage and visualize office holidays, leaves, and work-from-home (WFH) events. Designed for flexibility, it supports custom data models, dynamic event loading, editing, and lifecycle hooks.
📌 Usage
<HolidayCalendarRF Model="Holiday"
Color="red"
AdditionalEvents="additionalEvents"
Editable
OnBeforeSave="onb4save"
OnAfterSave="onaftsave"
OnDelete="ondelete" />
🔄 Load Additional Events
async Task<List<Holiday>> additionalEvents(int year)
{
if (year > DateTime.Now.Year) return new();
return new List<Holiday>()
{
new Holiday { Group="Casual Leave", StartDate=new DateTime(year,5,1), EndDate=new DateTime(year,5,1), Title="Chuti", Color="#ffca7c" },
new Holiday { Group="Casual Leave", StartDate=new DateTime(year,5,2), EndDate=new DateTime(year,5,2), Title="Chuti", Color="#ffca7c" },
new Holiday { Group="Casual Leave", StartDate=new DateTime(year,7,1), EndDate=new DateTime(year,7,1), Title="Chuti", Color="#ffca7c" },
new Holiday { Group="Sick Leave", StartDate=new DateTime(year,1,1), EndDate=new DateTime(year,1,1), Title="Chuti", Color="gray" },
new Holiday { Group="Sick Leave", StartDate=new DateTime(year,2,1), EndDate=new DateTime(year,2,3), Title="Chuti", Color="gray" },
new Holiday { Group="Sick Leave", StartDate=new DateTime(year,9,21), EndDate=new DateTime(year,10,3), Title="Chuti", Color="gray" },
new Holiday { Group="WFH", StartDate=new DateTime(year,11,22),EndDate=new DateTime(year,11,22),Title="WFH", Color="blue" },
};
}
🔁 Lifecycle Hooks
Holiday onb4save(Holiday model)
{
// Modify the model before save if required
return model;
}
void onaftsave(Holiday model)
{
// Execute logic after save
}
void ondelete(Holiday model)
{
// Handle delete action
}
🧩 Custom Data Model
public class Holiday : HolidayRF
{
[Key]
public string HolidayId { get; set; } = Guid.NewGuid().ToString();
}
✨ Updates
DatePickerRF
- Enhanced validation for improved date handling and edge-case coverage.
FormRF
- Improved reset state behavior for more predictable and consistent form resets.
| 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 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.
-
net8.0
- AWSSDK.S3 (>= 3.7.416.9)
- Azure.Storage.Blobs (>= 12.24.0)
- ClosedXML (>= 0.104.2)
- DynamicExpresso.Core (>= 2.19.2)
- EntityFramework (>= 6.5.1)
- FastReport.OpenSource (>= 2025.1.0)
- FastReport.OpenSource.Web (>= 2025.1.0)
- FirebaseAdmin (>= 3.2.0)
- FireSharp (>= 2.0.4)
- FireSharp.Serialization.JsonNet (>= 1.1.0)
- MailKit (>= 4.8.0)
- Microsoft.AspNetCore.Authentication.AzureAD.UI (>= 6.0.36)
- Microsoft.AspNetCore.Authentication.Facebook (>= 8.0.11)
- Microsoft.AspNetCore.Authentication.Google (>= 8.0.11)
- Microsoft.AspNetCore.Authentication.Twitter (>= 8.0.11)
- Microsoft.AspNetCore.Identity (>= 2.3.1)
- Microsoft.AspNetCore.Mvc (>= 2.1.3)
- Microsoft.AspNetCore.Mvc.NewtonsoftJson (>= 8.0.11)
- Microsoft.AspNetCore.SignalR.Client (>= 8.0.16)
- Microsoft.Bcl.AsyncInterfaces (>= 8.0.0)
- Microsoft.EntityFrameworkCore (>= 8.0.11)
- Microsoft.EntityFrameworkCore.DynamicLinq (>= 8.4.8)
- Microsoft.EntityFrameworkCore.SqlServer (>= 8.0.11)
- Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite (>= 8.0.11)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.1)
- Microsoft.Extensions.Configuration.Json (>= 8.0.1)
- Microsoft.Extensions.Localization (>= 8.0.11)
- Microsoft.IdentityModel.JsonWebTokens (>= 8.2.0)
- Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 8.2.0)
- Microsoft.IdentityModel.Tokens (>= 8.2.0)
- Microsoft.SqlServer.SqlManagementObjects (>= 171.30.0)
- MongoDB.Driver (>= 3.0.0)
- Newtonsoft.Json (>= 13.0.3)
- Novell.Directory.Ldap.NETStandard (>= 3.6.0)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 8.0.10)
- Quartz (>= 3.13.1)
- Quartz.AspNetCore (>= 3.13.1)
- Quartz.Serialization.Json (>= 3.7.0)
- RestSharp (>= 112.1.0)
- System.DirectoryServices (>= 8.0.0)
- System.IdentityModel.Tokens.Jwt (>= 8.2.0)
- System.Linq.Dynamic.Core (>= 1.6.4)
- System.Security.Cryptography.Xml (>= 8.0.2)
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 | 118 | 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
Central login with shared login introduce