BlazorRamp.ActionsPopover 2.1.3

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

Blazor Ramp - Actions Popover

The Blazor Ramp project aims to provide a suite of modular, accessibility-first Blazor components.

Requirements

It is a requirement that the Blazor Ramp Core script, Live Region Service, and associated Announcement History component are added alongside this component’s specific requirements (a stylesheet reference), as outlined below.

Note: Every package includes a reference to the Blazor Ramp Core project (where the aforementioned items reside) so there is no need to install this package separately (but it can be if you only require the Live Regions Service and Announcement History component).

The full documentation is available at: https://docs.blazorramp.uk

Installation

  1. Add the BlazorRamp.ActionsPopover nuget package to your project using the Nuget Package Manager or the dotnet CLI.
dotnet add package BlazorRamp.ActionsPopover
  1. Add the following Core and Pager style references to the <head> section of your application:
  • Blazor Web App / Blazor Server → App.razor
  • Blazor WebAssembly → wwwroot/index.html
<head>
	<link rel="stylesheet" href="_content/BlazorRamp.Core/assets/css/core.min.css" />
	<link rel="stylesheet" href="_content/BlazorRamp.ActionsPopover/assets/css/actions-popover.min.css" />
</head>
  1. Add the following Blazor Ramp Core live region script after Blazors script, as follows:
  • Blazor Web App / Blazor Server → App.razor
  • Blazor WebAssembly → wwwroot/index.html
<script src="_framework/blazor.web.js"></script>
<script type="module" src="_content/BlazorRamp.Core/assets/js/core-live-region.js"></script>
  1. Register BlazorRamp services in the Program.cs file (Both server and client if using Server and WebAssembly interactive rendermode)

Add the following line to the service registration section:

@using BlazorRamp.Core.Common.Extensions;

builder.Services.AddBlazorRampCore();
  1. Add the <AnnouncementHistory /> component with your parameter values above the Router component contained in either:
  • Blazor Web App / Blazor Server → Routes.razor
  • Blazor WebAssembly → App.razor
<AnnouncementHistory RefreshText="Refresh" ClearCloseText="Clear & Close" CloseText="Close" NoDataText="No announcements" 
Title="Recent Announcements" TriggerVisible="true" TriggerText="Alerts" />

<Router AppAssembly . . .

Using the Actions Popover component

ActionsPopover is a lightweight component for grouping related actions - buttons, links, or a mix of both, behind a single trigger.

It's built on the native HTML Popover API for toggling, top-layer stacking, and dismiss behaviour like click-outside and Escape, combined with CSS anchor positioning to place the panel relative to its trigger.

The native behaviour was extended to include closing the popover when tabbing puts the focus on an item outside of the actions popover.

Use it standalone as a page-level actions panel, or embed it anywhere you need a compact set of contextual actions - such as the last column of a table row

Items are reached via standard Tab order. Each action can carry its own icon, colour, and associated data via ItemData, and both buttons and links respect forced-colours mode automatically, so high-contrast users always get a legible, system-consistent result regardless of what colours you configure.

Note: The actions popover just uses the simple disclosure pattern and as such no ARIA role or custom keyboard navigation support was necessary.

The following example just shows the actions popover with two buttons and a link that opens in a new window, each with an optional icon. You have to add a type param TData to each item, when its not needed you can just assign it to object without populated the ItemData parameter.

<ActionsPopover TriggerText="Available Actions" ActionsPopoverPosition="ActionsPopoverPosition.BottomCentre">
    <PopoverItems>
        <ActionPopoverButton TData="object" ButtonText="Edit item" SvgIcon="--svg-pencil-icon" OnClick="HandleOnClick" IconColour="green" />
        <ActionPopoverButton TData="object" ButtonText="Delete item" SvgIcon="--svg-trash-can-icon" OnClick="HandleOnClick" IconColour="red" />
        <ActionPopoverLink   TData="object" LinkText="View (opens in new window)" SvgIcon="--svg-overview-icon" TargetType="PopoverLinkTargetType.Blank" Path="weather" />
    </PopoverItems>
</ActionsPopover>

Note: For the full documentation please see https://docs.blazorramp.uk

Using the Live Region Service (directly)

Inject the ILiveRegionService into your desired component or class and make the appropriate calls by passing the ILiveRegionSerivce.MakeAnnouncement method an announcement object.

@inject ILiveRegionService _liveRegionService

@code{

	private async Task MakeAnnouncement()
	{
		var announcement = new Announcement("The site is now using a dark coloured theme.", AnnouncementType.Info, "Dark Theme Switch", LiveRegionType.Polite);
		await _liveRegionService.MakeAnnouncement(announcement);
	}
}

Note: Where possible make announcements using LiveRegionType.Polite and keep your messages brief and to the point. Long verbose messages are annoying and just slow the user down.

The announcement object has the following constructor parameters:

  • Message - a string value containing the message to be announced.
  • AnnouncementType - an enumerated type describing the type category of announcement (for future use) the default is AnnoucementType.Info,
  • AnnouncementTrigger - an optional string value with the user friendly display name of the element that triggered the announcement such as 'Save Button'
  • LiveRegionType - the urgency of the announcement. Polite announcements wait for the screen reader to finish current speech before announcing where as assertive announcements interrupt the screen reader immediately.

Full documentation available at: https://docs.blazorramp.uk

Screen Reader Browser Combination Tests:

  • On Windows 11 - JAWS, NVDA and Narrator each paired with Chrome, Edge and Firefox.
  • On macOS (Sequoia) VoiceOver was paired with Safari
  • On iPhone, VoiceOver was paired with Safari
  • On Android, TalkBack was paired with Chrome
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 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
2.1.3 81 7/18/2026
2.1.2 89 7/18/2026
2.1.1 99 7/17/2026
2.1.0 92 7/16/2026
2.0.1 86 7/16/2026
2.0.0 91 7/15/2026
1.0.0 90 7/15/2026

Exposed circle outline style CSS variable (in stead of border) that goes around the chevron icon so its easier to turn off.