RapidFireUI 8.0.10.2
See the version list below for details.
dotnet add package RapidFireUI --version 8.0.10.2
NuGet\Install-Package RapidFireUI -Version 8.0.10.2
<PackageReference Include="RapidFireUI" Version="8.0.10.2" />
<PackageVersion Include="RapidFireUI" Version="8.0.10.2" />
<PackageReference Include="RapidFireUI" />
paket add RapidFireUI --version 8.0.10.2
#r "nuget: RapidFireUI, 8.0.10.2"
#:package RapidFireUI@8.0.10.2
#addin nuget:?package=RapidFireUI&version=8.0.10.2
#tool nuget:?package=RapidFireUI&version=8.0.10.2
Package Description
| 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. |
-
net8.0
- BuildBundlerMinifier2022 (>= 2.9.11)
- Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (>= 8.0.16)
- Microsoft.AspNetCore.Razor.Language (>= 6.0.36)
- Microsoft.AspNetCore.StaticFiles (>= 2.3.0)
- Microsoft.CodeAnalysis (>= 4.14.0)
- Microsoft.Extensions.FileProviders.Embedded (>= 8.0.16)
- RapidFire.Core.Blazor (>= 8.0.10.2)
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 |
|---|---|---|
| 8.0.11.1 | 63 | 4/7/2026 |
| 8.0.11 | 55 | 4/7/2026 |
| 8.0.10.2 | 69 | 4/5/2026 |
| 8.0.10.1 | 166 | 3/8/2026 |
| 8.0.10 | 102 | 3/1/2026 |
| 8.0.9.4 | 122 | 2/9/2026 |
| 8.0.9.3 | 143 | 1/31/2026 |
| 8.0.9.2 | 121 | 1/29/2026 |
| 8.0.9.1 | 227 | 12/21/2025 |
| 8.0.9 | 267 | 11/4/2025 |
| 8.0.8.9 | 199 | 10/4/2025 |
| 8.0.8.8 | 298 | 9/14/2025 |
| 8.0.8.7 | 187 | 9/5/2025 |
| 8.0.8.6 | 216 | 8/17/2025 |
| 8.0.8.5 | 200 | 7/27/2025 |
| 8.0.8.4 | 621 | 7/23/2025 |
| 8.0.8.3 | 173 | 7/19/2025 |
| 8.0.8.2 | 202 | 7/13/2025 |
| 8.0.8.1 | 169 | 7/5/2025 |
| 8.0.8 | 206 | 6/22/2025 |
RapidFireUI 8.0.10.2 – Release Notes
New Feature: Enhanced SSO Experience with Email Hints
This release introduces an improved Single Sign-On (SSO) experience by enabling email-based hinting directly from the login form, allowing smarter provider selection and a cleaner UI flow.
Key Enhancements:
* SSO Email Hinting from Login Form
Users can now enter their email on the login screen, which is passed as a hint to the SSO provider during redirection.
* Smart SSO Redirection
Redirected SSO pages automatically utilize the provided email hint.
* Dynamic UI Behavior
Password field and sign-in button are automatically hidden when the email domain matches a configured SSO provider.
* Domain-Based Provider Matching
UI dynamically shows or hides specific SSO provider buttons based on the detected email domain.
Configuration Changes:
1. SSO Configuration Update
A new property "HintEmailDomains" is introduced to define domain-based provider matching.
Example:
configuration.Authentication.SSO = new SSO
{
Enabled = true,
Default = SSOProvider.None,
```
Microsoft = new()
{
ClientId = "....",
ClientSecret = "...",
Authority = "https://login.microsoftonline.com/...",
HintEmailDomains = "savethechildren.org"
},
Google = new()
{
ClientId = "....apps.googleusercontent.com",
ClientSecret = "...",
HintEmailDomains = "gmail.com"
},
Facebook = new(),
Twitter = new(),
```
};
Optional Custom Implementation:
2. Social Login Component Enhancements
New parameters:
* HintsEmail
* HintsProvider (optional, for controlling provider visibility)
Example:
<SocialLoginRF HintsProvider="@HintsProvider" HintsEmail="@HintsEmail" />
3. Login Form Event Hook
New event "OnSSOHints" allows capturing detected provider and email hint.
Example:
<LoginFormRF OnSSOHints="onHints" />
string? HintsProvider, HintsEmail;
void onHints((string? provider, string? email) data)
{
HintsProvider = data.provider;
HintsEmail = data.email;
}
Summary:
This update improves the SSO login flow by reducing user effort, enhancing UI behavior, and enabling flexible customization for multi-provider environments.