Rivlo.Licensing.UI 13.0.1

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

Rivlo Licensing UI

The Rivlo Licensing UI package provides a reusable AngularJS and Razor-based user interface for displaying licence information from the Rivlo Licensing package.

It can be included in any Umbraco package or backoffice dashboard that uses Rivlo Licensing to show the current licence status, remaining trial period, or detailed licence information in a modal overlay.

Features

  • Native Umbraco look and feel using <umb-badge>
  • Displays licence state:
    • Unlicensed (red)
    • Trial with days remaining (amber)
    • Licensed with expiry date if relevant (green)
    • Lifetime licence (green)
    • Licence expired (red)
  • Clickable badge opens a modal with full licence details (domain, expiry, tier, etc.)
  • Shared AngularJS service caches licence lookups to avoid repeated API calls
  • Compatible with Umbraco v10–13 dashboards (AngularJS)

(Razor version for v14+ in development)

Installation

Install the Rivlo.Licensing.UI package alongside the Rivlo.Licensing core validator:

dotnet add package Rivlo.Licensing
dotnet add package Rivlo.Licensing.UI

Usage in AngularJS dashboards

Add the directive anywhere in your Umbraco dashboard view. The product name should be exactly the same as the name you used to register your package with the licence validator:

<rivlo-license-status product="Your Product Name"></rivlo-license-status>

This will display a dynamic badge on your dashboard. Clicking the badge opens a modal with licence details, powered by the existing LicenceApiController from Rivlo Licensing.

If your package already registers a licence with the validator, no extra setup is required — the UI automatically calls:

/umbraco/backoffice/RivloLicensing/LicenceApi/Get?productName={product}

Using the shared licence service

You can also use the shared service into other dashboard controllers to conditionally show/hide UI elements. Make sure you inject rivloLicensingService into your controller:

rivloLicensingService.get("Friendly Media").then(function(licence) {
    vm.isLicensed = licence.isValid;
	vm.licenceMessage = licence.reason;
	vm.licencePayload = licence.payload;
});

License

This package is distributed under a proprietary licence. You may use it freely in commercial or private projects, but redistribution is not permitted.

For the full End User Licence Agreement (EULA), see: https://www.rivlotools.com/products/rivlo-licensing/ui-eula/

Learn More

Explore the full RivloTools suite at

👉 www.rivlotools.com

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

Showing the top 2 NuGet packages that depend on Rivlo.Licensing.UI:

Package Downloads
Rivlo.ContentMigrationManager

Import/export tool for migrating content and members between Umbraco sites. Includes a secure API and backoffice dashboard with custom mapping and extensibility.

Rivlo.FriendlyMedia

Media dashboard and content app working alongside the Umbraco media section to give editors clearer visibility, SEO-friendly URLs, helpful warnings, and a faster experience in day-to-day workflows.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
13.0.1 847 10/16/2025
13.0.0 228 10/16/2025
12.0.0 210 10/17/2025
11.0.1 230 10/16/2025
11.0.0 233 10/16/2025
10.0.1 333 10/16/2025
10.0.0 259 10/16/2025

Include angular service to fetch and cache licence status, badge to display on dashboards and overlay to show full licence details.