RapidFireUI 8.0.10.2

There is a newer version of this package available.
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
                    
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="RapidFireUI" Version="8.0.10.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RapidFireUI" Version="8.0.10.2" />
                    
Directory.Packages.props
<PackageReference Include="RapidFireUI" />
                    
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 RapidFireUI --version 8.0.10.2
                    
#r "nuget: RapidFireUI, 8.0.10.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.
#:package RapidFireUI@8.0.10.2
                    
#: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=RapidFireUI&version=8.0.10.2
                    
Install as a Cake Addin
#tool nuget:?package=RapidFireUI&version=8.0.10.2
                    
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

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
Loading failed

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.